A headless component is a design pattern where the component applies a separation of concerns between the logic (or "head") and the user interface (or "body").
The “headless” part refers to the logic of the component, which is decoupled from its visual representation. This means that the component doesn’t have a user interface, but it does have functionality and exposes an api, states, directives but keeps internally their implementation.
Leveraging its core, AgnosUI provides headless components across various frameworks. These components not only share the core API but also adhere to the best practices and implementation strategies specific to each framework. This ensures seamless integration and optimal performance.
AgnosUI includes pre-built components for supported frameworks. To use these components directly, you may not need to dive deeply into this section, except for understanding directives
.
Creating a new component with the core typically involves the following base code:
Let's break down the components.
props
contain the essential values for the component, received through attributes.
As an example, consider a rating component requiring the value prop:
Which is used in the HTML as follows:
props
may also include functions beginning with on...
. These are specific methods called when a prop changes. For instance, in the rating component, you can provide the onRatingChange
method to be invoked every time the rating value changes, with the new value.
- Every
prop
comes with a default value.- In all supported frameworks, these default prop values are customizable at any level within the component subtrees. The method of injecting these configurations is specific to the framework overseeing these component trees. Additional details can be found on the dedicated page.
The patch
function receives a partial of the props parameters, allowing modification of the initial props provided to the component.
List of Tansu stores showing the component's current state.
or example, in a rating component, you'll find stores such as rating$
and visibleRating$
.
rating$
: holds the current numeric value of the rating.visibleRating$
: holds the value displayed in the UI. It may differ from rating$
during interactions like hovering, showcasing real-time visual changes.Each store can be subscribed to or integrated into the UI framework system.
state$
is a persistent store in all components, grouping all other store values together. Depending on the framework or use case, it might be more convenient to use individual stores or the globalstate$
.
directives
are specific functions used to apply behaviors to HTML elements, strictly following actions Svelte specifications.
These must be applied to the appropriate elements in the UI to ensure correct behavior.
Refer to the dedicated section for more details.
api
includes functions for programmatically changing the component's state. Unlike the previous section, these functions are not specifically designed to be plugged into the UI.