-
Notifications
You must be signed in to change notification settings - Fork 224
/
dirty-states.blade.php
executable file
·57 lines (39 loc) · 2.44 KB
/
dirty-states.blade.php
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
* [Toggling classes on "dirty" elements](#toggling-classes)
* [Toggling elements](#toggling-elements)
* [Toggling classes on other elements](#toggling-classes)
There are cases where it may be useful to provide feedback that content has changed and is not yet in-sync with the back-end Livewire component.
For input that uses `wire:model`, or `wire:model.lazy`, you may want to display that a field is 'dirty' until Livewire has fully updated.
## Toggling classes on "dirty" elements {#toggling-classes}
Elements with the `wire:dirty` directive will watch for differences between the front-end value, and the last returned Livewire data value.
Adding the `class` modifier allows you to add a class to the element when dirty.
@component('components.code', ['lang' => 'blade'])
<div>
<input wire:dirty.class="border-red-500" wire:model.lazy="foo">
</div>
@endcomponent
Now, when a user modifies the input value, the element will receive the `border-red-500` class. The class will be removed again if the input value returns to its original state, or if the Livewire component updates.
You can also perform the inverse, and remove classes by adding the `.remove` modifier, similar to how `wire:loading` works.
@component('components.code', ['lang' => 'blade'])
<div>
<input wire:dirty.class.remove="bg-green-200" class="bg-green-200" wire:model.lazy="foo">
</div>
@endcomponent
The `bg-green-200` class will be removed from the input while dirty.
## Toggling elements {#toggling-elements}
The default behaviour of the `wire:dirty` directive without modifiers is that the element will be hidden until dirty. This can create a paradox if used on the input itself, but like loading states, the `dirty` directive can be used to toggle the appearance of other elements using `wire:target`
@component('components.code', ['lang' => 'blade'])
<div>
<span wire:dirty wire:target="foo">Updating...</span>
<input wire:model.lazy="foo">
</div>
@endcomponent
In this example, the `span` will be hidden by default, and only visible when the input element is dirty.
## Toggling classes on other elements {#toggling-classes}
The class and attribute modifiers can be used in the same way for referenced elements
@component('components.code', ['lang' => 'blade'])
<div>
<label wire:dirty.class="text-red-500" wire:target="foo">Full Name</label>
<input wire:model.lazy="foo">
</div>
@endcomponent
Now, when the `input` is dirty, the label text will receive the `text-red-500` class.