Stimulus reference
What is Stimulus?
Stimulus is a lightweight JavaScript framework for enhancing static or server-rendered HTML – the “HTML you already have” – by connecting your HTML elements with JS objects using simple data-
attributes.
Just as a class
attribute connects HTML to CSS, Stimulus’s data-
attributes connects HTML to JavaScript.
It’s not intended to power a single-page application in the way that frameworks like React, Angular or Vue are. Stimulus is used mostly in conjuction with server-rendered HTML templates.
Stimulus vs mainstream JS frameworks
Manipulates existing HTML
Stimulus focuses on manipulating existing HTML that comes from the server. This contrasts with most frameworks like React or Angular that typically fetch JSON and use that to dynamically create the DOM.
State is managed in HTML instead of JS
Stimulus stores state in the HTML instead of JS objects.
The main concepts
Stimulus revolves around three main concepts:
- Controllers – the JavaScript objects that are connected to HTML and used to manipulate it.
- Actions – connect DOM events to controller methods using
data-action
attributes. - Targets – locates HTML elements within a controller.
Here’s an example HTML that uses Stimulus:
Lifecycle methods
Method | Description |
initialize() | Invoked once when the controller is first instantiated. |
connect() | Invoked anytime the controller is connected to the DOM. |
disconnected() | Invoked anytime the controller is disconnected from the DOM. |
Recipes
Connect HTML to controller
Create controller:
Link HTML to controller:
Invoke action on DOM event.
Clicking on the button will invoke the method greet
from the controller in hello_controller.js
.
Target DOM elements within a controller
Add the target annotation to HTML element:
Target the HTML element:
Read initial state from the DOM
Add data-<controller>-value
attribute:
Add a static values
definition to the controller:
this.indexValue
will return "1"
.
Invoke callback when value changes
Given this HTML:
and this controller:
Everytime the user clicks the next or previous buttons, the indexValue
is changed and the indexValueChanged
callback is invoked.
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment