adrema/app/Form/Resources/FormResource.php

91 lines
2.8 KiB
PHP
Raw Normal View History

2023-12-31 22:35:13 +01:00
<?php
namespace App\Form\Resources;
2024-02-16 14:18:16 +01:00
use App\Form\Enums\NamiType;
2024-01-01 18:29:33 +01:00
use App\Form\Fields\Field;
use App\Form\Scopes\FormFilterScope;
2023-12-31 22:35:13 +01:00
use App\Form\Models\Form;
2024-01-01 16:53:32 +01:00
use App\Form\Models\Formtemplate;
2024-01-01 18:29:33 +01:00
use App\Group;
2024-01-01 16:53:32 +01:00
use App\Lib\HasMeta;
2023-12-31 22:35:13 +01:00
use Illuminate\Http\Resources\Json\JsonResource;
/**
* @mixin Form
*/
class FormResource extends JsonResource
{
2024-01-01 16:53:32 +01:00
use HasMeta;
2023-12-31 22:35:13 +01:00
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
* @return array<string, mixed>
*/
public function toArray($request)
{
return [
2024-01-01 18:29:33 +01:00
'id' => $this->id,
2023-12-31 22:35:13 +01:00
'name' => $this->name,
2024-01-10 21:31:34 +01:00
'from_human' => $this->from->format('d.m.Y'),
'to_human' => $this->to->format('d.m.Y'),
'from' => $this->from->format('Y-m-d'),
'to' => $this->to->format('Y-m-d'),
2023-12-31 22:35:13 +01:00
'excerpt' => $this->excerpt,
'description' => $this->description,
'mail_top' => $this->mail_top,
'mail_bottom' => $this->mail_bottom,
'registration_from' => $this->registration_from?->format('Y-m-d H:i:s'),
'registration_until' => $this->registration_until?->format('Y-m-d H:i:s'),
2024-01-01 16:43:40 +01:00
'config' => $this->config,
2024-02-08 20:29:46 +01:00
'participants_count' => $this->participants_count,
2024-01-01 18:29:33 +01:00
'links' => [
2024-02-08 21:04:00 +01:00
'participant_index' => route('form.participant.index', ['form' => $this->getModel()]),
2024-01-01 18:29:33 +01:00
'update' => route('form.update', ['form' => $this->getModel()]),
'destroy' => route('form.destroy', ['form' => $this->getModel()]),
]
2023-12-31 22:35:13 +01:00
];
}
2024-01-01 16:53:32 +01:00
2024-01-10 21:31:34 +01:00
/**
* @return array<string, mixed>
*/
2024-01-01 16:53:32 +01:00
public static function meta(): array
{
return [
2024-01-01 18:29:33 +01:00
'base_url' => url(''),
'groups' => Group::forSelect(),
'fields' => Field::asMeta(),
'filter' => FormFilterScope::fromRequest(request()->input('filter', '')),
2024-01-01 16:53:32 +01:00
'links' => [
'store' => route('form.store'),
2024-01-01 18:29:33 +01:00
'formtemplate_index' => route('formtemplate.index'),
2024-01-01 16:53:32 +01:00
],
'templates' => FormtemplateResource::collection(Formtemplate::get()),
2024-02-21 22:10:26 +01:00
'namiTypes' => NamiType::forSelect(),
2024-01-01 18:29:33 +01:00
'default' => [
2024-02-02 01:05:45 +01:00
'description' => [],
2024-01-01 18:29:33 +01:00
'name' => '',
'excerpt' => '',
'from' => null,
'to' => null,
'registration_from' => null,
'registration_until' => null,
'mail_top' => null,
'mail_bottom' => null,
'config' => null,
2024-01-13 21:53:39 +01:00
'header_image' => null,
'id' => null,
2024-01-01 18:29:33 +01:00
],
'section_default' => [
'name' => '',
'intro' => '',
'fields' => [],
]
2024-01-01 16:53:32 +01:00
];
}
2023-12-31 22:35:13 +01:00
}