mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 13:24:46 +02:00

* Not found property rule * Make these “better” * Day 1 * Day 2 * Day 3 * Dat 4 * Remove disabled check * Day 4 continued * Run pint * Final changes hopefully * Pint fixes * Fix again * Reset these * Update app/Filament/Admin/Pages/Health.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> * Update app/Traits/CheckMigrationsTrait.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> --------- Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com>
71 lines
1.7 KiB
PHP
71 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Extensions\League\Fractal\Serializers;
|
|
|
|
use League\Fractal\Serializer\ArraySerializer;
|
|
|
|
class PanelSerializer extends ArraySerializer
|
|
{
|
|
/**
|
|
* Serialize an item.
|
|
*
|
|
* @param array<mixed> $data
|
|
* @return array{object: ?string, attributes: array<mixed>}
|
|
*/
|
|
public function item(?string $resourceKey, array $data): array
|
|
{
|
|
return [
|
|
'object' => $resourceKey,
|
|
'attributes' => $data,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Serialize a collection.
|
|
*
|
|
* @param array<mixed> $data
|
|
* @return array{object: 'list', data: array<mixed>}
|
|
*/
|
|
public function collection(?string $resourceKey, array $data): array
|
|
{
|
|
$response = [];
|
|
foreach ($data as $datum) {
|
|
$response[] = $this->item($resourceKey, $datum);
|
|
}
|
|
|
|
return [
|
|
'object' => 'list',
|
|
'data' => $response,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Serialize a null resource.
|
|
*
|
|
* @return ?array{object: ?string, attributes: null}
|
|
*/
|
|
public function null(): ?array
|
|
{
|
|
return [
|
|
'object' => 'null_resource',
|
|
'attributes' => null,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Merge the included resources with the parent resource being serialized.
|
|
*
|
|
* @param array{relationships: array{string, mixed}} $transformedData
|
|
* @param array{string, mixed} $includedData
|
|
* @return array{relationships: array{string, mixed}}
|
|
*/
|
|
public function mergeIncludes(array $transformedData, array $includedData): array
|
|
{
|
|
foreach ($includedData as $key => $datum) {
|
|
$transformedData['relationships'][$key] = $datum;
|
|
}
|
|
|
|
return $transformedData;
|
|
}
|
|
}
|