-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathLivewireManager.php
470 lines (363 loc) · 13.4 KB
/
LivewireManager.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
<?php
namespace Livewire;
use Exception;
use Livewire\Testing\TestableLivewire;
use Illuminate\Contracts\Auth\Authenticatable;
use Livewire\Exceptions\ComponentNotFoundException;
class LivewireManager
{
protected $listeners = [];
protected $componentAliases = [];
protected $queryParamsForTesting = [];
protected $shouldDisableBackButtonCache = false;
protected $persistentMiddleware = [
\Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class,
\Laravel\Jetstream\Http\Middleware\AuthenticateSession::class,
\Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
\Illuminate\Routing\Middleware\SubstituteBindings::class,
\App\Http\Middleware\RedirectIfAuthenticated::class,
\Illuminate\Auth\Middleware\Authenticate::class,
\Illuminate\Auth\Middleware\Authorize::class,
\App\Http\Middleware\Authenticate::class,
];
public static $isLivewireRequestTestingOverride = false;
public static $currentCompilingViewPath;
public static $currentCompilingChildCounter;
public function component($alias, $viewClass = null)
{
if (is_null($viewClass)) {
$viewClass = $alias;
$alias = $viewClass::getName();
}
$this->componentAliases[$alias] = $viewClass;
}
public function getAlias($class, $default = null)
{
$alias = array_search($class, $this->componentAliases);
return $alias === false ? $default : $alias;
}
public function getComponentAliases()
{
return $this->componentAliases;
}
public function getClass($alias)
{
$finder = app(LivewireComponentsFinder::class);
$class = false;
$class = $class ?: (
// Let's first check if the user registered the component using:
// Livewire::component('name', [Livewire component class]);
// If not, we'll look in the auto-discovery manifest.
$this->componentAliases[$alias] ?? $finder->find($alias)
);
$class = $class ?: (
// If none of the above worked, our last-ditch effort will be
// to re-generate the auto-discovery manifest and look again.
$finder->build()->find($alias)
);
throw_unless($class, new ComponentNotFoundException(
"Unable to find component: [{$alias}]"
));
return $class;
}
public function getInstance($component, $id)
{
$componentClass = $this->getClass($component);
throw_unless(class_exists($componentClass), new ComponentNotFoundException(
"Component [{$component}] class not found: [{$componentClass}]"
));
return new $componentClass($id);
}
public function mount($name, $params = [])
{
// This is if a user doesn't pass params, BUT passes key() as the second argument.
if (is_string($params)) $params = [];
$id = str()->random(20);
if (class_exists($name)) {
$name = $name::getName();
}
return LifecycleManager::fromInitialRequest($name, $id)
->boot()
->initialHydrate()
->mount($params)
->renderToView()
->initialDehydrate()
->toInitialResponse();
}
public function dummyMount($id, $tagName)
{
return "<{$tagName} wire:id=\"{$id}\"></{$tagName}>";
}
public function test($name, $params = [])
{
return new TestableLivewire($name, $params, $this->queryParamsForTesting);
}
public function visit($browser, $class, $queryString = '')
{
$url = '/livewire-dusk/'.urlencode($class).$queryString;
return $browser->visit($url)->waitForLivewireToLoad();
}
public function actingAs(Authenticatable $user, $driver = null)
{
// This is a helper to be used during testing.
if (isset($user->wasRecentlyCreated) && $user->wasRecentlyCreated) {
$user->wasRecentlyCreated = false;
}
auth()->guard($driver)->setUser($user);
auth()->shouldUse($driver);
return $this;
}
public function addPersistentMiddleware($middleware)
{
$this->persistentMiddleware = array_merge($this->persistentMiddleware, (array) $middleware);
}
public function setPersistentMiddleware($middleware)
{
$this->persistentMiddleware = (array) $middleware;
}
public function getPersistentMiddleware()
{
return $this->persistentMiddleware;
}
public function styles($options = [])
{
$debug = config('app.debug');
$styles = $this->cssAssets($options);
// HTML Label.
$html = $debug ? ['<!-- Livewire Styles -->'] : [];
// CSS assets.
$html[] = $debug ? $styles : $this->minify($styles);
return implode("\n", $html);
}
public function scripts($options = [])
{
$debug = config('app.debug');
$scripts = $this->javaScriptAssets($options);
// HTML Label.
$html = $debug ? ['<!-- Livewire Scripts -->'] : [];
// JavaScript assets.
$html[] = $debug ? $scripts : $this->minify($scripts);
return implode("\n", $html);
}
protected function cssAssets($options = [])
{
$nonce = isset($options['nonce']) ? "nonce=\"{$options['nonce']}\"" : '';
return <<<HTML
<style {$nonce}>
[wire\:loading], [wire\:loading\.delay], [wire\:loading\.inline-block], [wire\:loading\.inline], [wire\:loading\.block], [wire\:loading\.flex], [wire\:loading\.table], [wire\:loading\.grid], [wire\:loading\.inline-flex] {
display: none;
}
[wire\:loading\.delay\.shortest], [wire\:loading\.delay\.shorter], [wire\:loading\.delay\.short], [wire\:loading\.delay\.long], [wire\:loading\.delay\.longer], [wire\:loading\.delay\.longest] {
display:none;
}
[wire\:offline] {
display: none;
}
[wire\:dirty]:not(textarea):not(input):not(select) {
display: none;
}
input:-webkit-autofill, select:-webkit-autofill, textarea:-webkit-autofill {
animation-duration: 50000s;
animation-name: livewireautofill;
}
@keyframes livewireautofill { from {} }
</style>
HTML;
}
protected function javaScriptAssets($options)
{
$jsonEncodedOptions = $options ? json_encode($options) : '';
$assetsUrl = config('livewire.asset_url') ?: rtrim($options['asset_url'] ?? '', '/');
$appUrl = config('livewire.app_url')
?: rtrim($options['app_url'] ?? '', '/')
?: $assetsUrl;
$jsLivewireToken = app()->has('session.store') ? "'" . csrf_token() . "'" : 'null';
$manifest = json_decode(file_get_contents(__DIR__.'/../dist/manifest.json'), true);
$versionedFileName = $manifest['/livewire.js'];
// Default to dynamic `livewire.js` (served by a Laravel route).
$fullAssetPath = "{$assetsUrl}/livewire{$versionedFileName}";
$assetWarning = null;
$nonce = isset($options['nonce']) ? "nonce=\"{$options['nonce']}\"" : '';
// Use static assets if they have been published
if (file_exists(public_path('vendor/livewire/manifest.json'))) {
$publishedManifest = json_decode(file_get_contents(public_path('vendor/livewire/manifest.json')), true);
$versionedFileName = $publishedManifest['/livewire.js'];
$fullAssetPath = ($this->isRunningServerless() ? config('app.asset_url') : $assetsUrl).'/vendor/livewire'.$versionedFileName;
if ($manifest !== $publishedManifest) {
$assetWarning = <<<HTML
<script {$nonce}>
console.warn("Livewire: The published Livewire assets are out of date\n See: https://laravel-livewire.com/docs/installation/")
</script>
HTML;
}
}
$devTools = null;
$windowLivewireCheck = null;
$windowAlpineCheck = null;
if (config('app.debug')) {
$devTools = 'window.livewire.devTools(true);';
$windowLivewireCheck = <<<'HTML'
if (window.livewire) {
console.warn('Livewire: It looks like Livewire\'s @livewireScripts JavaScript assets have already been loaded. Make sure you aren\'t loading them twice.')
}
HTML;
$windowAlpineCheck = <<<'HTML'
/* Make sure Livewire loads first. */
if (window.Alpine) {
/* Defer showing the warning so it doesn't get buried under downstream errors. */
document.addEventListener("DOMContentLoaded", function () {
setTimeout(function() {
console.warn("Livewire: It looks like AlpineJS has already been loaded. Make sure Livewire\'s scripts are loaded before Alpine.\\n\\n Reference docs for more info: http://laravel-livewire.com/docs/alpine-js")
})
});
}
/* Make Alpine wait until Livewire is finished rendering to do its thing. */
HTML;
}
// Adding semicolons for this JavaScript is important,
// because it will be minified in production.
return <<<HTML
{$assetWarning}
<script src="{$fullAssetPath}" data-turbo-eval="false" data-turbolinks-eval="false" {$nonce}></script>
<script data-turbo-eval="false" data-turbolinks-eval="false" {$nonce}>
{$windowLivewireCheck}
window.livewire = new Livewire({$jsonEncodedOptions});
{$devTools}
window.Livewire = window.livewire;
window.livewire_app_url = '{$appUrl}';
window.livewire_token = {$jsLivewireToken};
{$windowAlpineCheck}
window.deferLoadingAlpine = function (callback) {
window.addEventListener('livewire:load', function () {
callback();
});
};
let started = false;
window.addEventListener('alpine:initializing', function () {
if (! started) {
window.livewire.start();
started = true;
}
});
document.addEventListener("DOMContentLoaded", function () {
if (! started) {
window.livewire.start();
started = true;
}
});
</script>
HTML;
}
protected function minify($subject)
{
return preg_replace('~(\v|\t|\s{2,})~m', '', $subject);
}
public function isLivewireRequest()
{
return $this->isProbablyLivewireRequest();
}
public function isDefinitelyLivewireRequest()
{
$route = request()->route();
if (! $route) return false;
return $route->named('livewire.message');
}
public function isProbablyLivewireRequest()
{
if (static::$isLivewireRequestTestingOverride) return true;
return request()->hasHeader('X-Livewire');
}
public function originalUrl()
{
if ($this->isDefinitelyLivewireRequest()) {
return url()->to($this->originalPath());
}
return url()->current();
}
public function originalPath()
{
if ($this->isDefinitelyLivewireRequest()) {
// @depricted: "url" usage was removed in v2.3.17
// This can be removed after a period of time
// as users will have refreshed all pages
// that still used "url".
if (isset(request('fingerprint')['url'])) {
return str(request('fingerprint')['url'])->after(request()->root());
}
return request('fingerprint.path');
}
return request()->path();
}
public function originalMethod()
{
if ($this->isDefinitelyLivewireRequest()) {
// @depricted: "url" usage was removed in v2.3.17
// This can be removed after a period of time
// as users will have refreshed all pages
// that still used "url".
if (isset(request('fingerprint')['url'])) {
return 'GET';
}
return request('fingerprint.method', 'POST');
}
return request()->method();
}
public function getRootElementTagName($dom)
{
preg_match('/<([a-zA-Z0-9\-]*)/', $dom, $matches, PREG_OFFSET_CAPTURE);
return $matches[1][0];
}
public function dispatch($event, ...$params)
{
foreach ($this->listeners[$event] ?? [] as $listener) {
$listener(...$params);
}
}
public function listen($event, $callback)
{
$this->listeners[$event][] = $callback;
}
public function isOnVapor()
{
return $this->isRunningServerless();
}
public function isRunningServerless()
{
return in_array($_ENV['SERVER_SOFTWARE'] ?? null, [
'vapor',
'bref',
]);
}
public function withQueryParams($queryParams)
{
$this->queryParamsForTesting = $queryParams;
return $this;
}
public function setBackButtonCache()
{
/**
* Reverse this boolean so that the middleware is only applied when it is disabled.
*/
$this->shouldDisableBackButtonCache = ! config('livewire.back_button_cache', false);
}
public function disableBackButtonCache()
{
$this->shouldDisableBackButtonCache = true;
}
public function enableBackButtonCache()
{
$this->shouldDisableBackButtonCache = false;
}
public function shouldDisableBackButtonCache()
{
return $this->shouldDisableBackButtonCache;
}
public function flushState()
{
static::$isLivewireRequestTestingOverride = false;
static::$currentCompilingChildCounter = null;
static::$currentCompilingViewPath = null;
$this->shouldDisableBackButtonCache = false;
$this->dispatch('flush-state');
}
}