Toggle Component API
Last updated
Was this helpful?
Last updated
Was this helpful?
The toggle
component allows us to react to events and toggle the UI state.
The toggle
component accepts the following parameters:
The show_on
option lets us define an event on which the component gets shown. The content is still rendered on init pageload, but simply hidden in the browser until the event is emitted. If you want to have proper deferred loading, please refer to
You can pass in multiple, comma-separated events on which the component should be shown.
The hide_on
option lets us define an event on which the component gets hidden.
You can pass in multiple, comma-separated events on which the component should be hidden.
The hide_after
option lets us define a timespan in milliseconds after which the component gets hidden.
The init_show
option lets us define if the content should be shown initially.
By default the content is shown initially unless show_on
is defined.
init_show
is therefore only used in a context like this:
On our example page, we wrap a simple timestamp in an toggle component and tell it to show up when the event my_event
gets triggered.
After our event was fired, the timestamp only is visible on our page!
On our example page, we wrap a simple timestamp in an toggle component and tell it to hide it when the event my_event
gets triggered.
As expected, the timestamp is only visible before our event was fired and is hidden/invisible after the event!
On our example page, we wrap a simple timestamp in an toggle component and tell it to show up when the event my_event
gets triggered and be hidden after 1000 milliseconds.
In this case, the timestamp only is visible after our event was fired, but only for a certain amount of time. After the time is up, it gets hidden!
On our example page, we wrap our toggle event around a placeholder for the event message.
As an example, we can fire the following event:
As a result, the event message gets shown after our event was fired!
If you combine show_on
and hide_on
, you can toggle the view state of the toggle
component explicitly.
By default, the content is initially hidden until the show event is emitted when show_on
is applied.
If you want to display the content initially, simply add init_show: true