File "LaravelLivewireRequestContextProvider.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/laravel-ignition/src/ContextProviders/LaravelLivewireRequestContextProvider.php
File size: 2.74 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\LaravelIgnition\ContextProviders;
use Exception;
use Illuminate\Http\Request;
use Illuminate\Support\Arr;
use Livewire\LivewireManager;
class LaravelLivewireRequestContextProvider extends LaravelRequestContextProvider
{
public function __construct(
Request $request,
protected LivewireManager $livewireManager
) {
parent::__construct($request);
}
/** @return array<string, string> */
public function getRequest(): array
{
$properties = parent::getRequest();
$properties['method'] = $this->livewireManager->originalMethod();
$properties['url'] = $this->livewireManager->originalUrl();
return $properties;
}
/** @return array<int|string, mixed> */
public function toArray(): array
{
$properties = parent::toArray();
$properties['livewire'] = $this->getLivewireInformation();
return $properties;
}
/** @return array<string, mixed> */
protected function getLivewireInformation(): array
{
/** @phpstan-ignore-next-line */
$componentId = $this->request->input('fingerprint.id');
/** @phpstan-ignore-next-line */
$componentAlias = $this->request->input('fingerprint.name');
if ($componentAlias === null) {
return [];
}
try {
$componentClass = $this->livewireManager->getClass($componentAlias);
} catch (Exception $e) {
$componentClass = null;
}
return [
'component_class' => $componentClass,
'component_alias' => $componentAlias,
'component_id' => $componentId,
'data' => $this->resolveData(),
'updates' => $this->resolveUpdates(),
];
}
/** @return array<string, mixed> */
protected function resolveData(): array
{
/** @phpstan-ignore-next-line */
$data = $this->request->input('serverMemo.data') ?? [];
/** @phpstan-ignore-next-line */
$dataMeta = $this->request->input('serverMemo.dataMeta') ?? [];
foreach ($dataMeta['modelCollections'] ?? [] as $key => $value) {
$data[$key] = array_merge($data[$key] ?? [], $value);
}
foreach ($dataMeta['models'] ?? [] as $key => $value) {
$data[$key] = array_merge($data[$key] ?? [], $value);
}
return $data;
}
/** @return array<string, mixed> */
protected function resolveUpdates(): array
{
/** @phpstan-ignore-next-line */
$updates = $this->request->input('updates') ?? [];
return array_map(function (array $update) {
$update['payload'] = Arr::except($update['payload'] ?? [], ['id']);
return $update;
}, $updates);
}
}