Reactive Controllers
A reactive controller is an object that can hook into a component's reactive update cycle. Controllers can bundle state and behavior related to a feature, making it reusable across multiple component definitions.
You can use controllers to implement features that require their own state and access to the component's lifecycle, such as:
- Handling global events like mouse events
- Managing asynchronous tasks like fetching data over the network
- Running animations
Reactive controllers allow you to build components by composing smaller pieces that aren't themselves components. They can be thought of as reusable, partial component definitions, with their own identity and state.
Reactive controllers are similar in many ways to class mixins. The main difference is that they have their own identity and don't add to the component's prototype, which helps contain their APIs and lets you use multiple controller instances per host component. See Controllers and mixins for more details.
Using a controller
Permalink to “Using a controller”Each controller has its own creation API, but typically you will create an instance and store it with the component:
The component associated with a controller instance is called the host component.
The controller instance registers itself to receive lifecycle callbacks from the host component, and triggers a host update when the controller has new data to render. This is how the ClockController
example periodically renders the current time.
A controller will typically expose some functionality to be used in the host's render()
method. For example, many controllers will have some state, like a current value:
Since each controller has it's own API, refer to specific controller documentation on how to use them.
Writing a controller
Permalink to “Writing a controller”A reactive controller is an object associated with a host component, which implements one or more host lifecycle callbacks or interacts with its host. It can be implemented in a number of ways, but we'll focus on using JavaScript classes, with constructors for initialization and methods for lifecycles.
Controller initialization
Permalink to “Controller initialization”A controller registers itself with its host component by calling host.addController(this)
. Usually a controller stores a reference to its host component so that it can interact with it later.
You can add other constructor parameters for one-time configuration.
Once your controller is registered with the host component, you can add lifecycle callbacks and other class fields and methods to the controller to implement the desired state and behavior.
Lifecycle
Permalink to “Lifecycle”The reactive controller lifecycle, defined in the ReactiveController
interface, is a subset of the reactive update cycle. LitElement calls into any installed controllers during its lifecycle callbacks. These callbacks are optional.
hostConnected()
:- Called when the host is connected.
- Called after creating the
renderRoot
, so a shadow root will exist at this point. - Useful for setting up event listeners, observers, etc.
hostUpdate()
:- Called before the host's
update()
andrender()
methods. - Useful for reading DOM before it's updated (for example, for animations).
- Called before the host's
hostUpdated()
:- Called after updates, before the host's
updated()
method. - Useful for reading DOM after it's modified (for example, for animations).
- Called after updates, before the host's
hostDisconnected()
:- Called when the host is disconnected.
- Useful for cleaning up things added in
hostConnected()
, such as event listeners and observers.
For more information, see Reactive update cycle.
Controller host API
Permalink to “Controller host API”A reactive controller host implements a small API for adding controllers and requesting updates, and is responsible for calling its controller's lifecycle methods.
This is the minimum API exposed on a controller host:
addController(controller: ReactiveController)
removeController(controller: ReactiveController)
requestUpdate()
updateComplete: Promise<boolean>
You can also create controllers that are specific to HTMLElement
, ReactiveElement
, LitElement
and require more of those APIs; or even controllers that are tied to a specific element class or other interface.
LitElement
and ReactiveElement
are controller hosts, but hosts can also be other objects like base classes from other web components libraries, components from frameworks, or other controllers.
Building controllers from other controllers
Permalink to “Building controllers from other controllers”Controllers can be composed of other controllers as well. To do this create a child controller and forward the host to it.
Controllers and directives
Permalink to “Controllers and directives”Combining controllers with directives can be a very powerful technique, especially for directives that need to do work before or after rendering, like animation directives; or controllers that need references to specific elements in a template.
There are two main patterns of using controllers with directives:
- Controller directives. These are directives that themselves are controllers in order to hook into the host lifecycle.
- Controllers that own directives. These are controllers that create one or more directives for use in the host's template.
For more information about writing directives, see Custom directives.
Controller directives
Permalink to “Controller directives”Reactive controllers do not need to be stored as instance fields on the host. Anything added to a host using addController()
is a controller. In particular, a directive can also be a controller. This enables a directive to hook into the host lifecycle.
Controllers that own directives
Permalink to “Controllers that own directives”Directives do not need to be standalone functions, they can be methods on other objects as well, such as controllers. This can be useful in cases where a controller needs a specific reference to an element in a template.
For example, imagine a ResizeController that lets you observe an element's size with a ResizeObserver. To work we need both a ResizeController instance, and a directive that is placed on the element we want to observe:
To implement this, you create a directive and call it from a method:
TO DO
- Review and cleanup this example
Use cases
Permalink to “Use cases”Reactive controllers are very general and have a very broad set of possible use cases. They are particularly good for connecting a component to an external resource, like user input, state management, or remote APIs. Here are a few common use cases.
External inputs
Permalink to “External inputs”Reactive controllers can be used to connect to external inputs. For example, keyboard and mouse events, resize observers, or mutation observers. The controller can provide the current value of the input to use in rendering, and request a host update when the value changes.
Example: MouseMoveController
Permalink to “Example: MouseMoveController”This example shows how a controller can perform setup and cleanup work when its host is connected and disconnected, and request an update when an input changes:
Asynchronous tasks
Permalink to “Asynchronous tasks”Asynchronous tasks, such as long running computations or network I/O, typically have state that changes over time, and will need to notify the host when the task state changes (completes, errors, etc.).
Controllers are a great way to bundle task execution and state to make it easy to use inside a component. A task written as a controller usually has inputs that a host can set, and outputs that a host can render.
@lit/task
contains a generic Task
controller that can pull inputs from the host, execute a task function, and render different templates depending on the task state.
You can use Task
to create a custom controller with an API tailored for your specific task. Here we wrap Task
in a NamesController
that can fetch one of a specified list of names from a demo REST API. NameController
exposes a kind
property as an input, and a render()
method that can render one of four templates depending on the task state. The task logic, and how it updates the host, are abstracted from the host component.
TO DO
- Animations