Files
nexusphp/app/Filament/Resources/Section/CodecResource.php

97 lines
3.4 KiB
PHP
Raw Normal View History

2022-10-27 20:21:54 +08:00
<?php
namespace App\Filament\Resources\Section;
use App\Filament\Resources\Section\CodecResource\Pages;
use App\Filament\Resources\Section\CodecResource\RelationManagers;
use App\Models\Codec;
use App\Models\Icon;
use App\Models\SearchBox;
use Filament\Forms;
2024-12-25 23:09:07 +08:00
use Filament\Forms\Form;
2022-10-27 20:21:54 +08:00
use Filament\Resources\Resource;
2024-12-25 23:09:07 +08:00
use Filament\Tables\Table;
2022-10-27 20:21:54 +08:00
use Filament\Tables;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\SoftDeletingScope;
class CodecResource extends Resource
{
protected static ?string $model = Codec::class;
protected static ?string $navigationIcon = 'heroicon-o-bookmark';
protected static ?string $navigationGroup = 'Section';
protected static ?int $navigationSort = 3;
public static function form(Form $form): Form
{
return $form
->schema([
Forms\Components\TextInput::make('name')->required()->label(__('label.search_box.taxonomy.name'))->required(),
Forms\Components\TextInput::make('sort_index')
->default(0)
2023-04-21 00:50:10 +08:00
->label(__('label.priority'))
->helperText(__('label.priority_help'))
2022-10-27 20:21:54 +08:00
,
Forms\Components\Select::make('mode')
->options(SearchBox::query()->pluck('name', 'id')->toArray())
->label(__('label.search_box.taxonomy.mode'))
->helperText(__('label.search_box.taxonomy.mode_help'))
,
]);
}
public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\TextColumn::make('id'),
Tables\Columns\TextColumn::make('search_box.name')
->label(__('label.search_box.label'))
->formatStateUsing(fn ($record) => $record->search_box->name ?? 'All')
,
Tables\Columns\TextColumn::make('name')->label(__('label.search_box.taxonomy.name'))->searchable(),
Tables\Columns\TextColumn::make('sort_index')->label(__('label.search_box.taxonomy.sort_index'))->sortable(),
])
2023-04-21 00:50:10 +08:00
->defaultSort('sort_index', 'desc')
2022-10-27 20:21:54 +08:00
->filters([
Tables\Filters\SelectFilter::make('mode')
->options(SearchBox::query()->pluck('name', 'id')->toArray())
->label(__('label.search_box.taxonomy.mode'))
->query(function (Builder $query, array $data) {
2022-10-29 04:19:39 +08:00
return $query->when($data['value'], function (Builder $query, $value) {
return $query->where(function (Builder $query) use ($value) {
return $query->where('mode', $value)->orWhere('mode', 0);
});
2022-10-27 20:21:54 +08:00
});
})
,
])
->actions([
Tables\Actions\EditAction::make(),
Tables\Actions\DeleteAction::make(),
])
->bulkActions([
Tables\Actions\DeleteBulkAction::make(),
]);
}
public static function getRelations(): array
{
return [
//
];
}
public static function getPages(): array
{
return [
'index' => Pages\ListCodecs::route('/'),
'create' => Pages\CreateCodec::route('/create'),
'edit' => Pages\EditCodec::route('/{record}/edit'),
];
}
}