88 lines
3.2 KiB
PHP
88 lines
3.2 KiB
PHP
<?php
|
|
|
|
use App\Models\AdminPreset;
|
|
use Illuminate\Validation\Rule;
|
|
use Livewire\Attributes\Layout;
|
|
use Livewire\Attributes\Title;
|
|
use Livewire\Volt\Component;
|
|
|
|
new #[Layout('components.layouts.app'), Title('Neue Voreinstellung')] class extends Component
|
|
{
|
|
public string $key = '';
|
|
|
|
public string $area = 'press_releases';
|
|
|
|
public string $type = 'text';
|
|
|
|
public string $label = '';
|
|
|
|
public string $value = '';
|
|
|
|
public string $payload = '';
|
|
|
|
public bool $isActive = true;
|
|
|
|
public function save(): void
|
|
{
|
|
$validated = $this->validate([
|
|
'key' => ['required', 'string', 'max:255', 'regex:/^[a-z0-9_.-]+$/', Rule::unique('admin_presets', 'key')],
|
|
'area' => ['required', 'string', 'max:100'],
|
|
'type' => ['required', Rule::in(['text', 'number', 'boolean', 'json'])],
|
|
'label' => ['required', 'string', 'max:255'],
|
|
'value' => ['nullable', 'string'],
|
|
'payload' => ['nullable', 'json'],
|
|
'isActive' => ['boolean'],
|
|
]);
|
|
|
|
AdminPreset::query()->create([
|
|
'key' => $validated['key'],
|
|
'area' => $validated['area'],
|
|
'type' => $validated['type'],
|
|
'label' => $validated['label'],
|
|
'value' => $validated['value'] ?: null,
|
|
'payload' => filled($validated['payload']) ? json_decode($validated['payload'], true) : null,
|
|
'is_active' => $validated['isActive'],
|
|
]);
|
|
|
|
session()->flash('success', __('Voreinstellung wurde angelegt.'));
|
|
|
|
$this->redirect(route('admin.presets.index'), navigate: true);
|
|
}
|
|
}; ?>
|
|
|
|
<form wire:submit="save" class="space-y-8">
|
|
{{-- ============== PAGE HEADER ============== --}}
|
|
<header class="grid items-end gap-8" style="grid-template-columns:1fr auto;">
|
|
<div class="min-w-0">
|
|
<div class="flex items-center gap-3 mb-3 flex-nowrap whitespace-nowrap">
|
|
<span class="badge hub dot">{{ __('Admin Backend') }}</span>
|
|
<span class="eyebrow muted">{{ __('Administration · Voreinstellungen') }}</span>
|
|
</div>
|
|
<h1 class="text-[30px] font-bold tracking-[-0.6px] leading-[1.15] m-0 text-[color:var(--color-ink)]">
|
|
{{ __('Neue Voreinstellung') }}
|
|
</h1>
|
|
<p class="text-[13px] leading-[1.55] mt-2 m-0 max-w-[640px] text-[color:var(--color-ink-2)]">
|
|
{{ __('Texte, Zahlen oder JSON-Werte zentral fuer Admin-Funktionen pflegen.') }}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="flex items-center gap-2 flex-shrink-0">
|
|
<flux:button variant="ghost" icon="arrow-left" href="{{ route('admin.presets.index') }}" wire:navigate>
|
|
{{ __('Zurück') }}
|
|
</flux:button>
|
|
</div>
|
|
</header>
|
|
|
|
@include('livewire.admin.presets.partials.form-fields')
|
|
|
|
<article class="panel">
|
|
<div class="p-5 flex justify-end gap-3">
|
|
<flux:button variant="ghost" href="{{ route('admin.presets.index') }}" wire:navigate>
|
|
{{ __('Abbrechen') }}
|
|
</flux:button>
|
|
<flux:button type="submit" variant="primary">
|
|
{{ __('Voreinstellung erstellen') }}
|
|
</flux:button>
|
|
</div>
|
|
</article>
|
|
</form>
|