Files
animethemes-server/app/Filament/Resources/Wiki/Anime/Theme/Entry.php
T

432 lines
15 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Filament\Resources\Wiki\Anime\Theme;
use App\Filament\Components\Columns\TextColumn;
use App\Filament\Components\Fields\Select;
use App\Filament\Components\Filters\NumberFilter;
use App\Filament\Components\Filters\TextFilter;
use App\Filament\Components\Infolist\TextEntry;
use App\Filament\Resources\BaseRelationManager;
use App\Filament\Resources\BaseResource;
use App\Filament\Resources\Wiki\Anime as AnimeResource;
use App\Filament\Resources\Wiki\Anime\Theme as ThemeResource;
use App\Filament\Resources\Wiki\Anime\Theme\Entry\Pages\CreateEntry;
use App\Filament\Resources\Wiki\Anime\Theme\Entry\Pages\EditEntry;
use App\Filament\Resources\Wiki\Anime\Theme\Entry\Pages\ListEntries;
use App\Filament\Resources\Wiki\Anime\Theme\Entry\Pages\ViewEntry;
use App\Filament\Resources\Wiki\Anime\Theme\Entry\RelationManagers\VideoEntryRelationManager;
use App\Models\Wiki\Anime as AnimeModel;
use App\Models\Wiki\Anime\AnimeTheme as ThemeModel;
use App\Models\Wiki\Anime\Theme\AnimeThemeEntry as EntryModel;
use Filament\Forms\Components\Checkbox;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Form;
use Filament\Infolists\Components\IconEntry;
use Filament\Infolists\Components\Section;
use Filament\Infolists\Infolist;
use Filament\Resources\RelationManagers\RelationGroup;
use Filament\Tables\Columns\IconColumn;
use Filament\Tables\Filters\Filter;
use Filament\Tables\Table;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Log;
/**
* Class Entry.
*/
class Entry extends BaseResource
{
/**
* The model the resource corresponds to.
*
* @var string|null
*/
protected static ?string $model = EntryModel::class;
/**
* Get the displayable singular label of the resource.
*
* @return string
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function getLabel(): string
{
return __('filament.resources.singularLabel.anime_theme_entry');
}
/**
* Get the displayable label of the resource.
*
* @return string
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function getPluralLabel(): string
{
return __('filament.resources.label.anime_theme_entries');
}
/**
* The logical group associated with the resource.
*
* @return string
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function getNavigationGroup(): string
{
return __('filament.resources.group.wiki');
}
/**
* The icon displayed to the resource.
*
* @return string
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function getNavigationIcon(): string
{
return __('filament.resources.icon.anime_theme_entries');
}
/**
* Get the title for the resource.
*
* @return string|null
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function getRecordTitle(?Model $record): ?string
{
return $record instanceof EntryModel
&& $record->anime !== null
&& $record->animetheme !== null
? $record->getName()
: null;
}
/**
* Determine if the resource can globally search.
*
* @return bool
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function canGloballySearch(): bool
{
return true;
}
/**
* Get the URI key for the resource.
*
* @return string
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function getSlug(): string
{
return static::getDefaultSlug().'anime-theme-entries';
}
/**
* Get the route key for the resource.
*
* @return string
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function getRecordRouteKeyName(): string
{
return EntryModel::ATTRIBUTE_ID;
}
/**
* The form to the actions.
*
* @param Form $form
* @return Form
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function form(Form $form): Form
{
return $form
->schema([
Select::make(EntryModel::RELATION_ANIME.'.'.AnimeModel::ATTRIBUTE_ID)
->label(__('filament.resources.singularLabel.anime'))
->relationship(EntryModel::RELATION_ANIME_SHALLOW, AnimeModel::ATTRIBUTE_NAME)
->searchable()
->hiddenOn(BaseRelationManager::class)
->formatStateUsing(function ($livewire, $state) {
if ($livewire instanceof BaseRelationManager) {
/** @var EntryModel */
$entry = $livewire->getOwnerRecord();
return $entry->anime->getName();
}
return $state;
})
->saveRelationshipsUsing(fn (EntryModel $record, $state) => $record->animetheme->anime()->associate(intval($state))->save()),
Select::make(EntryModel::ATTRIBUTE_THEME)
->label(__('filament.resources.singularLabel.anime_theme'))
->relationship(EntryModel::RELATION_THEME, ThemeModel::ATTRIBUTE_ID)
->searchable()
->hiddenOn(BaseRelationManager::class)
->allowHtml()
->getSearchResultsUsing(function ($search) {
return ThemeModel::search($search)
->get()
->load(ThemeModel::RELATION_ANIME)
->mapWithKeys(fn (ThemeModel $model) => [$model->getKey() => Select::getSearchLabelWithBlade($model)])
->toArray();
}),
TextInput::make(EntryModel::ATTRIBUTE_VERSION)
->label(__('filament.fields.anime_theme_entry.version.name'))
->helperText(__('filament.fields.anime_theme_entry.version.help'))
->numeric()
->rules(['nullable', 'integer']),
TextInput::make(EntryModel::ATTRIBUTE_EPISODES)
->label(__('filament.fields.anime_theme_entry.episodes.name'))
->helperText(__('filament.fields.anime_theme_entry.episodes.help'))
->maxLength(192)
->rules(['nullable', 'max:192']),
Checkbox::make(EntryModel::ATTRIBUTE_NSFW)
->label(__('filament.fields.anime_theme_entry.nsfw.name'))
->helperText(__('filament.fields.anime_theme_entry.nsfw.help'))
->rules(['nullable', 'boolean']),
Checkbox::make(EntryModel::ATTRIBUTE_SPOILER)
->label(__('filament.fields.anime_theme_entry.spoiler.name'))
->helperText(__('filament.fields.anime_theme_entry.spoiler.help'))
->rules(['nullable', 'boolean']),
TextInput::make(EntryModel::ATTRIBUTE_NOTES)
->label(__('filament.fields.anime_theme_entry.notes.name'))
->helperText(__('filament.fields.anime_theme_entry.notes.help'))
->maxLength(192)
->rules(['nullable', 'max:192']),
])
->columns(1);
}
/**
* The index page of the resource.
*
* @param Table $table
* @return Table
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function table(Table $table): Table
{
return parent::table($table)
->columns([
TextColumn::make(EntryModel::RELATION_ANIME.'.'.AnimeModel::ATTRIBUTE_NAME)
->label(__('filament.resources.singularLabel.anime'))
->toggleable()
->placeholder('-')
->urlToRelated(AnimeResource::class, EntryModel::RELATION_ANIME, limit: 30)
->tooltip(fn (TextColumn $column) => $column->getState()),
TextColumn::make(EntryModel::ATTRIBUTE_THEME)
->label(__('filament.resources.singularLabel.anime_theme'))
->toggleable()
->placeholder('-')
->urlToRelated(ThemeResource::class, EntryModel::RELATION_THEME, true),
TextColumn::make(EntryModel::ATTRIBUTE_ID)
->label(__('filament.fields.base.id'))
->sortable(),
TextColumn::make(EntryModel::ATTRIBUTE_VERSION)
->label(__('filament.fields.anime_theme_entry.version.name'))
->toggleable()
->placeholder('-'),
TextColumn::make(EntryModel::ATTRIBUTE_EPISODES)
->label(__('filament.fields.anime_theme_entry.episodes.name'))
->toggleable()
->placeholder('-'),
IconColumn::make(EntryModel::ATTRIBUTE_NSFW)
->label(__('filament.fields.anime_theme_entry.nsfw.name'))
->toggleable()
->boolean(),
IconColumn::make(EntryModel::ATTRIBUTE_SPOILER)
->label(__('filament.fields.anime_theme_entry.spoiler.name'))
->toggleable()
->boolean(),
TextColumn::make(EntryModel::ATTRIBUTE_NOTES)
->label(__('filament.fields.anime_theme_entry.notes.name'))
->toggleable()
->placeholder('-'),
])
->searchable()
->defaultSort(EntryModel::ATTRIBUTE_ID, 'desc')
->filters(static::getFilters())
->filtersFormMaxHeight('400px')
->actions(static::getActions())
->bulkActions(static::getBulkActions());
}
/**
* Get the infolist available for the resource.
*
* @param Infolist $infolist
* @return Infolist
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function infolist(Infolist $infolist): Infolist
{
return $infolist
->schema([
Section::make(static::getRecordTitle($infolist->getRecord()))
->schema([
TextEntry::make(EntryModel::RELATION_ANIME.'.'.AnimeModel::ATTRIBUTE_NAME)
->label(__('filament.resources.singularLabel.anime'))
->placeholder('-')
->urlToRelated(AnimeResource::class, EntryModel::RELATION_ANIME),
TextEntry::make(EntryModel::ATTRIBUTE_THEME)
->label(__('filament.resources.singularLabel.anime_theme'))
->placeholder('-')
->urlToRelated(ThemeResource::class, EntryModel::RELATION_THEME, true),
TextEntry::make(EntryModel::ATTRIBUTE_ID)
->label(__('filament.fields.base.id')),
TextEntry::make(EntryModel::ATTRIBUTE_VERSION)
->label(__('filament.fields.anime_theme_entry.version.name'))
->placeholder('-'),
TextEntry::make(EntryModel::ATTRIBUTE_EPISODES)
->label(__('filament.fields.anime_theme_entry.episodes.name'))
->placeholder('-'),
IconEntry::make(EntryModel::ATTRIBUTE_NSFW)
->label(__('filament.fields.anime_theme_entry.nsfw.name'))
->boolean(),
IconEntry::make(EntryModel::ATTRIBUTE_SPOILER)
->label(__('filament.fields.anime_theme_entry.spoiler.name'))
->boolean(),
TextEntry::make(EntryModel::ATTRIBUTE_NOTES)
->label(__('filament.fields.anime_theme_entry.notes.name'))
->placeholder('-'),
])
->columns(2),
Section::make(__('filament.fields.base.timestamps'))
->schema(parent::timestamps())
->columns(3),
]);
}
/**
* Get the relationships available for the resource.
*
* @return array
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function getRelations(): array
{
return [
RelationGroup::make(static::getLabel(), [
VideoEntryRelationManager::class,
]),
];
}
/**
* Get the filters available for the resource.
*
* @return array
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function getFilters(): array
{
return array_merge(
[
NumberFilter::make(EntryModel::ATTRIBUTE_VERSION)
->labels(__('filament.filters.anime_theme_entry.version_from'), __('filament.filters.anime_theme_entry.version_to'))
->attribute(EntryModel::ATTRIBUTE_VERSION),
TextFilter::make(EntryModel::ATTRIBUTE_EPISODES)
->label(__('filament.fields.anime_theme_entry.episodes.name'))
->attribute(EntryModel::ATTRIBUTE_EPISODES),
Filter::make(EntryModel::ATTRIBUTE_NSFW)
->label(__('filament.fields.anime_theme_entry.nsfw.name'))
->checkbox(),
Filter::make(EntryModel::ATTRIBUTE_SPOILER)
->label(__('filament.fields.anime_theme_entry.spoiler.name'))
->checkbox(),
],
parent::getFilters(),
);
}
/**
* Get the actions available for the resource.
*
* @return array
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function getActions(): array
{
return array_merge(
parent::getActions(),
[],
);
}
/**
* Get the bulk actions available for the resource.
*
* @return array
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function getBulkActions(): array
{
return array_merge(
parent::getBulkActions(),
[],
);
}
/**
* Get the pages available for the resource.
*
* @return array
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function getPages(): array
{
return [
'index' => ListEntries::route('/'),
'create' => CreateEntry::route('/create'),
'view' => ViewEntry::route('/{record:entry_id}'),
'edit' => EditEntry::route('/{record:entry_id}/edit'),
];
}
}