-
Notifications
You must be signed in to change notification settings - Fork 224
/
troubleshooting.blade.php
executable file
·149 lines (112 loc) · 5.91 KB
/
troubleshooting.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
* [Dom Diffing Issues](#dom-diffing-issues)
* [Symptoms](#dom-diffing-symptoms)
* [Cures](#dom-diffing-cures)
* [Checksum Issues](#checksum-issues)
* [Query String Issues](#query-string-issues)
* [Symptoms](#query-string-symptoms)
* [Cures](#query-string-cures)
* [Root Element Issues](#root-element-issues)
* [Symptoms](#root-element-symptoms)
* [Cures](#root-element-cures)
## Dom Diffing Issues {#dom-diffing-issues}
The most common issues encountered by Livewire users has to do with Livewire's DOM diffing/patching system. This is the system that selectively updates elements that have been changed, added, or removed after every component update.
For the most part, this system is reliable, but there are certain cases where Livewire is unable to properly track changes. When this happens, hopefully, a helpful error will be thrown and you can debug with the following guide.
### Symptoms {#dom-diffing-symptoms}
* An input element loses focus
* An element or group of elements dissapears suddenly
* A previously interactive element stops responding to user input
* A loading indicator mis-fires
* A user action no longer functions
### Cures {#dom-diffing-cures}
* Ensure your component has a single-level root element
* Add `wire:key` to elements inside loops (the value to `wire:key` must be unique across the page):
@component('components.code')
@verbatim
<ul>
@foreach ($items as $item)
<li wire:key="item-{{ $item->id }}">{{ $item }}</li>
@endforeach
</ul>
@endverbatim
@endcomponent
* Add `key()`/`wire:key` to nested components in a loop
@component('components.code')
@verbatim
<ul>
@foreach ($items as $item)
@livewire('view-item', ['item' => $item], key('item-'.$item->id))
<!-- key() using Laravel 7's tag syntax -->
<livewire:view-item :item="$item" :wire:key="'item-'.$item->id">
@endforeach
</ul>
@endverbatim
@endcomponent
* Wrap Blade conditionals (`@@if`, `@@error`, `@@auth`) in an element
@component('components.code')
@verbatim
<input type="text" wire:model="name">
<div> @error('name'){{ $message }}@enderror </div>
@endverbatim
@endcomponent
* Add `wire:key`. As a final measure, adding `wire:key` will directly tell Livewire how to keep track of a DOM element. Over-using this attribute is a smell, but it is very useful and powerful for problems of this nature.
@component('components.warning')
@verbatim
The value you pass to <code>wire:key</code> must be entirely unique to that page. Meaning that you should prefix it, like <code>wire:key="item-{{ $item->id }}"</code>, and avoid using <code>$loop->index</code> to track the individual elements where you can.
@endverbatim
@endcomponent
@component('components.code')
<div wire:key="foo">...</div>
<div wire:key="bar">...</div>
@endcomponent
## Checksum Issues {#checksum-issues}
On every request, Livewire does a "[checksum](https://laravel-livewire.com/docs/security)" but in some cases with arrays, it can throw an exception even when the data inside the array is the same.
Because in PHP an array can have keys that are alpha-numeric and numeric keys in the same array and in any order, but Javascript will make an object of it because it doesn't support arrays with keys that are alpha-numeric. When Javascript is creating an object it will also reorder the keys, it will place numeric keys before alpha-numeric keys.
This causes a problem when the JSON is sent back because the "[checksum](https://laravel-livewire.com/docs/security)" will look different.
Some types (Point, LineString, Polygon, and the Multi- variations) will also fail this checksum.
So make sure when you have a public property that is an array numeric keys are before alpha-numeric character keys.
@component('components.code', ['lang' => 'php'])
@verbatim
class HelloWorld extends Component
{
public $list = [
'123' => 456,
'foo' => 'bar'
];
...
@endverbatim
@endcomponent
## Query String Issues {#query-string-issues}
Livewire is using the site's `referrer` information when setting the query string. This can lead to conflicts when you are adding security headers to your application through the `referrer-policy`.
### Symptoms {#query-string-symptoms}
* The query string does not get updated at all.
* The query string does not get updated when the value is empty.
### Cures {#query-string-cures}
If you do set security headers, make sure the `referrer-policy` value is set to `same-origin`.
## Root Element Issues {#root-element-issues}
Livewire requires that there be only one HTML element at the root of a components blade view.
Having multiple root elements can mean that parts of your view won't work with Livewire correctly, if at all.
### Symptoms {#root-element-symptoms}
* A button isn't triggering a `wire:click`
* Entering data into an input doesn't trigger a network request
* Parts of your view aren't updating properly (could also be a [Dom Diffing issue](#dom-diffing-issues), see above)
* You get an error in your browser console that says `Livewire: Multiple root elements detected. This is not supported.`
* See below for an example of a component with a button that doesn't work:
@component('components.code', ['lang' => 'blade'])
<div>
Some content
</div>
<!-- This button isn't working -->
<button wire:click="doSomething">Do Something</button>
@endcomponent
### Cures {#root-element-cures}
The solution is to ensure that you only have one root HTML element, such as a `<div>`. If you have multiple elements, then wrap everything in a `<div>` or another element that suits your layout.
So in our example from above, we have wrapped everything in a `<div>` which gets the button running:
@component('components.code', ['lang' => 'blade'])
<div> <!-- Added this wrapping div -->
<div>
Some content
</div>
<button wire:click="doSomething">Do Something</button>
</div> <!-- Added this closing tag for the wrapping div -->
@endcomponent
Another cause can be using __construct() inside the Livewire class or a Trait.