Files
animethemes-server/app/Nova/Resources/Wiki/Series.php
T
2022-10-28 13:48:31 -05:00

181 lines
5.0 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Nova\Resources\Wiki;
use App\Models\Wiki\Series as SeriesModel;
use App\Nova\Metrics\Series\NewSeries;
use App\Nova\Metrics\Series\SeriesPerDay;
use App\Nova\Resources\BaseResource;
use App\Pivots\BasePivot;
use Exception;
use Illuminate\Validation\Rule;
use Laravel\Nova\Card;
use Laravel\Nova\Fields\BelongsToMany;
use Laravel\Nova\Fields\DateTime;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Slug;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Http\Requests\NovaRequest;
use Laravel\Nova\Panel;
use Laravel\Nova\Query\Search\Column;
/**
* Class Series.
*/
class Series extends BaseResource
{
/**
* The model the resource corresponds to.
*
* @var string
*/
public static string $model = SeriesModel::class;
/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = SeriesModel::ATTRIBUTE_NAME;
/**
* Get the search result subtitle for the resource.
*
* @return string|null
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public function subtitle(): ?string
{
return (string) data_get($this, SeriesModel::ATTRIBUTE_SLUG);
}
/**
* The logical group associated with the resource.
*
* @return string
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function group(): string
{
return __('nova.resources.group.wiki');
}
/**
* Get the displayable label of the resource.
*
* @return string
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function label(): string
{
return __('nova.resources.label.series');
}
/**
* Get the displayable singular label of the resource.
*
* @return string
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function singularLabel(): string
{
return __('nova.resources.singularLabel.series');
}
/**
* Get the searchable columns for the resource.
*
* @return array
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function searchableColumns(): array
{
return [
new Column(SeriesModel::ATTRIBUTE_NAME),
new Column(SeriesModel::ATTRIBUTE_SLUG),
];
}
/**
* Get the fields displayed by the resource.
*
* @param NovaRequest $request
* @return array
*
* @throws Exception
*/
public function fields(NovaRequest $request): array
{
return [
ID::make(__('nova.fields.base.id'), SeriesModel::ATTRIBUTE_ID)
->sortable()
->showOnPreview()
->showWhenPeeking(),
Text::make(__('nova.fields.series.name.name'), SeriesModel::ATTRIBUTE_NAME)
->sortable()
->copyable()
->rules(['required', 'max:192'])
->help(__('nova.fields.series.name.help'))
->showOnPreview()
->filterable()
->maxlength(192)
->showWhenPeeking(),
Slug::make(__('nova.fields.series.slug.name'), SeriesModel::ATTRIBUTE_SLUG)
->from(SeriesModel::ATTRIBUTE_NAME)
->separator('_')
->sortable()
->rules(['required', 'max:192', 'alpha_dash'])
->updateRules(
Rule::unique(SeriesModel::TABLE)
->ignore($request->route('resourceId'), SeriesModel::ATTRIBUTE_ID)
->__toString()
)
->help(__('nova.fields.series.slug.help'))
->showOnPreview()
->showWhenPeeking(),
BelongsToMany::make(__('nova.resources.label.anime'), SeriesModel::RELATION_ANIME, Anime::class)
->searchable()
->filterable()
->withSubtitles()
->showCreateRelationButton()
->fields(fn () => [
DateTime::make(__('nova.fields.base.created_at'), BasePivot::ATTRIBUTE_CREATED_AT)
->hideWhenCreating(),
DateTime::make(__('nova.fields.base.updated_at'), BasePivot::ATTRIBUTE_UPDATED_AT)
->hideWhenCreating(),
]),
Panel::make(__('nova.fields.base.timestamps'), $this->timestamps())
->collapsable(),
];
}
/**
* Get the cards available for the request.
*
* @param NovaRequest $request
* @return array
*/
public function cards(NovaRequest $request): array
{
return array_merge(
parent::cards($request),
[
(new NewSeries())->width(Card::ONE_HALF_WIDTH),
(new SeriesPerDay())->width(Card::ONE_HALF_WIDTH),
]
);
}
}