<?php

namespace App\Filament\Resources;

use App\Filament\Resources\TimBirokrasiResource\Pages;
use App\Models\TimBirokrasi;
use Filament\Forms;
use Filament\Forms\Form;
use Filament\Resources\Resource;
use Filament\Tables;
use Filament\Tables\Table;
use Illuminate\Support\Facades\Auth;

class TimBirokrasiResource extends Resource
{
    protected static ?string $model = TimBirokrasi::class;

    protected static ?string $navigationIcon  = 'heroicon-o-users';
    protected static ?string $navigationGroup = 'CMS About';
    protected static ?string $navigationLabel = 'Tim Birokrasi';
    protected static ?int    $navigationSort  = 4;

    protected static ?string $modelLabel       = 'Anggota Tim';
    protected static ?string $pluralModelLabel = 'Tim Birokrasi';

    public static function form(Form $form): Form
    {
        return $form
            ->schema([
                Forms\Components\Section::make('Informasi Anggota')
                    ->schema([
                        Forms\Components\TextInput::make('nama')
                            ->label('Nama Lengkap')
                            ->required()
                            ->maxLength(255)
                            ->placeholder('Dr. H. Budi Santoso, M.Pd.'),

                        Forms\Components\TextInput::make('jabatan')
                            ->label('Jabatan')
                            ->required()
                            ->maxLength(255)
                            ->placeholder('Kepala Sekolah'),

                        Forms\Components\Select::make('kategori')
                            ->label('Kategori')
                            ->required()
                            ->options([
                                'kepala_sekolah' => 'Kepala Sekolah',
                                'wakil_kepala'   => 'Wakil Kepala',
                                'guru'           => 'Guru',
                                'staff'          => 'Staff',
                            ])
                            ->native(false),
                    ])->columns(2),

                Forms\Components\Section::make('Media & Pengaturan')
                    ->schema([
                        Forms\Components\FileUpload::make('foto')
                            ->label('Foto Profil')
                            ->image()
                            ->required()
                            ->directory('tim-birokrasi')
                            ->visibility('public')
                            ->imageEditor()
                            ->columnSpanFull(),

                        Forms\Components\TextInput::make('urutan')
                            ->label('Urutan Tampil')
                            ->numeric()
                            ->minValue(1)
                            ->required()
                            ->default(fn () => (\App\Models\TimBirokrasi::max('urutan') ?? 0) + 1)
                            ->helperText('Angka kecil akan tampil lebih dulu'),

                        Forms\Components\Toggle::make('aktif')
                            ->label('Aktif')
                            ->default(true),
                    ])->columns(2),
            ]);
    }

    public static function table(Table $table): Table
    {
        return $table
            ->columns([
                Tables\Columns\ImageColumn::make('foto')
                    ->label('Foto')
                    ->circular()
                    ->size(50),

                Tables\Columns\TextColumn::make('nama')
                    ->label('Nama')
                    ->searchable()
                    ->limit(30),

                Tables\Columns\TextColumn::make('jabatan')
                    ->label('Jabatan')
                    ->searchable()
                    ->limit(40),

                Tables\Columns\TextColumn::make('kategori')
                    ->label('Kategori')
                    ->badge()
                    ->color(fn (string $state): string => match ($state) {
                        'kepala_sekolah' => 'success',
                        'wakil_kepala'   => 'warning',
                        'guru'           => 'info',
                        'staff'          => 'gray',
                        default          => 'gray',
                    })
                    ->formatStateUsing(fn (string $state): string => match ($state) {
                        'kepala_sekolah' => 'Kepala Sekolah',
                        'wakil_kepala'   => 'Wakil Kepala',
                        'guru'           => 'Guru',
                        'staff'          => 'Staff',
                        default          => $state,
                    }),

                Tables\Columns\TextColumn::make('urutan')
                    ->label('Urutan')
                    ->badge()
                    ->sortable(),

                Tables\Columns\IconColumn::make('aktif')
                    ->label('Status')
                    ->boolean()
                    ->trueIcon('heroicon-m-check-circle')
                    ->falseIcon('heroicon-m-x-circle')
                    ->trueColor('success')
                    ->falseColor('danger'),

                Tables\Columns\TextColumn::make('created_at')
                    ->label('Dibuat')
                    ->dateTime('d/m/Y H:i')
                    ->sortable()
                    ->toggleable(isToggledHiddenByDefault: true),
            ])
            ->filters([
                Tables\Filters\SelectFilter::make('kategori')
                    ->label('Kategori')
                    ->options([
                        'kepala_sekolah' => 'Kepala Sekolah',
                        'wakil_kepala'   => 'Wakil Kepala',
                        'guru'           => 'Guru',
                        'staff'          => 'Staff',
                    ])
                    ->native(false),

                Tables\Filters\TernaryFilter::make('aktif')
                    ->label('Status Aktif')
                    ->boolean()
                    ->trueLabel('Aktif')
                    ->falseLabel('Tidak Aktif')
                    ->native(false),
            ])
            ->actions([
                Tables\Actions\EditAction::make(),
                Tables\Actions\DeleteAction::make(),
            ])
            ->bulkActions([
                Tables\Actions\BulkActionGroup::make([
                    Tables\Actions\DeleteBulkAction::make(),
                ]),
            ])
            ->defaultSort('urutan', 'asc');
    }

    public static function getRelations(): array
    {
        return [];
    }

    // Gate / izin
    public static function canViewAny(): bool     { return Auth::user()?->can('cms_about') ?? false; }
    public static function canAccess(): bool      { return static::canViewAny(); }
    public static function canCreate(): bool      { return Auth::user()?->can('cms_about') ?? false; }
    public static function canEdit($record): bool { return Auth::user()?->can('cms_about') ?? false; }
    public static function canDelete($record): bool { return Auth::user()?->can('cms_about') ?? false; }
    public static function shouldRegisterNavigation(): bool { return Auth::user()?->can('cms_about') ?? false; }

    public static function getPages(): array
    {
        return [
            'index'  => Pages\ListTimBirokrasis::route('/'),
            'create' => Pages\CreateTimBirokrasi::route('/create'),
            'edit'   => Pages\EditTimBirokrasi::route('/{record}/edit'),
        ];
    }

    public static function getRecordRouteKeyName(): string
    {
        // konsisten dengan tabel yang pakai uuid_id
        return 'uuid_id';
    }
}
