Headless widgets
Last updated
Last updated
Headless widgets enable you to create fully customizable widgets in terms of both design and behavior. These widgets rely on the Didomi’s widgets engine, so they feature authentication management, analytics, content rendering, purpose and preference choices, and saving upon clicking or after user confirmation.
The following set of elements, events and methods are available for generating the widget and collecting end-user consent and preference choices.
Custom elements are HTML components used to display the content of your widget as well as wrap your own HTML elements to handle specific communication with the Didomi API. Please refer to this for more information about custom elements.
Please refer to our dedicated documentation on Didomi custom Elements for more .
Custom events are synthetic events in Javascript that can be dispatched to our SDK.
Use custom events to communicate with our custom elements to wrap your code and handle all logic, analytics and API requests.
Please refer to our dedicated documentation on custom events for more .
Public methods are SDK methods that are made available to facilitate your interactions with our SDK, including getting information from the widget configuration and from the current user consent state.
Please refer to our dedicated documentation on public methods for more .
Event listeners are JavaScript methods that set up a function to run whenever the specified event is delivered to the target.
You can use event listeners to provide UI feedback to your end-users, handle retries, and more. Since custom events don't support callbacks, this is how you can know the current state (loading, success, error) of an action that has been emitted.
Please refer to our dedicated documentation on event listeners for more .
Once created, the widget can be edited in the Didomi Console or using API. All sections are supported by a Headless widget, except for Look and Feel.
To use a Headless widget, you first need to load our SDK. We recommend integrating the SDK loader at the top of your HTML.
💡 The SDK loader code to embed is available in the Didomi Console once you have created an embeddable
widget.
After the SDK is ready, you can access the widget configuration and the entities enabled within the widget.
To avoid a flickering effect while the SDK is loading, you can use this CSS snippet. This can be applied to any custom element:
To use a Headless widget, set the format
to embeddable
and headless
to true
when via the API.
Please refer to our dedicated to learn how to create a widget using API.
To and , you can use our public methods.
To display the Headless widget once the container and entities are loaded you need to add the custom element.