Live Components
Live components builds on top of the TwigComponent library to give you the power to automatically update your Twig components on the frontend as the user interacts with them. Inspired by Livewire and Phoenix LiveView.
If you're not familiar with Twig components yet, it's worth taking a few minutes to familiarize yourself in the TwigComponent documentation.
A real-time product search component might look like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
// src/Twig/Components/ProductSearch.php
namespace App\Twig\Components;
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
use Symfony\UX\LiveComponent\Attribute\LiveProp;
use Symfony\UX\LiveComponent\DefaultActionTrait;
#[AsLiveComponent]
class ProductSearch
{
use DefaultActionTrait;
#[LiveProp(writable: true)]
public string $query = '';
public function __construct(private ProductRepository $productRepository)
{
}
public function getProducts(): array
{
// example method that returns an array of Products
return $this->productRepository->search($this->query);
}
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{# templates/components/ProductSearch.html.twig #}
{# for the Live Component to work, there must be a single root element
(e.g. a <div>) where the attributes are applied to #}
<div {{ attributes }}>
<input
type="search"
data-model="query"
>
<ul>
{% for product in this.products %}
<li>{{ product.name }}</li>
{% endfor %}
</ul>
</div>
Done! Now render it wherever you want:
1
{{ component('ProductSearch') }}
As a user types into the box, the component will automatically re-render and show the new results!
Want some demos? Check out https://ux.symfony.com/live-component#demo
Installation
Install the bundle using Composer and Symfony Flex:
1
$ composer require symfony/ux-live-component
If you're using WebpackEncore, install your assets and restart Encore (not needed if you're using AssetMapper):
1 2
$ npm install --force
$ npm run watch
If your project is localized in different languages (either via the locale route parameter
or by setting the locale in the request) add the {_locale}
attribute to
the UX Live Components route definition to keep the locale between re-renders:
1 2 3 4 5
# config/routes/ux_live_component.yaml
live_component:
resource: '@LiveComponentBundle/config/routes.php'
- prefix: /_components
+ prefix: /{_locale}/_components
That's it! We're ready!
Making your Component "Live"
If you haven't already, check out the Twig Component documentation to get the basics of Twig components.
Suppose you've already built a basic Twig component:
1 2 3 4 5 6 7 8 9 10 11 12 13
// src/Twig/Components/RandomNumber.php
namespace App\Twig\Components;
use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
#[AsTwigComponent()]
class RandomNumber
{
public function getRandomNumber(): int
{
return rand(0, 1000);
}
}
1 2 3 4
{# templates/components/RandomNumber.html.twig #}
<div>
<strong>{{ this.randomNumber }}</strong>
</div>
To transform this into a "live" component (i.e. one that can be
re-rendered live on the frontend), replace the component's
AsTwigComponent
attribute with AsLiveComponent
and add the
DefaultActionTrait
:
1 2 3 4 5 6 7 8 9 10 11
// src/Twig/Components/RandomNumber.php
- use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
+ use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
+ use Symfony\UX\LiveComponent\DefaultActionTrait;
- #[AsTwigComponent()]
+ #[AsLiveComponent]
class RandomNumber
{
+ use DefaultActionTrait;
}
Then, in the template, make sure there is one HTML element around your entire component and use the attributes variable to initialize the Stimulus controller:
1 2 3 4
- <div>
+ <div {{ attributes }}>
<strong>{{ this.randomNumber }}</strong>
</div>
Your component is now a live component… except that we haven't added anything that would cause the component to update. Let's start simple, by adding a button that - when clicked - will re-render the component and give the user a new random number:
1 2 3 4 5 6 7
<div {{ attributes }}>
<strong>{{ this.randomNumber }}</strong>
<button
data-action="live#$render"
>Generate a new number!</button>
</div>
That's it! When you click the button, an Ajax call will be made to get a fresh copy of our component. That HTML will replace the current HTML. In other words, you just generated a new random number! That's cool, but let's keep going because… things get cooler.
Tip
Need to do some extra data initialization on your component? Create
a mount()
method or use the PostMount
hook: Twig Component mount documentation.
LiveProps: Stateful Component Properties
Let's make our component more flexible by adding a $max
property:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// src/Twig/Components/RandomNumber.php
namespace App\Twig\Components;
// ...
use Symfony\UX\LiveComponent\Attribute\LiveProp;
#[AsLiveComponent]
class RandomNumber
{
#[LiveProp]
public int $max = 1000;
public function getRandomNumber(): int
{
return rand(0, $this->max);
}
// ...
}
With this change, we can control the $max
property when rendering
the component:
1
{{ component('RandomNumber', { max: 500 }) }}
But what's up with the LiveProp
attribute? A property with the
LiveProp
attribute becomes a "stateful" property for this component.
In other words, each time we click the "Generate a new number!" button,
when the component re-renders, it will remember the original values
for the $max
property and generate a random number between 0 and 500.
If you forgot to add LiveProp
, when the component re-rendered,
those two values would not be set on the object.
In short: LiveProps are "stateful properties": they will always be set when rendering. Most properties will be LiveProps, with common exceptions being properties that hold services (these don't need to be stateful because they will be autowired each time before the component is rendered).
LiveProp Data Types
LiveProps must be a value that can be sent to JavaScript. Supported values are scalars (int, float, string, bool, null), arrays (of scalar values), enums, DateTime objects, Doctrine entity objects, DTOs, or array of DTOs.
See Live Components for handling more complex data.
Data Binding
One of the best parts of frontend frameworks like React or Vue is
"data binding". If you're not familiar, this is where you "bind"
the value of some HTML element (e.g. an <input>
) with a property
on your component object.
For example, could we allow the user to change the $max
property and then re-render the component when they do? Definitely! And
that is where live components really shine.
Add an input to the template:
1 2 3 4 5 6 7
{# templates/components/RandomNumber.html.twig #}
<div {{ attributes }}>
<input type="number" data-model="max">
Generating a number between 0 and {{ max }}
<strong>{{ this.randomNumber }}</strong>
</div>
2.5
Before version 2.5, you needed to also set value="{{ max }}"
on the <input>
. That is now set automatically for all
"data-model" fields.
The key is the data-model
attribute. Thanks
to that, when the user types, the $max
property on
the component will automatically update!
2.3
Before version 2.3, you also needed a data-action="live#update"
attribute. That attribute should now be removed.
How? Live components listens to the input
event and
sends an Ajax request to re-render the component with the
new data!
Well, actually, we're missing one step. By default, a LiveProp
is
"read only". For security purposes, a user cannot change the value of a
LiveProp
and re-render the component unless you allow it with the
writable=true
option:
1 2 3 4 5 6 7 8 9 10 11 12 13
// src/Twig/Components/RandomNumber.php
// ...
class RandomNumber
{
// ...
- #[LiveProp]
+ #[LiveProp(writable: true)]
public int $max = 1000;
// ...
}
Now it works: as you type into the max
box, the
component will re-render with a new random in that range.
Debouncing
If the user types 5 characters really quickly, we don't want
to send 5 Ajax requests. Fortunately, live components adds
automatic debouncing: it waits for a 150ms pause between
typing before sending an Ajax request to re-render. This is
built in, so you don't need to think about it. But, you can
delay via the debounce
modifier:
1
<input data-model="debounce(100)|max">
Lazy Updating on "change" of a Field
Sometimes, you might want a field to re-render only after the user has
changed an input and moved to another field. Browsers dispatch a
change
event in this situation. To re-render when this event
happens, use the on(change)
modifier:
1
<input data-model="on(change)|max">
Deferring a Re-Render Until Later
Other times, you might want to update the internal value of a property,
but wait until later to re-render the component (e.g. until a button is
clicked). To do that, use norender
modifier:
1
<input data-model="norender|max">
For a form using ComponentWithFormTrait
, override the getDataModelValue()
method:
1 2 3 4
private function getDataModelValue(): ?string
{
return 'norender|*';
}
Tip
You can also define this value inside Twig:
1
{{ form_start(form, {attr: {'data-model': 'norender|*'}}) }}
Now, as you type, the max
"model" will be updated in JavaScript, but
it won't, yet, make an Ajax call to re-render the component. Whenever
the next re-render does happen, the updated max
value will be
used.
This can be useful along with a button that triggers a render on click:
1 2
<input data-model="norender|coupon">
<button data-action="live#$render">Apply</button>
Forcing a Re-Render Explicitly
In some cases, you might want to force a component re-render explicitly. For example, consider a checkout component that provides a coupon input that must only be used when clicking on the associated "Apply coupon" button:
1 2
<input data-model="norender|coupon">
<button data-action="live#$render">Apply coupon</button>
The norender
option on the input ensures that the component won't re-render
when this input changes. The live#$render
action is a special built-in action
that triggers a re-render.
Using name="" instead of data-model
If you're building a form (more on forms later),
instead of adding data-model
to every field, you can instead
rely on the name
attribute.
2.3
The data-model
attribute on the form
is required since version 2.3.
To activate this, you must add a data-model
attribute to
the <form>
element:
1 2 3 4 5 6 7 8 9 10
<div {{ attributes }}>
<form data-model="*">
<input
name="max"
value="{{ max }}"
>
// ...
</form>
</div>
The *
value of data-model
is not necessary, but is
commonly used. You can also use the normal modifiers, like
data-model="on(change)|*"
to, for example, only send
model updates for the change
event of each field inside.
Model Updates don't work when External JavaScript Changes a Field
Suppose you use a JavaScript library that sets the value of a field
for you: for example a "date picker" library that hides
the native <input data-model="publishAt">
field and sets it
behind-the-scenes when the user selects a date.
In this case, the model (e.g. publishAt
) will probably not
update correctly because JavaScript doesn't trigger the normal
change
event. To fix this, you'll need to "hook" into the
JavaScript library and set the model directly (or trigger a
change
event on the data-model
field). See
manually trigger an element change.
LiveProp for Entities & More Complex Data
LiveProp
data must be simple scalar values, with a few exception,
like DateTime
objects, enums & Doctrine entity objects. When LiveProp
s
are sent to the frontend, they are "dehydrated". When Ajax requests are sent
from the frontend, the dehydrated data is then "hydrated" back into the original.
Doctrine entity objects are a special case for LiveProp
:
1 2 3 4 5 6 7 8
use App\Entity\Post;
#[AsLiveComponent]
class EditPost
{
#[LiveProp]
public Post $post;
}
If the Post
object is persisted, its dehydrated to the entity's id
and then
hydrated back by querying the database. If the object is unpersisted, it's dehydrated
to an empty array, then hydrated back by creating an empty object
(i.e. new Post()
).
Arrays of Doctrine entities and other "simple" values like DateTime
are also
supported, as long as the LiveProp
has proper PHPDoc that LiveComponents
can read:
1 2
/** @var Product[] */
public $products = [];
Collection type extraction from the docblock requires the phpdocumentor/reflection-docblock
library. Make sure it is installed in you application:
1
$ composer require phpdocumentor/reflection-docblock
Writable Object Properties or Array Keys
By default, the user can't change the properties of an entity LiveProp
You can allow this by setting writable
to property names that should be writable.
This also works as a way to make only some keys of an array writable:
1 2 3 4 5 6 7 8 9 10 11
use App\Entity\Post;
#[AsLiveComponent]
class EditPost
{
#[LiveProp(writable: ['title', 'content'])]
public Post $post;
#[LiveProp(writable: ['allow_markdown'])]
public array $options = ['allow_markdown' => true, 'allow_html' => false];
}
Now post.title
, post.content
or options.allow_markdown
can be used like
normal model names:
1 2 3 4 5 6 7 8 9 10 11 12 13
<div {{ attributes }}>
<input data-model="post.title">
<textarea data-model="post.content"></textarea>
Allow Markdown?
<input type="checkbox" data-model="options.allow_markdown">
Preview:
<div>
<h3>{{ post.title }}</h3>
{{ post.content|markdown_to_html }}
</div>
</div>
Any other properties on the object (or keys on the array) will be read-only.
For arrays, you can set writable: true
to allow any key in the array to be
changed, added or removed:
1 2 3 4 5 6 7 8 9 10 11
#[AsLiveComponent]
class EditPost
{
// ...
#[LiveProp(writable: true)]
public array $options = ['allow_markdown' => true, 'allow_html' => false];
#[LiveProp(writable: true)]
public array $todoItems = ['Train tiger', 'Feed tiger', 'Pet tiger'];
}
Note
Writable path values are dehydrated/hydrated using the same process as the top-level properties (i.e. Symfony's serializer).
Checkboxes, Select Elements Radios & Arrays
2.8
The ability to use checkboxes to set boolean values was added in LiveComponent 2.8.
Checkboxes can be used to set a boolean or an array of strings:
1 2 3 4 5 6 7 8 9
#[AsLiveComponent]
class EditPost
{
#[LiveProp(writable: true)]
public bool $agreeToTerms = false;
#[LiveProp(writable: true)]
public array $foods = ['pizza', 'tacos'];
}
In the template, setting a value
attribute on the checkbox will set that
value on checked. If no value
is set, the checkbox will set a boolean value:
1 2 3 4 5
<input type="checkbox" data-model="agreeToTerms">
<input type="checkbox" data-model="foods[]" value="pizza">
<input type="checkbox" data-model="foods[]" value="tacos">
<input type="checkbox" data-model="foods[]" value="sushi">
select
and radio
elements are a bit easier: use these to either set a
single value or an array of values:
1 2 3 4 5 6 7 8 9 10 11
#[AsLiveComponent]
class EditPost
{
// ...
#[LiveProp(writable: true)]
public string $meal = 'lunch';
#[LiveProp(writable: true)]
public array $foods = ['pizza', 'tacos'];
}
1 2 3 4 5 6 7 8 9
<input type="radio" data-model="meal" value="breakfast">
<input type="radio" data-model="meal" value="lunch">
<input type="radio" data-model="meal" value="dinner">
<select data-model="foods" multiple>
<option value="pizza">Pizza</option>
<option value="tacos">Tacos</option>
<option value="sushi">Sushi</option>
</select>
LiveProp Date Formats
2.8
The format
option was introduced in Live Components 2.8.
If you have a writable LiveProp
that is some sort of DateTime
instance,
you can control the format of the model on the frontend with the format
option:
1 2
#[LiveProp(writable: true, format: 'Y-m-d')]
public ?\DateTime $publishOn = null;
Now you can bind this to a field on the frontend that uses that same format:
1
<input type="date" data-model="publishOn">
Allowing an Entity to be Changed to Another
What if, instead of changing a property on an entity, you want to allow the user to switch the entity to another? For example:
1 2 3 4 5
<select data-model="post">
{% for post in posts %}
<option value="{{ post.id }}">{{ post.title }}</option>
{% endfor %}
</select>
To make the post
property itself writable, use writable: true
:
1 2 3 4 5 6 7 8
use App\Entity\Post;
#[AsLiveComponent]
class EditPost
{
#[LiveProp(writable: true)]
public Post $post;
}
Caution
This will allow the user to change the Post
to any entity in
the database. See: https://github.com/symfony/ux/issues/424 for more
info.
If you want the user to be able to change the Post
and certain
properties, use the special LiveProp::IDENTITY
constant:
1 2 3 4 5 6 7 8
use App\Entity\Post;
#[AsLiveComponent]
class EditPost
{
#[LiveProp(writable: [LiveProp::IDENTITY, 'title', 'content'])]
public Post $post;
}
Note that being able to change the "identity" of an object is something
that works only for objects that are dehydrated to a scalar value (like
persisted entities, which dehydrate to an id
).
Using DTO's on a LiveProp
2.12
The automatic (de)hydration of DTO objects was introduced in LiveComponents 2.12.
You can also use a DTO (i.e. data transfer object / any simple class) with LiveProp as long as the property has the correct type:
1 2 3 4 5
class ComponentWithAddressDto
{
#[LiveProp]
public AddressDto $addressDto;
}
To work with a collection of DTOs, specify the collection type inside PHPDoc:
1 2 3 4 5 6 7 8
class ComponentWithAddressDto
{
/**
* @var AddressDto[]
*/
#[LiveProp]
public array $addressDtoCollection;
}
Collection type extraction from the docblock requires the phpdocumentor/reflection-docblock
library. Make sure it is installed in you application:
1
$ composer require phpdocumentor/reflection-docblock
Here is how the (de)hydration of DTO objects works:
- All "properties" (public properties or fake properties via getter/setter methods) are read & dehydrated. If a property is settable but not gettable (or vice versa), an error will be thrown.
- The PropertyAccess component is used to get/set the value, which means getter and setter methods are supported, in addition to public properties.
- The DTO cannot have any constructor arguments.
If this solution doesn't fit your need there are two others options to make this work:
Hydrating with the Serializer
2.8
The useSerializerForHydration
option was added in LiveComponent 2.8.
To hydrate/dehydrate through Symfony's serializer, use the useSerializerForHydration
option:
1 2 3 4 5
class ComponentWithAddressDto
{
#[LiveProp(useSerializerForHydration: true)]
public AddressDto $addressDto;
}
You can also set a serializationContext
option on the LiveProp
.
Hydrating with Methods: hydrateWith & dehydrateWith
You can take full control of the hydration process by setting the hydrateWith
and dehydrateWith
options on LiveProp
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
class ComponentWithAddressDto
{
#[LiveProp(hydrateWith: 'hydrateAddress', dehydrateWith: 'dehydrateAddress')]
public AddressDto $addressDto;
public function dehydrateAddress(AddressDto $address)
{
return [
'street' => $address->street,
'city' => $address->city,
'state' => $address->state,
];
}
public function hydrateAddress($data): AddressDto
{
return new AddressDto($data['street'], $data['city'], $data['state']);
}
}
Hydration Extensions
2.8
The HydrationExtensionInterface
system was added in LiveComponents 2.8.
If you frequently hydrate/dehydrate the same type of object, you can create a custom
hydration extension to make this easier. For example, if you frequently hydrate
a custom Food
object, a hydration extension might look like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
use App\Model\Food;
use Symfony\UX\LiveComponent\Hydration\HydrationExtensionInterface;
class FoodHydrationExtension implements HydrationExtensionInterface
{
public function supports(string $className): bool
{
return is_subclass_of($className, Food::class);
}
public function hydrate(mixed $value, string $className): ?object
{
return new Food($value['name'], $value['isCooked']);
}
public function dehydrate(object $object): mixed
{
return [
'name' => $object->getName(),
'isCooked' => $object->isCooked(),
];
}
}
If you're using autoconfiguration, you're done! Otherwise, tag the service
with live_component.hydration_extension
.
Tip
Internally, Doctrine entity objects use the DoctrineEntityHydrationExtension
to control the custom (de)hydration of entity objects.
Updating a Model Manually
You can also change the value of a model more directly, without using a form field:
1 2 3 4 5 6
<button
type="button"
data-model="mode"
data-value="edit"
data-action="live#update"
>Edit</button>
In this example, clicking the button will change a mode
live property on your component to the value edit
. The
data-action="live#update"
is Stimulus code that triggers
the update.
Working with the Component in JavaScript
Want to change the value of a model or even trigger an action from your
own custom JavaScript? No problem, thanks to a JavaScript Component
object, which is attached to each root component element.
For example, to write your custom JavaScript, you create a Stimulus controller and put it around (or attached to) your root component element:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// assets/controllers/some-custom-controller.js
// ...
import { getComponent } from '@symfony/ux-live-component';
export default class extends Controller {
async initialize() {
this.component = await getComponent(this.element);
}
// some Stimulus action triggered, for example, on user click
toggleMode() {
// e.g. set some live property called "mode" on your component
this.component.set('mode', 'editing');
// then, trigger a re-render to get the fresh HTML
this.component.render();
// or call an action
this.component.action('save', { arg1: 'value1' });
}
}
You can also access the Component
object via a special property
on the root component element, though getComponent()
is the
recommended way, as it will work even if the component is not yet
initialized:
1 2
const component = document.getElementById('id-of-your-element').__component;
component.mode = 'editing';
Finally, you can also set the value of a model field directly. However,
be sure to also trigger a change
event so that live components is notified
of the change:
1 2 3 4
const input = document.getElementById('favorite-food');
input.value = 'sushi';
input.dispatchEvent(new Event('change', { bubbles: true }));
Adding a Stimulus Controller to your Component Root Element
2.9
The ability to use the defaults()
method with stimulus_controller()
was added in TwigComponents 2.9 and requires symfony/stimulus-bundle
.
Previously, stimulus_controller()
was passed to attributes.add()
.
To add a custom Stimulus controller to your root component element:
1
<div {{ attributes.defaults(stimulus_controller('some-custom', { someValue: 'foo' })) }}>
JavaScript Component Hooks
The JavaScript Component
object has a number of hooks that you can
use to run code during the lifecycle of your component. To hook into the
component system from Stimulus:
1 2 3 4 5 6 7 8 9 10 11 12 13
// assets/controllers/some-custom-controller.js
// ...
import { getComponent } from '@symfony/ux-live-component';
export default class extends Controller {
async initialize() {
this.component = await getComponent(this.element);
this.component.on('render:finished', (component) => {
// do something after the component re-renders
});
}
}
Note
The render:started
and render:finished
events are only dispatched
when the component is re-rendered (via an action or a model change).
The following hooks are available (along with the arguments that are passed):
connect
args(component: Component)
disconnect
args(component: Component)
render:started
args(html: string, response: BackendResponse, controls: { shouldRender: boolean })
render:finished
args(component: Component)
response:error
args(backendResponse: BackendResponse, controls: { displayError: boolean })
loading.state:started
args(element: HTMLElement, request: BackendRequest)
loading.state:finished
args(element: HTMLElement)
model:set
args(model: string, value: any, component: Component)
Loading States
Often, you'll want to show (or hide) an element while a component is re-rendering or an action is processing. For example:
1 2 3 4 5
<!-- show only when the component is loading -->
<span data-loading>Loading</span>
<!-- equivalent, longer syntax -->
<span data-loading="show">Loading</span>
Or, to hide an element while the component is loading:
1 2
<!-- hide when the component is loading -->
<span data-loading="hide">Saved!</span>
Adding and Removing Classes or Attributes
Instead of hiding or showing an entire element, you could add or remove a class:
1 2 3 4 5 6 7 8
<!-- add this class when loading -->
<div data-loading="addClass(opacity-50)">...</div>
<!-- remove this class when loading -->
<div data-loading="removeClass(opacity-50)">...</div>
<!-- add multiple classes when loading -->
<div data-loading="addClass(opacity-50 text-muted)">...</div>
Sometimes you may want to add or remove an HTML attribute when loading. That
can be accomplished with addAttribute
or removeAttribute
:
1 2
<!-- add the "disabled" attribute when loading -->
<div data-loading="addAttribute(disabled)">...</div>
Caution
The addAttribute()
and removeAttribute()
functions only work with
empty HTML attributes (disabled
, readonly
, required
, etc.) and
not with attributes that define their values (e.g. this won't work: addAttribute(style='color: red')
).
You can also combine any number of directives by separating them with a space:
1
<div data-loading="addClass(opacity-50) addAttribute(disabled)">...</div>
Finally, you can add the delay
modifier to not trigger the loading
changes until loading has taken longer than a certain amount of time:
1 2 3 4 5 6 7 8
<!-- Add class after 200ms of loading -->
<div data-loading="delay|addClass(opacity-50)">...</div>
<!-- Show after 200ms of loading -->
<div data-loading="delay|show">Loading</div>
<!-- Show after 500ms of loading -->
<div data-loading="delay(500)|show">Loading</div>
Targeting Loading for a Specific Action
2.5
The action()
modifier was introduced in Live Components 2.5.
To only toggle the loading behavior when a specific action is triggered,
use the action()
modifier with the name of the action - e.g. saveForm()
:
1 2 3 4
<!-- show only when the "saveForm" action is triggering -->
<span data-loading="action(saveForm)|show">Loading</span>
<!-- multiple modifiers -->
<div data-loading="action(saveForm)|delay|addClass(opacity-50)">...</div>
Targeting Loading When a Specific Model Changes
2.5
The model()
modifier was introduced in Live Components 2.5.
You can also toggle the loading behavior only if a specific model value
was just changed using the model()
modifier:
1 2 3 4 5 6 7 8
<input data-model="email" type="email">
<span data-loading="model(email)|show">
Checking if email is available...
</span>
<!-- multiple modifiers & child properties -->
<span data-loading="model(user.email)|delay|addClass(opacity-50)">...</span>
Actions
Live components require a single "default action" that is used to
re-render it. By default, this is an empty __invoke()
method and can
be added with the DefaultActionTrait
. Live components are actually
Symfony controllers so you can add the normal controller
attributes/annotations (i.e. #[Cache]
/#[Security]
) to either the
entire class just a single action.
You can also trigger custom actions on your component. Let's pretend we want to add a "Reset Max" button to our "random number" component that, when clicked, sets the min/max numbers back to a default value.
First, add a method with a LiveAction
attribute above it that does
the work:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// src/Twig/Components/RandomNumber.php
namespace App\Twig\Components;
// ...
use Symfony\UX\LiveComponent\Attribute\LiveAction;
class RandomNumber
{
// ...
#[LiveAction]
public function resetMax()
{
$this->max = 1000;
}
// ...
}
2.16
The data-live-action-param
attribute way of specifying the action
was added in Live Components 2.16. Previously, this was done with
data-action-name
.
To call this, trigger the action
method on the live
Stimulus
controller and pass resetMax
as a Stimulus action parameter called
action
:
1 2 3 4
<button
data-action="live#action"
data-live-action-param="resetMax"
>Reset Min/Max</button>
Done! When the user clicks this button, a POST request will be sent that
will trigger the resetMax()
method! After calling that method,
the component will re-render like normal, using the new $max
property value!
You can also add several "modifiers" to the action:
1 2 3 4 5 6
<form>
<button
data-action="live#action"
data-live-action-param="debounce(300)|save"
>Save</button>
</form>
The debounce(300)
adds 300ms of "debouncing" before the action is executed.
In other words, if you click really fast 5 times, only one Ajax request will be made!
You can also use the live_action
twig helper function to render the attributes:
1 2 3 4 5
<button {{ live_action('resetMax') }}>Reset Min/Max</button>
{# with modifiers #}
<button {{ live_action('save', {}, {'debounce': 300}) }}>Save</button>
Actions & Services
One really neat thing about component actions is that they are real Symfony controllers. Internally, they are processed identically to a normal controller method that you would create with a route.
This means that, for example, you can use action autowiring:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// src/Twig/Components/RandomNumber.php
namespace App\Twig\Components;
// ...
use Psr\Log\LoggerInterface;
class RandomNumber
{
// ...
#[LiveAction]
public function resetMax(LoggerInterface $logger)
{
$this->max = 1000;
$logger->debug('The min/max were reset!');
}
// ...
}
Actions & Arguments
2.16
The data-live-{NAME}-param
attribute way of specifying action
arguments was added in Live Components 2.16. Previously, this was done
inside the data-action-name
attribute.
You can also pass arguments to your action by adding each as a Stimulus action parameter:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<form>
<button
data-action="live#action"
data-live-action-param="addItem"
data-live-id-param="{{ item.id }}"
data-live-item-name-param="CustomItem"
>Add Item</button>
</form>
{# or #}
<form>
<button {{ live_action('addItem', {'id': item.id, 'itemName': 'CustomItem' }) }}>Add Item</button>
</form>
In your component, to allow each argument to be passed, add
the #[LiveArg()]
attribute:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// src/Twig/Components/ItemList.php
namespace App\Twig\Components;
// ...
use Psr\Log\LoggerInterface;
use Symfony\UX\LiveComponent\Attribute\LiveArg;
class ItemList
{
// ...
#[LiveAction]
public function addItem(#[LiveArg] int $id, #[LiveArg('itemName')] string $name)
{
$this->id = $id;
$this->name = $name;
}
}
Actions and CSRF Protection
When you trigger an action, a POST request is sent that contains a
custom Accept
header. This header is automatically populated and
validated. In other words… you get CSRF protection without any work
thanks to same-origin / CORS policies implemented by browsers.
If you want this built-in CSRF protection to be effective, mind your CORS headers (e.g. DO NOT use `Access-Control-Allow-Origin: *`).
(In test-mode, the CSRF protection is disabled to make testing easier.)
Actions, Redirecting and AbstractController
Sometimes, you may want to redirect after an action is executed
(e.g. your action saves a form and then you want to redirect to another
page). You can do that by returning a RedirectResponse
from your
action:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
// src/Twig/Components/RandomNumber.php
namespace App\Twig\Components;
// ...
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class RandomNumber extends AbstractController
{
// ...
#[LiveAction]
public function resetMax()
{
// ...
$this->addFlash('success', 'Max has been reset!');
return $this->redirectToRoute('app_random_number');
}
// ...
}
You probably noticed one interesting trick: to make redirecting easier,
the component now extends AbstractController
! That is totally
allowed, and gives you access to all of your normal controller
shortcuts. We even added a flash message!
Uploading files
2.11
The ability to upload files to actions was added in version 2.11.
Files aren't sent to the component by default. You need to use a live action to handle the files and tell the component when the file should be sent:
1 2 3 4 5
<input type="file" name="my_file" />
<button
data-action="live#action"
data-live-action-param="files|my_action"
/>
To send a file (or files) with an action use files
modifier.
Without an argument it will send all pending files to your action.
You can also specify a modifier parameter to choose which files should be upload.
1 2 3 4 5 6 7 8 9 10 11
<p>
<input type="file" name="my_file" />
<input type="file" name="multiple[]" multiple />
{# Send only file from first input #}
<button data-action="live#action" data-live-action-param="files(my_file)|myAction" />
{# You can chain modifiers to send multiple files #}
<button data-action="live#action" data-live-action-param="files(my_file)|files(multiple[])|myAction" />
{# Or send all pending files #}
<button data-action="live#action" data-live-action-param="files|myAction" />
</p>
The files will be available in a regular $request->files
files bag:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
// src/Twig/Components/FileUpload.php
namespace App\Twig\Components;
use Symfony\Component\HttpFoundation\Request;
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
use Symfony\UX\LiveComponent\Attribute\LiveAction;
use Symfony\UX\LiveComponent\DefaultActionTrait;
#[AsLiveComponent]
class FileUpload
{
use DefaultActionTrait;
#[LiveAction]
public function myAction(Request $request)
{
$file = $request->files->get('my_file');
$multiple = $request->files->all('multiple');
// Handle files
}
}
Tip
Remember that in order to send multiple files from a single input you
need to specify multiple
attribute on HTML element and end name
with []
.
Forms
A component can also help render a Symfony form, either the entire
form (useful for automatic validation as you type) or just one or some
fields (e.g. a markdown preview for a textarea
or dependent form fields.
Rendering an Entire Form in a Component
Suppose you have a PostType
form class that's bound to a Post
entity and you'd like to render this in a component so that you can get
instant validation as the user types:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
namespace App\Form;
use App\Entity\Post;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
class PostType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('title')
->add('slug')
->add('content')
;
}
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults([
'data_class' => Post::class,
]);
}
}
Great! In the template for some page (e.g. an "Edit post" page), render a
PostForm
component that we will create next:
1 2 3 4 5 6 7 8 9 10
{# templates/post/edit.html.twig #}
{% extends 'base.html.twig' %}
{% block body %}
<h1>Edit Post</h1>
{{ component('PostForm', {
initialFormData: post,
}) }}
{% endblock %}
Ok: time to build that PostForm
component! The Live Components
package comes with a special trait - ComponentWithFormTrait
- to
make it easy to deal with forms:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
namespace App\Twig\Components;
use App\Entity\Post;
use App\Form\PostType;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Form\FormInterface;
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
use Symfony\UX\LiveComponent\Attribute\LiveProp;
use Symfony\UX\LiveComponent\ComponentWithFormTrait;
use Symfony\UX\LiveComponent\DefaultActionTrait;
#[AsLiveComponent]
class PostForm extends AbstractController
{
use DefaultActionTrait;
use ComponentWithFormTrait;
/**
* The initial data used to create the form.
*/
#[LiveProp]
public ?Post $initialFormData = null;
protected function instantiateForm(): FormInterface
{
// we can extend AbstractController to get the normal shortcuts
return $this->createForm(PostType::class, $this->initialFormData);
}
}
The trait forces you to create an instantiateForm()
method, which is
used each time the component is rendered via AJAX. To recreate the same
form as the original, we pass in the initialFormData
property and set it
as a LiveProp
.
The template for this component will render the form, which is available
as form
thanks to the trait:
1 2 3 4 5 6 7 8 9 10
{# templates/components/PostForm.html.twig #}
<div {{ attributes }}>
{{ form_start(form) }}
{{ form_row(form.title) }}
{{ form_row(form.slug) }}
{{ form_row(form.content) }}
<button>Save</button>
{{ form_end(form) }}
</div>
That's it! The result is incredible! As you finish changing each field, the component automatically re-renders - including showing any validation errors for that field! Amazing!
How this works:
- The
ComponentWithFormTrait
has a$formValues
writableLiveProp
containing the value for every field in your form. - When the user changes a field, that key in
$formValues
is updated and an Ajax request is sent to re-render. - During that Ajax call, the form is submitted using
$formValues
, the form re-renders, and the page is updated.
Build the "New Post" Form Component
The previous component can already be used to edit an existing post or create
a new post. For a new post, either pass in a new Post
object to initialFormData
,
or omit it entirely to let the initialFormData
property default to null
:
1 2 3 4 5 6
{# templates/post/new.html.twig #}
{# ... #}
{{ component('PostForm', {
form: form
}) }}
Submitting the Form via a LiveAction
The simplest way to handle your form submit is directly in your component via a LiveAction:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
// ...
use Doctrine\ORM\EntityManagerInterface;
use Symfony\UX\LiveComponent\Attribute\LiveAction;
class PostForm extends AbstractController
{
// ...
#[LiveAction]
public function save(EntityManagerInterface $entityManager)
{
// Submit the form! If validation fails, an exception is thrown
// and the component is automatically re-rendered with the errors
$this->submitForm();
/** @var Post $post */
$post = $this->getForm()->getData();
$entityManager->persist($post);
$entityManager->flush();
$this->addFlash('success', 'Post saved!');
return $this->redirectToRoute('app_post_show', [
'id' => $post->getId(),
]);
}
}
Next, tell the form
element to use this action:
1 2 3 4 5 6 7 8 9
{# templates/components/PostForm.html.twig #}
{# ... #}
{{ form_start(form, {
attr: {
'data-action': 'live#action:prevent',
'data-live-action-param': 'save'
}
}) }}
Now, when the form is submitted, it will execute the save()
method
via Ajax. If the form fails validation, it will re-render with the
errors. And if it's successful, it will redirect.
Submitting with a Normal Symfony Controller
If you prefer, you can submit the form via a Symfony controller. To do this, create your controller like normal, including the submit logic:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// src/Controller/PostController.php
class PostController extends AbstractController
{
#[Route('/admin/post/{id}/edit', name: 'app_post_edit')]
public function edit(Request $request, Post $post, EntityManagerInterface $entityManager): Response
{
$form = $this->createForm(PostType::class, $post);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
// save, redirect, etc
}
return $this->render('post/edit.html.twig', [
'post' => $post,
'form' => $form, // use $form->createView() in Symfony <6.2
]);
}
}
If validation fails, you'll want the live component to render with the form
errors instead of creating a fresh form. To do that, pass the form
variable
into the component:
1 2 3 4 5
{# templates/post/edit.html.twig #}
{{ component('PostForm', {
initialFormData: post,
form: form
}) }}
Using Form Data in a LiveAction
Each time an Ajax call is made to re-render the live component the form is automatically submitted using the latest data.
However, there are two important things to know:
- When a
LiveAction
is executed, the form has not yet been submitted. - The
initialFormData
property is not updated until after the form is submitted.
If you need to access the latest data in a LiveAction
, you can manually submit
the form:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// ...
#[LiveAction]
public function save()
{
// $this->initialFormData will *not* contain the latest data yet!
// submit the form
$this->submitForm();
// now you can access the latest data
$post = $this->getForm()->getData();
// (same as above)
$post = $this->initialFormData;
}
Tip
If you don't call $this->submitForm()
, it's called automatically
before the component is re-rendered.
Dynamically Updating the Form In a LiveAction
When an Ajax call is made to re-render the live component (whether that's
due to a model change or a LiveAction), the form is submitted using a
$formValues
property from ComponentWithFormTrait
that contains the
latest data from the form.
Sometimes, you need to update something on the form dynamically from a LiveAction
.
For example, suppose you have a "Generate Title" button that, when clicked, will
generate a title based on the content of the post.
To do this, you must update the $this->formValues
property directly
before the form is submitted:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// ...
#[LiveAction]
public function generateTitle()
{
// this works!
// (the form will be submitted automatically after this method, now with the new title)
$this->formValues['title'] = '... some auto-generated-title';
// this would *not* work
// $this->submitForm();
// $post = $this->getForm()->getData();
// $post->setTitle('... some auto-generated-title');
}
This is tricky. The $this->formValues
property is an array of the raw form
data on the frontend and contains only scalar values (e.g. strings, integers, booleans
and arrays). By updating this property, the form will submit as if the user had
typed the new title
into the form. The form will then be re-rendered with the
new data.
Note
If the field you're updating is an object in your code - like an entity object
corresponding to an EntityType
field - you need to use the value that's
used on the frontend of your form. For an entity, that's the id
:
1
$this->formValues['author'] = $author->getId();
Why not just update the $post
object directly? Once you submit the form, the
"form view" (data, errors, etc for the frontend) has already been created. Changing
the $post
object has no effect. Even modifying $this->initialFormData
before submitting the form has no effect: the actual, submitted title
would
override that.
Form Rendering Problems
For the most part, rendering a form inside a component works beautifully. But there are a few situations when your form may not behave how you want.
A) Text Boxes Removing Trailing Spaces
If you're re-rendering a field on the input
event (that's the
default event on a field, which is fired each time you type in a text
box), then if you type a "space" and pause for a moment, the space will
disappear!
This is because Symfony text fields "trim spaces" automatically. When
your component re-renders, the space will disappear… as the user is
typing! To fix this, either re-render on the change
event (which
fires after the text box loses focus) or set the trim
option of your
field to false
:
1 2 3 4 5 6 7 8 9
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
// ...
->add('content', TextareaType::class, [
'trim' => false,
])
;
}
B) PasswordType
loses the password on re-render
If you're using the PasswordType
, when the component re-renders, the
input will become blank! That's because, by default, the
PasswordType
does not re-fill the <input type="password">
after
a submit.
To fix this, set the always_empty
option to false
in your form:
1 2 3 4 5 6 7 8 9
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
// ...
->add('plainPassword', PasswordType::class, [
'always_empty' => false,
])
;
}
Resetting the Form
2.10
The resetForm()
method was added in LiveComponent 2.10.
After submitting a form via an action, you might want to "reset" the form
back to its initial state so you can use it again. Do that by calling
resetForm()
in your action instead of redirecting:
1 2 3 4 5 6 7
#[LiveAction]
public function save(EntityManagerInterface $entityManager)
{
// ...
$this->resetForm();
}
Using Actions to Change your Form: CollectionType
Symfony's CollectionType can be used to embed a collection of embedded forms including allowing the user to dynamically add or remove them. Live components make this all possible while writing zero JavaScript.
For example, imagine a "Blog Post" form with an embedded "Comment" forms
via the CollectionType
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
namespace App\Form;
use App\Entity\BlogPost;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CollectionType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
class BlogPostFormType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('title', TextType::class)
// ...
->add('comments', CollectionType::class, [
'entry_type' => CommentFormType::class,
'allow_add' => true,
'allow_delete' => true,
'by_reference' => false,
])
;
}
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(['data_class' => BlogPost::class]);
}
}
Now, create a Twig component to render the form:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
namespace App\Twig;
use App\Entity\BlogPost;
use App\Entity\Comment;
use App\Form\BlogPostFormType;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Form\FormInterface;
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
use Symfony\UX\LiveComponent\Attribute\LiveAction;
use Symfony\UX\LiveComponent\ComponentWithFormTrait;
use Symfony\UX\LiveComponent\DefaultActionTrait;
#[AsLiveComponent]
class BlogPostCollectionType extends AbstractController
{
use ComponentWithFormTrait;
use DefaultActionTrait;
#[LiveProp]
public Post $initialFormData;
protected function instantiateForm(): FormInterface
{
return $this->createForm(BlogPostFormType::class, $this->initialFormData);
}
#[LiveAction]
public function addComment()
{
// "formValues" represents the current data in the form
// this modifies the form to add an extra comment
// the result: another embedded comment form!
// change "comments" to the name of the field that uses CollectionType
$this->formValues['comments'][] = [];
}
#[LiveAction]
public function removeComment(#[LiveArg] int $index)
{
unset($this->formValues['comments'][$index]);
}
}
The template for this component has two jobs: (1) render the form
like normal and (2) include links that trigger the addComment()
and removeComment()
actions:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
<div{{ attributes }}>
{{ form_start(form) }}
{{ form_row(form.title) }}
<h3>Comments:</h3>
{% for key, commentForm in form.comments %}
<button
data-action="live#action"
data-live-action-param="removeComment"
data-live-index-param="{{ key }}"
type="button"
>X</button>
{{ form_widget(commentForm) }}
{% endfor %}
{# avoid an extra label for this field #}
{% do form.comments.setRendered %}
<button
data-action="live#action"
data-live-action-param="addComment"
type="button"
>+ Add Comment</button>
<button type="submit" >Save</button>
{{ form_end(form) }}
</div>
Done! Behind the scenes, it works like this:
A) When the user clicks "+ Add Comment", an Ajax request is sent that
triggers the addComment()
action.
B) addComment()
modifies formValues
, which you can think of as
the raw "POST" data of your form.
C) Still during the Ajax request, the formValues
are "submitted"
into your form. The new key inside of $this->formValues['comments']
tells the CollectionType
that you want a new, embedded form.
D) The form is rendered - now with another embedded form! - and the Ajax call returns with the form (with the new embedded form).
When the user clicks removeComment()
, a similar process happens.
Note
When working with Doctrine entities, add orphanRemoval: true
and cascade={"persist"}
to your OneToMany
relationship.
In this example, these options would be added to the OneToMany
attribute above the Post.comments
property. These help new
items save and deletes any items whose embedded forms are removed.
Using LiveCollectionType
2.2
The LiveCollectionType
and the LiveCollectionTrait
was added in LiveComponent 2.2.
The LiveCollectionType
uses the same method described above, but in
a generic way, so it needs even less code. This form type adds an 'Add'
and a 'Delete' button for each row by default, which work out of the box
thanks to the LiveCollectionTrait
.
Let's take the same example as before, a "Blog Post" form with an embedded "Comment" forms
via the LiveCollectionType
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
namespace App\Form;
use App\Entity\BlogPost;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\UX\LiveComponent\Form\Type\LiveCollectionType;
class BlogPostFormType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('title', TextType::class)
// ...
->add('comments', LiveCollectionType::class, [
'entry_type' => CommentFormType::class,
])
;
}
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(['data_class' => BlogPost::class]);
}
}
Now, create a Twig component to render the form:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
namespace App\Twig;
use App\Entity\BlogPost;
use App\Form\BlogPostFormType;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Form\FormInterface;
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
use Symfony\UX\LiveComponent\Attribute\LiveProp;
use Symfony\UX\LiveComponent\DefaultActionTrait;
use Symfony\UX\LiveComponent\LiveCollectionTrait;
#[AsLiveComponent]
class BlogPostCollectionType extends AbstractController
{
use LiveCollectionTrait;
use DefaultActionTrait;
#[LiveProp]
public BlogPost $initialFormData;
protected function instantiateForm(): FormInterface
{
return $this->createForm(BlogPostFormType::class, $this->initialFormData);
}
}
There is no need for a custom template just render the form as usual:
1 2 3
<div {{ attributes }}>
{{ form(form) }}
</div>
This automatically renders add and delete buttons that are connected to the live component. If you want to customize how the buttons and the collection rows are rendered, you can use Symfony's built-in form theming techniques, but you should note that, the buttons are not part of the form tree.
Note
Under the hood, LiveCollectionType
adds button_add
and
button_delete
fields to the form in a special way. These fields
are not added as regular form fields, so they are not part of the form
tree, but only the form view. The button_add
is added to the
collection view variables and a button_delete
is added to each
item view variables.
Here are some examples of these techniques.
If you only want to customize some attributes, the simplest to use the options in the form type:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// ...
$builder
// ...
->add('comments', LiveCollectionType::class, [
'entry_type' => CommentFormType::class,
'label' => false,
'button_delete_options' => [
'label' => 'X',
'attr' => [
'class' => 'btn btn-outline-danger',
],
]
])
;
Inline rendering:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<div {{ attributes }}>
{{ form_start(form) }}
{{ form_row(form.title) }}
<h3>Comments:</h3>
{% for key, commentForm in form.comments %}
{# render a delete button for every row #}
{{ form_row(commentForm.vars.button_delete, { label: 'X', attr: { class: 'btn btn-outline-danger' } }) }}
{# render rest of the comment form #}
{{ form_row(commentForm, { label: false }) }}
{% endfor %}
{# render the add button #}
{{ form_widget(form.comments.vars.button_add, { label: '+ Add comment', attr: { class: 'btn btn-outline-primary' } }) }}
{# render rest of the form #}
{{ form_row(form) }}
<button type="submit" >Save</button>
{{ form_end(form) }}
</div>
Override the specific block for comment items:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{% form_theme form 'components/_form_theme_comment_list.html.twig' %}
<div {{ attributes }}>
{{ form_start(form) }}
{{ form_row(form.title)
<h3>Comments:</h3>
<ul>
{{ form_row(form.comments, { skip_add_button: true }) }}
</ul>
{# render rest of the form #}
{{ form_row(form) }}
<button type="submit" >Save</button>
{{ form_end(form) }}
</div>
1 2 3 4 5 6 7
{# templates/components/_form_theme_comment_list.html.twig #}
{%- block _blog_post_form_comments_entry_row -%}
<li class="...">
{{ form_row(form.content, { label: false }) }}
{{ form_row(button_delete, { label: 'X', attr: { class: 'btn btn-outline-danger' } }) }}
</li>
{% endblock %}
Note
You may put the form theme into the component template and use {% form_theme form _self %}
. However,
because the component template doesn't extend anything, it will not work as expected, you must point
form_theme
to a separate template. See How to Work with Form Themes.
Override the generic buttons and collection entry:
The add
and delete
buttons are rendered as separate ButtonType
form
types and can be customized like a normal form type via the live_collection_button_add
and live_collection_button_delete
block prefix respectively:
1 2 3 4 5 6 7 8 9 10 11 12
{% block live_collection_button_add_widget %}
{% set attr = attr|merge({'class': attr.class|default('btn btn-ghost')}) %}
{% set translation_domain = false %}
{% set label_html = true %}
{%- set label -%}
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
</svg>
{{ 'form.collection.button.add.label'|trans({}, 'forms') }}
{%- endset -%}
{{ block('button_widget') }}
{% endblock live_collection_button_add_widget %}
To control how each row is rendered you can override the blocks related to the LiveCollectionType
. This
works the same way as the traditional collection type, but you should use live_collection_*
and live_collection_entry_*
as prefixes instead.
For example, by default the add button is placed after the items (the comments in our case). Let's move it before them.
1 2 3 4 5 6
{%- block live_collection_widget -%}
{%- if button_add is defined and not button_add.rendered -%}
{{ form_row(button_add) }}
{%- endif -%}
{{ block('form_widget') }}
{%- endblock -%}
Now add a div around each row:
1 2 3 4 5 6 7 8
{%- block live_collection_entry_row -%}
<div>
{{ block('form_row') }}
{%- if button_delete is defined and not button_delete.rendered -%}
{{ form_row(button_delete) }}
{%- endif -%}
</div>
{%- endblock -%}
As another example, let's create a general bootstrap 5 theme for the live collection type, rendering every item in a table row:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
{%- block live_collection_widget -%}
<table class="table table-borderless form-no-mb">
<thead>
<tr>
{% for child in form|last %}
<td>{{ form_label(child) }}</td>
{% endfor %}
<td></td>
</tr>
</thead>
<tbody>
{{ block('form_widget') }}
</tbody>
</table>
{%- if skip_add_button|default(false) is same as(false) and button_add is defined and not button_add.rendered -%}
{{ form_widget(button_add, { label: '+ Add Item', attr: { class: 'btn btn-outline-primary' } }) }}
{%- endif -%}
{%- endblock -%}
{%- block live_collection_entry_row -%}
<tr>
{% for child in form %}
<td>{{- form_row(child, { label: false }) -}}</td>
{% endfor %}
<td>
{{- form_row(button_delete, { label: 'X', attr: { class: 'btn btn-outline-danger' } }) -}}
</td>
</tr>
{%- endblock -%}
To render the add button later in the template, you can skip rendering it initially with skip_add_button
,
then render it manually after:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<table class="table table-borderless form-no-mb">
<thead>
<tr>
<td>Item</td>
<td>Priority</td>
<td></td>
</tr>
</thead>
<tbody>
{{ form_row(form.todoItems, { skip_add_button: true }) }}
</tbody>
</table>
{{ form_widget(form.todoItems.vars.button_add, { label: '+ Add Item', attr: { class: 'btn btn-outline-primary' } }) }}
Validation (without a Form)
Note
If your component contains a form, then validation is built-in automatically. Follow those docs for more details.
If you're building a form without using Symfony's form component, you can still validate your data.
First use the ValidatableComponentTrait
and add any constraints you
need:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
use App\Entity\User;
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
use Symfony\UX\LiveComponent\Attribute\LiveProp;
use Symfony\UX\LiveComponent\ValidatableComponentTrait;
#[AsLiveComponent]
class EditUser
{
use ValidatableComponentTrait;
#[LiveProp(writable: ['email', 'plainPassword'])]
#[Assert\Valid]
public User $user;
#[LiveProp]
#[Assert\IsTrue]
public bool $agreeToTerms = false;
}
Be sure to add the IsValid
attribute/annotation to any property
where you want the object on that property to also be validated.
Thanks to this setup, the component will now be automatically validated on each render, but in a smart way: a property will only be validated once its "model" has been updated on the frontend. The system keeps track of which models have been updated and only stores the errors for those fields on re-render.
You can also trigger validation of your entire object manually in an action:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use Symfony\UX\LiveComponent\Attribute\LiveAction;
#[AsLiveComponent]
class EditUser
{
// ...
#[LiveAction]
public function save()
{
// this will throw an exception if validation fails
$this->validate();
// perform save operations
}
}
If validation fails, an exception is thrown, but the component will be
re-rendered. In your template, render errors using an _errors
variable:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
{% if _errors.has('post.content') %}
<div class="error">
{{ _errors.get('post.content') }}
</div>
{% endif %}
<textarea
data-model="post.content"
class="{{ _errors.has('post.content') ? 'is-invalid' : '' }}"
></textarea>
{% if _errors.has('agreeToTerms') %}
<div class="error">
{{ _errors.get('agreeToTerms') }}
</div>
{% endif %}
<input type="checkbox" data-model="agreeToTerms" class="{{ _errors.has('agreeToTerms') ? 'is-invalid' : '' }}"/>
<button
type="submit"
data-action="live#action:prevent"
data-live-action-param="save"
>Save</button>
Once a component has been validated, the component will "remember" that it has been validated. This means that, if you edit a field and the component re-renders, it will be validated again.
Resetting Validation Errors
If you want to clear validation errors (e.g. so you can reuse the form again),
you can call the resetValidation()
method:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// ...
class EditUser
{
// ...
#[LiveAction]
public function save()
{
// validate, save, etc
// reset your live props to the original state
$this->user = new User();
$this->agreeToTerms = false;
// clear the validation state
$this->resetValidation();
}
}
Real-Time Validation on Change
As soon as validation is enabled, each field will be validated the
moment that its model is updated. By default, that happens in the
input
event, so when the user types into text fields. Often,
that's too much (e.g. you want a user to finish typing their full email
address before validating it).
To validate only on "change", use the on(change)
modifier:
1 2 3 4 5
<input
type="email"
data-model="on(change)|user.email"
class="{{ _errors.has('post.content') ? 'is-invalid' : '' }}"
>
Deferring / Lazy Loading Components
When a page loads, all components are rendered immediately. If a component is
heavy to render, you can defer its rendering until after the page has loaded.
This is done by making an Ajax call to load the component's real content either
as soon as the page loads (defer
) or when the component becomes visible
(lazy
).
Note
Behind the scenes, your component is created & mounted during the initial
page load, but its template isn't rendered. So keep your heavy work to
methods in your component (e.g. getProducts()
) that are only called
from the component's template.
Loading "defer" (Ajax on Load)
2.13.0
The ability to defer loading a component was added in Live Components 2.13.
If a component is heavy to render, you can defer rendering it until after
the page has loaded. To do this, add a loading="defer"
attribute:
1 2
{# With the HTML syntax #}
<twig:SomeHeavyComponent loading="defer" />
1 2
{# With the component function #}
{{ component('SomeHeavyComponent', { loading: 'defer' }) }}
This renders an empty <div>
tag, but triggers an Ajax call to render the
real component once the page has loaded.
Loading "lazy" (Ajax when Visible)
2.17.0
The ability to load a component "lazily" was added in Live Components 2.17.
The lazy
option is similar to defer
, but it defers the loading of
the component until it's in the viewport. This is useful for components that
are far down the page and are not needed until the user scrolls to them.
To use this, set a loading="lazy"
attribute to your component:
1 2
{# With the HTML syntax #}
<twig:Acme foo="bar" loading="lazy" />
1 2
{# With the Twig syntax #}
{{ component('SomeHeavyComponent', { loading: 'lazy' }) }}
This renders an empty <div>
tag. The real component is only rendered when
it appears in the viewport.
Defer or Lazy?
The defer
and lazy
options may seem similar, but they serve different
purposes:
defer
is useful for components that are heavy to render but are required
when the page loads.
lazy
is useful for components that are not needed until the user scrolls
to them (and may even never be rendered).
Loading content
You can define some content to be rendered while the component is loading, either
inside the component template (the placeholder
macro) or from the calling template
(the loading-template
attribute and the loadingContent
block).
2.16.0
Defining a placeholder macro into the component template was added in Live Components 2.16.0.
In the component template, define a placeholder
macro, outside of the
component's main content. This macro will be called when the component is deferred:
1 2 3 4 5 6 7 8 9 10 11 12
{# templates/recommended-products.html.twig #}
<div {{ attributes }}>
{# This will be rendered when the component is fully loaded #}
{% for product in this.products %}
<div>{{ product.name }}</div>
{% endfor %}
</div>
{% macro placeholder(props) %}
{# This content will (only) be rendered as loading content #}
<span class="loading-row"></span>
{% endmacro %}
The props
argument contains the props passed to the component.
You can use it to customize the placeholder content. Let's say your
component shows a certain number of products (defined with the size
prop). You can use it to define a placeholder that shows the same
number of rows:
1 2
{# In the calling template #}
<twig:RecommendedProducts size="3" loading="defer" />
1 2 3 4 5 6 7 8
{# In the component template #}
{% macro placeholder(props) %}
{% for i in 1..props.size %}
<div class="loading-product">
...
</div>
{% endfor %}
{% endmacro %}
To customize the loading content from the calling template, you can use
the loading-template
option to point to a template:
1 2 3 4 5
{# With the HTML syntax #}
<twig:SomeHeavyComponent loading="defer" loading-template="spinning-wheel.html.twig" />
{# With the component function #}
{{ component('SomeHeavyComponent', { loading: 'defer', 'loading-template': 'spinning-wheel.html.twig' }) }}
Or override the loadingContent
block:
1 2 3 4 5 6 7 8 9
{# With the HTML syntax #}
<twig:SomeHeavyComponent loading="defer">
<twig:block name="loadingContent">Custom Loading Content...</twig:block>
</twig:SomeHeavyComponent>
{# With the component tag #}
{% component SomeHeavyComponent with { loading: 'defer' } %}
{% block loadingContent %}Loading...{% endblock %}
{% endcomponent %}
When loading-template
or loadingContent
is defined, the placeholder
macro is ignored.
To change the initial tag from a div
to something else, use the loading-tag
option:
1
{{ component('SomeHeavyComponent', { loading: 'defer', 'loading-tag': 'span' }) }}
Polling
You can also use "polling" to continually refresh a component. On the
top-level element for your component, add data-poll
:
1 2 3 4
<div
{{ attributes }}
+ data-poll
>
This will make a request every 2 seconds to re-render the component. You
can change this by adding a delay()
modifier. When you do this, you
need to be specific that you want to call the $render
method. To
delay for 500ms:
1 2 3 4
<div
{{ attributes }}
data-poll="delay(500)|$render"
>
You can also trigger a specific "action" instead of a normal re-render:
1 2 3 4 5 6 7 8 9
<div
{{ attributes }}
data-poll="save"
{#
Or add a delay() modifier:
data-poll="delay(2000)|save"
#}
>
Changing the URL when a LiveProp changes
2.14
The url
option was introduced in Live Components 2.14.
If you want the URL to update when a LiveProp
changes, you can do that with the url
option:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// src/Twig/Components/SearchModule.php
namespace App\Twig\Components;
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
use Symfony\UX\LiveComponent\Attribute\LiveProp;
use Symfony\UX\LiveComponent\DefaultActionTrait;
#[AsLiveComponent]
class SearchModule
{
use DefaultActionTrait;
#[LiveProp(writable: true, url: true)]
public string $query = '';
}
Now, when the user changes the value of the query
prop, a query parameter in the URL will be updated to reflect the
new state of your component, for example: https://my.domain/search?query=my+search+string
.
If you load this URL in your browser, the LiveProp
value will be initialized using the query string
(e.g. my search string
).
Note
The URL is changed via history.replaceState()
. So no new entry is added.
Supported Data Types
You can use scalars, arrays and objects in your URL bindings:
JavaScript prop value |
URL representation |
---|---|
'some search string' |
prop=some+search+string |
42 |
prop=42 |
['foo', 'bar'] |
prop[0]=foo&prop[1]=bar |
{ foo: 'bar', baz: 42 } |
prop[foo]=bar&prop[baz]=42 |
When a page is loaded with a query parameter that's bound to a LiveProp
(e.g. /search?query=my+search+string
),
the value - my search string
- goes through the hydration system before it's set onto the property. If a value can't
be hydrated, it will be ignored.
Multiple Query Parameter Bindings
You can use as many URL bindings as you want in your component. To ensure the state is fully represented in the URL, all bound props will be set as query parameters, even if their values didn't change.
For example, if you declare the following bindings:
1 2 3 4 5 6 7 8 9 10 11 12
// ...
#[AsLiveComponent]
class SearchModule
{
#[LiveProp(writable: true, url: true)]
public string $query = '';
#[LiveProp(writable: true, url: true)]
public string $mode = 'fulltext';
// ...
}
And you only set the query
value, then your URL will be updated to
https://my.domain/search?query=my+query+string&mode=fulltext
.
Controlling the Query Parameter Name
2.17
The as
option was added in LiveComponents 2.17.
Instead of using the prop's field name as the query parameter name, you can use the as
option in your LiveProp
definition:
1 2 3 4 5 6 7 8 9 10 11
// ...
use Symfony\UX\LiveComponent\Metadata\UrlMapping;
#[AsLiveComponent]
class SearchModule
{
#[LiveProp(writable: true, url: new UrlMapping(as: 'q'))]
public string $query = '';
// ...
}
Then the query
value will appear in the URL like https://my.domain/search?q=my+query+string
.
If you need to change the parameter name on a specific page, you can leverage the modifier option:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// ...
use Symfony\UX\LiveComponent\Metadata\UrlMapping;
#[AsLiveComponent]
class SearchModule
{
#[LiveProp(writable: true, url: true, modifier: 'modifyQueryProp')]
public string $query = '';
#[LiveProp]
public ?string $alias = null;
public function modifyQueryProp(LiveProp $liveProp): LiveProp
{
if ($this->alias) {
$liveProp = $liveProp->withUrl(new UrlMapping(as: $this->alias));
}
return $liveProp;
}
}
1
<twig:SearchModule alias="q" />
This way you can also use the component multiple times in the same page and avoid collisions in parameter names:
1 2
<twig:SearchModule alias="q1" />
<twig:SearchModule alias="q2" />
Validating the Query Parameter Values
Like any writable LiveProp
, because the user can modify this value, you should consider adding
validation. When you bind a LiveProp
to the URL, the initial value is not automatically
validated. To validate it, you have to set up a PostMount hook:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
// ...
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\UX\LiveComponent\ValidatableComponentTrait;
use Symfony\UX\TwigComponent\Attribute\PostMount;
#[AsLiveComponent]
class SearchModule
{
use ValidatableComponentTrait;
#[LiveProp(writable: true, url: true)]
public string $query = '';
#[LiveProp(writable: true, url: true)]
#[Assert\NotBlank]
public string $mode = 'fulltext';
#[PostMount]
public function postMount(): void
{
// Validate 'mode' field without throwing an exception, so the component can
// be mounted anyway and a validation error can be shown to the user
if (!$this->validateField('mode', false)) {
// Do something when validation fails
}
}
// ...
}
Note
You can use validation groups if you want to use specific validation rules only in the PostMount hook.
Communication Between Components: Emitting Events
2.8
The ability to emit events was added in Live Components 2.8.
Events allow you to communicate between any two components that live on your page.
Emitting an Event
There are three ways to emit an event:
2.16
The data-live-event-param
attribute was added in Live Components 2.16.
Previously, it was called data-event
.
From Twig:
1 2 3 4
<button data-action="live#emit" data-live-event-param="productAdded" >
From your PHP component via
ComponentToolsTrait
:1 2 3 4 5 6 7 8 9 10 11 12 13 14
use Symfony\UX\LiveComponent\ComponentToolsTrait; class MyComponent { use ComponentToolsTrait; #[LiveAction] public function saveProduct() { // ... $this->emit('productAdded'); } }
- From JavaScript, using your component:
1
this.component.emit('productAdded');
Listen to Events
To listen to an event, add a method with a #[LiveListener]
above it:
1 2 3 4 5 6 7 8
#[LiveProp]
public int $productCount = 0;
#[LiveListener('productAdded')]
public function incrementProductCount()
{
$this->productCount++;
}
Thanks to this, when any other component emits the productAdded
event, an Ajax
call will be made to call this method and re-render the component.
Behind the scenes, event listeners are also LiveActions <actions>
, so you can
autowire any services you need.
Passing Data to Listeners
You can also pass extra (scalar) data to the listeners:
1 2 3 4 5 6 7 8 9
#[LiveAction]
public function saveProduct()
{
// ...
$this->emit('productAdded', [
'product' => $product->getId(),
]);
}
In your listeners, you can access this by adding a matching argument
name with #[LiveArg]
in front:
1 2 3 4 5 6
#[LiveListener('productAdded')]
public function incrementProductCount(#[LiveArg] int $product)
{
$this->productCount++;
$this->lastProduct = $data['product'];
}
And because event listeners are also actions, you can type-hint an argument with an entity name, just like you would in a controller:
1 2 3 4 5 6
#[LiveListener('productAdded')]
public function incrementProductCount(#[LiveArg] Product $product)
{
$this->productCount++;
$this->lastProduct = $product;
}
Scoping Events
By default, when an event is emitted, it is sent to all components that are currently on the page. You can scope these in various ways:
Emitting only to Parent Components
If you want to emit an event to only the parent components, use the
emitUp()
method:
1 2 3 4
<button
data-action="live#emitUp"
data-live-event-param="productAdded"
>
Or, in PHP:
1
$this->emitUp('productAdded');
Emitting only to Components with a Specific Name
If you want to emit an event to only components with a specific name,
use the name()
modifier:
1 2 3 4
<button
data-action="live#emit"
data-live-event-param="name(ProductList)|productAdded"
>
Or, in PHP:
1
$this->emit('productAdded', componentName: 'ProductList');
Emitting only to Yourself
To emit an event to only yourself, use the emitSelf()
method:
1 2 3 4
<button
data-action="live#emitSelf"
data-live-event-param="productAdded"
>
Or, in PHP:
1
$this->emitSelf('productAdded');
Dispatching Browser/JavaScript Events
Sometimes you may want to dispatch a JavaScript event from your component. You could use this to signal, for example, that a modal should close:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use Symfony\UX\LiveComponent\ComponentToolsTrait;
// ...
class MyComponent
{
use ComponentToolsTrait;
#[LiveAction]
public function saveProduct()
{
// ...
$this->dispatchBrowserEvent('modal:close');
}
}
This will dispatch a modal:close
event on the top-level element of
your component. It's often handy to listen to this event in a custom
Stimulus controller - like this for Bootstrap's modal:
1 2 3 4 5 6 7 8 9 10 11 12
// assets/controllers/bootstrap-modal-controller.js
import { Controller } from '@hotwired/stimulus';
import Modal from 'bootstrap/js/dist/modal';
export default class extends Controller {
modal = null;
initialize() {
this.modal = Modal.getOrCreateInstance(this.element);
window.addEventListener('modal:close', () => this.modal.hide());
}
}
Just make sure this controller is attached to the modal element:
1 2 3 4 5
<div class="modal fade" {{ stimulus_controller('bootstrap-modal') }}>
<div class="modal-dialog">
... content ...
</div>
</div>
You can also pass data to the event:
1 2 3
$this->dispatchBrowserEvent('product:created', [
'product' => $product->getId(),
]);
This becomes the detail
property of the event:
1 2 3
window.addEventListener('product:created', (event) => {
console.log(event.detail.product);
});
Nested Components
Need to nest one live component inside another one? No problem! As a rule of thumb, each component exists in its own, isolated universe. This means that if a parent component re-renders, it won't automatically cause the child to re-render (but it can - keep reading). Or, if a model in a child updates, it won't also update that model in its parent (but it can - keep reading).
The parent-child system is smart. And with a few tricks (such as the key prop for lists of embedded components), you can make it behave exactly like you need.
Each component re-renders independent of one another
If a parent component re-renders, this won't, by default, cause any child components to re-render, but you can make it do that. Let's look at an example of a todo list component with a child that renders the total number of todo items:
1 2 3 4 5 6 7 8 9 10 11 12
{# templates/components/TodoList.html.twig #}
<div {{ attributes }}>
<input data-model="listName">
{% for todo in todos %}
...
{% endfor %}
{{ component('TodoFooter', {
count: todos|length
}) }}
</div>
Suppose the user updates the listName
model and the parent component
re-renders. In this case, the child component will not re-render by design:
each component lives in its own universe.
2.8
The updateFromParent
option was added in Live Components 2.8. Previously,
a child would re-render when any props passed into it changed.
However, if the user adds a new todo item then we do want the TodoFooter
child component to re-render: using the new count
value. To trigger this,
in the TodoFooter
component, add the updateFromParent
option:
1 2 3 4 5 6
#[LiveComponent()]
class TodoFooter
{
#[LiveProp(updateFromParent: true)]
public int $count = 0;
}
Now, when the parent component re-renders, if the value of the count
prop
changes, the child will make a second Ajax request to re-render itself.
Note
To work, the name of the prop that's passed when rendering the TodoFooter
component must match the property name that has the updateFromParent
- e.g.
{{ component('TodoFooter', { count: todos|length }) }}
. If you pass in a
different name and set the count
property via a mount() method, the
child component will not re-render correctly.
Child components keep their modifiable LiveProp values
What if the TodoFooter
component in the previous example also has
an isVisible
LiveProp(writable: true)
property which starts as
true
but can be changed (via a link click) to false
. Will
re-rendering the child when count
changes cause this to be reset back to its
original value? Nope! When the child component re-renders, it will keep the
current value for all props, except for those that are marked as
updateFromParent
.
What if you do want your entire child component to re-render (including
resetting writable live props) when some value in the parent changes? This
can be done by manually giving your component an id
attribute
that will change if the component should be totally re-rendered:
1 2 3 4 5 6 7 8 9
{# templates/components/TodoList.html.twig #}
<div {{ attributes }}>
<!-- ... -->
{{ component('TodoFooter', {
count: todos|length,
id: 'todo-footer-'~todos|length
}) }}
</div>
In this case, if the number of todos change, then the id
attribute of the component will also change. This signals that the
component should re-render itself completely, discarding any writable
LiveProp values.
Actions in a child do not affect the parent
Again, each component is its own, isolated universe! For example, suppose your child component has:
1
<button data-action="live#action" data-live-action-param="save">Save</button>
When the user clicks that button, it will attempt to call the save
action in the child component only, even if the save
action
actually only exists in the parent. The same is true for data-model
,
though there is some special handling for this case (see next point).
Communicating with a Parent Component
There are two main ways to communicate from a child component to a parent component:
-
The most flexible way to communicate: any information can be sent from the child to the parent.
Updating a parent model from a child
Useful as a simple way to "synchronize" a child model with a parent model: when the child model changes, the parent model will also change.
Updating a Parent Model from a Child
Suppose a child component has a:
1
<textarea data-model="value">
When the user changes this field, this will only update the
value
field in the child component… because (yup, we're
saying it again): each component is its own, isolated universe.
However, sometimes this isn't what you want! Sometimes, when a
child model changes, that should also update a model on the
parent. To do this, pass a dataModel
(or data-model
)
attribute to the child:
1 2 3 4 5
{# templates/components/PostForm.html.twig #}
{{ component('TextareaField', {
dataModel: 'content',
error: _errors.get('content'),
}) }}
This does two things:
- A prop called
value
will be passed intoTextareaField
set tocontent
from the parent component (i.e. the same as manually passingvalue: content
into the component). - When the
value
prop changes inside ofTextareaField
, thecontent
prop will change on the parent component.
This result is that, when value
changes, the parent component
will also re-render, thanks to the fact that its content
prop
changed.
Note
If you change a LiveProp
of a child component on the server
(e.g. during re-rendering or via an action), that change will
not be reflected on any parent components that share that model.
You can also specify the name of the child prop with the parentProp:childProp
syntax. The following is the same as above:
1 2 3 4
<!-- same as dataModel: 'content' -->
{{ component('TextareaField', {
dataModel: 'content:value',
}) }}
If your child component has multiple models, separate each with a space:
1 2 3
{{ component('TextareaField', {
dataModel: 'user.firstName:first user.lastName:last',
}) }}
In this case, the child component will receive first
and last
props. And, when those update, the user.firstName
and user.lastName
models will be updated on the parent.
Full Embedded Component Example
Let's look at a full, complex example of an embedded component. Suppose
you have an EditPost
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
namespace App\Twig\Components;
use App\Entity\Post;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
use Symfony\UX\LiveComponent\Attribute\LiveAction;
use Symfony\UX\LiveComponent\Attribute\LiveProp;
#[AsLiveComponent]
final class EditPost extends AbstractController
{
#[LiveProp(writable: ['title', 'content'])]
public Post $post;
#[LiveAction]
public function save(EntityManagerInterface $entityManager)
{
$entityManager->flush();
return $this->redirectToRoute('some_route');
}
}
And a MarkdownTextarea
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
namespace App\Twig\Components;
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
use Symfony\UX\LiveComponent\Attribute\LiveProp;
#[AsLiveComponent]
final class MarkdownTextarea
{
#[LiveProp]
public string $label;
#[LiveProp]
public string $name;
#[LiveProp(writable: true)]
public string $value = '';
}
In the EditPost
template, you render the
MarkdownTextarea
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
{# templates/components/EditPost.html.twig #}
<div {{ attributes }}>
<form data-model="on(change)|*">
<input
type="text"
name="post[title]"
value="{{ post.title }}"
>
{{ component('MarkdownTextarea', {
name: 'post[content]',
dataModel: 'post.content:value',
label: 'Content',
}) }}
<button
data-action="live#action"
data-live-action-param="save"
>Save</button>
</form>
</div>
1 2 3 4 5 6 7 8 9 10
<div {{ attributes }} class="mb-3">
<textarea
name="{{ name }}"
data-model="value"
></textarea>
<div class="markdown-preview">
{{ value|markdown_to_html }}
</div>
</div>
Notice that MarkdownTextarea
allows a dynamic name
attribute to be passed in. This makes that component re-usable in any
form.
Rendering Quirks with List of Elements
If you're rendering a list of elements in your component, to help LiveComponents
understand which element is which between re-renders (i.e. if something re-orders
or removes some of those elements), you can add a id
attribute to
each element
1 2 3 4 5 6
{# templates/components/Invoice.html.twig #}
{% for lineItem in lineItems %}
<div id="{{ lineItem.id }}">
{{ lineItem.name }}
</div>
{% endfor %}
Rendering Quirks with List of Embedded Components
Imagine your component renders a list of child components and the list changes as the user types into a search box... or by clicking "delete" on an item. In this case, the wrong children may be removed or existing child components may not disappear when they should.
2.8
The key
prop was added in Symfony UX Live Component 2.8.
To fix this, add a key
prop to each child component that's unique
to that component:
1 2 3 4 5 6 7
{# templates/components/InvoiceCreator.html.twig #}
{% for lineItem in invoice.lineItems %}
{{ component('InvoiceLineItemForm', {
lineItem: lineItem,
key: lineItem.id,
}) }}
{% endfor %}
The key
will be used to generate an id
attribute,
which will be used to identify each child component. You can
also pass in a id
attribute directly, but key
is
a bit more convenient.
Tricks with a Loop + a "New" Item
Let's get fancier. After looping over the current line items, you
decide to render one more component to create a new line item.
In that case, you can pass in a key
set to something like new_line_item
:
1 2 3 4 5 6
{# templates/components/InvoiceCreator.html.twig #}
// ... loop and render the existing line item components
{{ component('InvoiceLineItemForm', {
key: 'new_line_item',
}) }}
Imagine you also have a LiveAction
inside of InvoiceLineItemForm
that saves the new line item to the database. To be extra fancy,
it emits a lineItem:created
event to the parent:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
// src/Twig/InvoiceLineItemForm.php
// ...
#[AsLiveComponent]
final class InvoiceLineItemForm
{
// ...
#[LiveProp]
#[Valid]
public ?InvoiceLineItem $lineItem = null;
#[PostMount]
public function postMount(): void
{
if (!$this->lineItem) {
$this->lineItem = new InvoiceLineItem();
}
}
#[LiveAction]
public function save(EntityManagerInterface $entityManager)
{
if (!$this->lineItem->getId()) {
$this->emit('lineItem:created', $this->lineItem);
}
$entityManager->persist($this->lineItem);
$entityManager->flush();
}
}
Finally, the parent InvoiceCreator
component listens to this
so that it can re-render the line items (which will now contain the
newly-saved item):
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// src/Twig/InvoiceCreator.php
// ...
#[AsLiveComponent]
final class InvoiceCreator
{
// ...
#[LiveListener('lineItem:created')]
public function addLineItem()
{
// no need to do anything here: the component will re-render
}
}
This will work beautifully: when a new line item is saved, the InvoiceCreator
component will re-render and the newly saved line item will be displayed along
with the extra new_line_item
component at the bottom.
But something surprising might happen: the new_line_item
component won't
update! It will keep the data and props that were there a moment ago (i.e. the
form fields will still have data in them) instead of rendering a fresh, empty component.
Why? When live components re-renders, it thinks the existing key: new_line_item
component on the page is the same new component that it's about to render. And
because the props passed into that component haven't changed, it doesn't see any
reason to re-render it.
To fix this, you have two options:
1) Make the key
dynamic so it will be different after adding a new item:
1 2 3
{{ component('InvoiceLineItemForm', {
key: 'new_line_item_'~lineItems|length,
}) }}
2) Reset the state of the InvoiceLineItemForm
component after it's saved:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
// src/Twig/InvoiceLineItemForm.php
// ...
#[AsLiveComponent]
class InvoiceLineItemForm
{
// ...
#[LiveAction]
public function save(EntityManagerInterface $entityManager)
{
$isNew = null === $this->lineItem->getId();
$entityManager->persist($this->lineItem);
$entityManager->flush();
if ($isNew) {
// reset the state of this component
$this->emit('lineItem:created', $this->lineItem);
$this->lineItem = new InvoiceLineItem();
// if you're using ValidatableComponentTrait
$this->clearValidation();
}
}
}
Passing Content (Blocks) to Components
Passing content via blocks to Live components works completely the same way you would pass content to Twig Components. Except with one important difference: when a component is re-rendered, any variables defined only in the "outside" template will not be available. For example, this won't work:
1 2 3 4 5 6
{# templates/some_page.html.twig #}
{% set message = 'Variables from the outer part of the template are only available during the initial render' %}
{% component Alert %}
{% block content %}{{ message }}{% endblock %}
{% endcomponent %}
Local variables do remain available:
1 2 3 4 5 6 7
{# templates/some_page.html.twig #}
{% component Alert %}
{% block content %}
{% set message = 'this works during re-rendering!' %}
{{ message }}
{% endblock %}
{% endcomponent %}
Advanced Functionality
The Smart Re-Render Algorithm
When a component re-renders, the new HTML is "morphed" onto the existing
elements on the page. For example, if the re-render includes a new class
on an existing element, that class will be added to that element.
2.8
The smart re-render algorithm was introduced in LiveComponent 2.8.
The rendering system is also smart enough to know when an element was changed by something outside of the LiveComponents system: e.g. some JavaScript that added a class to an element. In this case, the class will be preserved when the component re-renders.
The system doesn't handle every edge case, so here are some things to keep in mind:
- If JavaScript changes an attribute on an element, that change is preserved.
- If JavaScript adds a new element, that element is preserved.
- If JavaScript removes an element that was originally rendered by the component, that change will be lost: the element will be re-added during the next re-render.
- If JavaScript changes the text of an element, that change is lost: it will be restored to the text from the server during the next re-render.
- If an element is moved from one location in the component to another, that change is lost: the element will be re-added in its original location during the next re-render.
The Mystical id Attribute
The id
attribute is mentioned several times throughout the documentation
to solve various problems. It's usually not needed, but can be the key to solving
certain complex problems. But what is it?
Note
The key prop is used to create a id
attribute
on child components. So everything in this section applies equally to the
key
prop.
The id
attribute is a unique identifier for an element or a component.
It's used during the morphing process when a component re-renders: it helps the
morphing library "connect" elements or components in the existing HTML with the new
HTML.
Skipping Updating Certain Elements
If you have an element inside a component that you do not want to change
when your component re-renders, you can add a data-live-ignore
attribute:
1
<input name="favorite_color" data-live-ignore>
But you should need this rarely if ever. Even if you write JavaScript that modifies an element, that changes is preserved (see Live Components).
Note
To force an ignored element to re-render, give its parent element an
id
attribute. During a re-render, if this value changes, all
of the children of the element will be re-rendered, even those with data-live-ignore
.
Overwrite HTML Instead of Morphing
Normally, when a component re-renders, the new HTML is "morphed" onto the existing
elements on the page. In some rare cases, you may want to simply overwrite the existing
inner HTML of an element with the new HTML instead of morphing it. This can be done by adding a
data-skip-morph
attribute:
1 2 3
<select data-skip-morph>
<option>...</option>
</select>
In this case, any changes to the <select>
element attributes will still be
"morphed" onto the existing element, but the inner HTML will be overwritten.
Define another route for your Component
2.7
The route
option was added in LiveComponents 2.7.
The default route for live components is /components/{_live_component}/{_live_action}
.
Sometimes it may be useful to customize this URL - e.g. so that the component lives
under a specific firewall.
To use a different route, first declare it:
1 2 3 4 5
# config/routes.yaml
live_component_admin:
path: /admin/_components/{_live_component}/{_live_action}
defaults:
_live_action: 'get'
Then specify this new route on your component:
1 2 3 4 5 6 7 8 9 10
// src/Twig/Components/RandomNumber.php
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
use Symfony\UX\LiveComponent\DefaultActionTrait;
- #[AsLiveComponent]
+ #[AsLiveComponent(route: 'live_component_admin')]
class RandomNumber
{
use DefaultActionTrait;
}
2.14
The urlReferenceType
option was added in LiveComponents 2.14.
You can also control the type of the generated URL:
1 2 3 4 5 6 7 8 9 10 11
// src/Twig/Components/RandomNumber.php
+ use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
use Symfony\UX\LiveComponent\DefaultActionTrait;
- #[AsLiveComponent]
+ #[AsLiveComponent(urlReferenceType: UrlGeneratorInterface::ABSOLUTE_URL)]
class RandomNumber
{
use DefaultActionTrait;
}
Add a Hook on LiveProp Update
2.12
The onUpdated
option was added in LiveComponents 2.12.
If you want to run custom code after a specific LiveProp is updated,
you can do it by adding an onUpdated
option set to a public method name
on the component:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#[AsLiveComponent]
class ProductSearch
{
#[LiveProp(writable: true, onUpdated: 'onQueryUpdated')]
public string $query = '';
// ...
public function onQueryUpdated($previousValue): void
{
// $this->query already contains a new value
// and its previous value is passed as an argument
}
}
As soon as the query
LiveProp is updated, the onQueryUpdated()
method
will be called. The previous value is passed there as the first argument.
If you're allowing object properties to be writable, you can also listen to the change of one specific key:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use App\Entity\Post;
#[AsLiveComponent]
class EditPost
{
#[LiveProp(writable: ['title', 'content'], onUpdated: ['title' => 'onTitleUpdated'])]
public Post $post;
// ...
public function onTitleUpdated($previousValue): void
{
// ...
}
}
Set LiveProp Options Dynamically
2.17
The modifier
option was added in LiveComponents 2.17.
If you need to configure a LiveProp's options dynamically, you can use the modifier
option to use a custom
method in your component that returns a modified version of your LiveProp:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#[AsLiveComponent]
class ProductSearch
{
#[LiveProp(writable: true, modifier: 'modifyAddedDate')]
public ?\DateTimeImmutable $addedDate = null;
#[LiveProp]
public string $dateFormat = 'Y-m-d';
// ...
public function modifyAddedDate(LiveProp $prop): LiveProp
{
return $prop->withFormat($this->dateFormat);
}
}
Then, when using your component in a template, you can change the date format used for $addedDate
:
1 2 3
{{ component('ProductSearch', {
dateFormat: 'd/m/Y'
}) }}
All LiveProp::with*
methods are immutable, so you need to use their return value as your new LiveProp.
Caution
Avoid relying on props that also use a modifier in other modifiers methods. For example, if the $dateFormat
property above also had a modifier
option, then it wouldn't be safe to reference it from the modifyAddedDate
modifier method. This is because the $dateFormat
property may not have been hydrated by this point.
Debugging Components
Need to list or debug some component issues. The Twig Component debug command can help you.
Test Helper
2.11
The test helper was added in LiveComponents 2.11.
For testing, you can use the InteractsWithLiveComponents
trait which
uses Symfony's test client to render and make requests to your components:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
use Symfony\UX\LiveComponent\Test\InteractsWithLiveComponents;
class MyComponentTest extends KernelTestCase
{
use InteractsWithLiveComponents;
public function testCanRenderAndInteract(): void
{
$testComponent = $this->createLiveComponent(
name: 'MyComponent', // can also use FQCN (MyComponent::class)
data: ['foo' => 'bar'],
);
// render the component html
$this->assertStringContainsString('Count: 0', $testComponent->render());
// call live actions
$testComponent
->call('increase')
->call('increase', ['amount' => 2]) // call a live action with arguments
;
$this->assertStringContainsString('Count: 3', $testComponent->render());
// call live action with file uploads
$testComponent
->call('processUpload', files: ['file' => new UploadedFile(...)]);
// emit live events
$testComponent
->emit('increaseEvent')
->emit('increaseEvent', ['amount' => 2]) // emit a live event with arguments
;
// set live props
$testComponent
->set('count', 99)
;
// Submit form data
$testComponent
->submitForm(['form' => ['input' => 'value']], 'save');
$this->assertStringContainsString('Count: 99', $testComponent->render());
// refresh the component
$testComponent->refresh();
// access the component object (in its current state)
$component = $testComponent->component(); // MyComponent
$this->assertSame(99, $component->count);
// test a live action that redirects
$response = $testComponent->call('redirect')->response(); // Symfony\Component\HttpFoundation\Response
$this->assertSame(302, $response->getStatusCode());
// authenticate a user ($user is instance of UserInterface)
$testComponent->actingAs($user);
// set the '_locale' route parameter (if the component route is localized)
$testComponent->setRouteLocale('fr');
// customize the test client
$client = self::getContainer()->get('test.client');
// do some stuff with the client (ie login user via form)
$testComponent = $this->createLiveComponent(
name: 'MyComponent',
data: ['foo' => 'bar'],
client: $client,
);
}
}
Note
The InteractsWithLiveComponents
trait can only be used in tests that extend
Symfony
.
Backward Compatibility promise
This bundle aims at following the same Backward Compatibility promise as the Symfony framework: https://symfony.com/doc/current/contributing/code/bc.html
For JavaScript files, the public API (i.e. documented features and exports from the main JavaScript file) is protected by the backward compatibility promise. However, any internal implementation in the JavaScript files (i.e. exports from internal files) is not protected.