mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
237 lines
9.9 KiB
PHP
237 lines
9.9 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\User;
|
|
|
|
use App\Filament\OptionsTrait;
|
|
use App\Filament\Resources\User\UserMedalResource\Pages;
|
|
use App\Filament\Resources\User\UserMedalResource\RelationManagers;
|
|
use App\Models\Medal;
|
|
use App\Models\NexusModel;
|
|
use App\Models\UserMedal;
|
|
use App\Repositories\MedalRepository;
|
|
use Carbon\Carbon;
|
|
use Filament\Forms;
|
|
use Filament\Forms\Form;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Tables\Table;
|
|
use Filament\Tables;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Support\HtmlString;
|
|
|
|
class UserMedalResource extends Resource
|
|
{
|
|
use OptionsTrait;
|
|
|
|
protected static ?string $model = UserMedal::class;
|
|
|
|
protected static ?string $navigationIcon = 'heroicon-o-flag';
|
|
|
|
protected static ?string $navigationGroup = 'User';
|
|
|
|
protected static ?int $navigationSort = 5;
|
|
|
|
public static function getNavigationLabel(): string
|
|
{
|
|
return __('admin.sidebar.users_medals');
|
|
}
|
|
|
|
public static function getBreadcrumb(): string
|
|
{
|
|
return self::getNavigationLabel();
|
|
}
|
|
|
|
public static function form(Form $form): Form
|
|
{
|
|
return $form
|
|
->schema([
|
|
//
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('id')->sortable(),
|
|
Tables\Columns\TextColumn::make('uid')->searchable(),
|
|
Tables\Columns\TextColumn::make('user.username')
|
|
->label(__('label.username'))
|
|
->searchable()
|
|
->formatStateUsing(fn ($record) => new HtmlString(get_username($record->uid, false, true, true, true)))
|
|
,
|
|
Tables\Columns\TextColumn::make('medal.name')->label(__('label.medal.label'))->searchable(),
|
|
Tables\Columns\ImageColumn::make('medal.image_large')->label(__('label.image')),
|
|
Tables\Columns\TextColumn::make('expire_at')->label(__('label.expire_at')),
|
|
Tables\Columns\TextColumn::make('bonus_addition_expire_at')->label(__('medal.bonus_addition_expire_at')),
|
|
Tables\Columns\TextColumn::make('wearingStatusText')->label(__('label.status')),
|
|
Tables\Columns\TextColumn::make('created_at')->label(__('label.created_at')),
|
|
])
|
|
->defaultSort('id', 'desc')
|
|
->filters([
|
|
Tables\Filters\Filter::make('uid')
|
|
->form([
|
|
Forms\Components\TextInput::make('uid')
|
|
->label('UID')
|
|
->placeholder('UID')
|
|
,
|
|
])->query(function (Builder $query, array $data) {
|
|
return $query->when($data['uid'], fn (Builder $query, $uid) => $query->where("uid", $uid));
|
|
})
|
|
,
|
|
Tables\Filters\SelectFilter::make('medal_id')
|
|
->options(Medal::query()->pluck('name', 'id')->toArray())
|
|
->label(__('medal.label'))
|
|
,
|
|
Tables\Filters\SelectFilter::make('is_expired')
|
|
->options(self::getYesNoOptions())
|
|
->label(__('medal.is_expired'))
|
|
->query(function (Builder $query, array $data) {
|
|
if (isset($data['value']) && $data['value'] === "0") {
|
|
//未过期,为 null 或大于当前时间
|
|
$query->where(function ($query) {
|
|
$query->whereNull('expire_at')->orWhere('expire_at', '>', now());
|
|
});
|
|
}
|
|
if (isset($data['value']) && $data['value'] === "1") {
|
|
//已过期, 不为 null 且小于当前时间
|
|
$query->whereNotNull('expire_at')->where("expire_at", "<", now());
|
|
}
|
|
})
|
|
,
|
|
Tables\Filters\SelectFilter::make('is_bonus_addition_expired')
|
|
->options(self::getYesNoOptions())
|
|
->label(__('medal.is_bonus_addition_expired'))
|
|
->query(function (Builder $query, array $data) {
|
|
if (isset($data['value']) && $data['value'] === "0") {
|
|
//未过期,为 null 或大于当前时间
|
|
$query->where(function ($query) {
|
|
$query->whereNull('bonus_addition_expire_at')->orWhere('bonus_addition_expire_at', '>', now());
|
|
});
|
|
}
|
|
if (isset($data['value']) && $data['value'] === "1") {
|
|
//已过期, 不为 null 且小于当前时间
|
|
$query->whereNotNull('bonus_addition_expire_at')->where("bonus_addition_expire_at", "<", now());
|
|
}
|
|
})
|
|
,
|
|
Tables\Filters\SelectFilter::make('status')
|
|
->options(UserMedal::listWearingStatusLabels())
|
|
->label(__('label.status'))
|
|
,
|
|
])
|
|
->actions([
|
|
Tables\Actions\DeleteAction::make()->using(function (NexusModel $record) {
|
|
$record->delete();
|
|
clear_user_cache($record->uid);
|
|
})
|
|
])
|
|
->bulkActions([
|
|
Tables\Actions\BulkActionGroup::make([
|
|
self::buildBulkActionIncreaseExpireAt('expire_at'),
|
|
self::buildBulkActionUpdateExpireAt('expire_at'),
|
|
self::buildBulkActionCancelExpireAt('expire_at'),
|
|
])->label(sprintf("%s-%s", __('label.bulk'), __('label.expire_at'))),
|
|
Tables\Actions\BulkActionGroup::make([
|
|
self::buildBulkActionIncreaseExpireAt('bonus_addition_expire_at'),
|
|
self::buildBulkActionUpdateExpireAt('bonus_addition_expire_at'),
|
|
self::buildBulkActionCancelExpireAt('bonus_addition_expire_at'),
|
|
])->label(sprintf("%s-%s", __('label.bulk'), __('medal.bonus_addition_expire_at'))),
|
|
Tables\Actions\DeleteBulkAction::make(),
|
|
])
|
|
->selectCurrentPageOnly()
|
|
;
|
|
}
|
|
|
|
private static function buildBulkActionIncreaseExpireAt(string $filed): Tables\Actions\BulkAction
|
|
{
|
|
return Tables\Actions\BulkAction::make("bulkActionIncrease$filed")
|
|
->label(__('medal.bulk_action_increase'))
|
|
->modalHeading(__('medal.bulk_action_increase_' . $filed))
|
|
->form([
|
|
Forms\Components\TextInput::make('increase_duration')
|
|
->label(__('medal.increase_duration'))
|
|
->helperText(__('medal.increase_duration_help'))
|
|
->integer()
|
|
->required(),
|
|
])
|
|
->action(function (Collection $collection, array $data) use ($filed) {
|
|
try {
|
|
$rep = new MedalRepository();
|
|
$rep->increaseExpireAt($collection, $filed, $data['increase_duration']);
|
|
send_admin_success_notification();
|
|
} catch (\Exception $e) {
|
|
send_admin_fail_notification($e->getMessage());
|
|
}
|
|
})
|
|
->deselectRecordsAfterCompletion()
|
|
;
|
|
}
|
|
|
|
private static function buildBulkActionUpdateExpireAt(string $filed): Tables\Actions\BulkAction
|
|
{
|
|
return Tables\Actions\BulkAction::make("bulkActionUpdate$filed")
|
|
->label(__('medal.bulk_action_update'))
|
|
->modalHeading(__('medal.bulk_action_update_' . $filed))
|
|
->form([
|
|
Forms\Components\DateTimePicker::make('update_expire_at')
|
|
->label(__('medal.update_expire_at'))
|
|
->helperText(__('medal.update_expire_at_help'))
|
|
->required(),
|
|
])
|
|
->action(function (Collection $collection, array $data) use ($filed) {
|
|
try {
|
|
$expireAt = Carbon::parse($data['update_expire_at']);
|
|
$rep = new MedalRepository();
|
|
$rep->updateExpireAt($collection, $filed, $expireAt);
|
|
send_admin_success_notification();
|
|
} catch (\Exception $e) {
|
|
send_admin_fail_notification($e->getMessage());
|
|
}
|
|
})
|
|
->deselectRecordsAfterCompletion()
|
|
;
|
|
}
|
|
|
|
private static function buildBulkActionCancelExpireAt(string $filed): Tables\Actions\BulkAction
|
|
{
|
|
return Tables\Actions\BulkAction::make("bulkActionCancel$filed")
|
|
->label(__('medal.bulk_action_cancel'))
|
|
->modalHeading(__('medal.bulk_action_cancel_' . $filed))
|
|
->requiresConfirmation()
|
|
->action(function (Collection $collection) use ($filed) {
|
|
try {
|
|
$rep = new MedalRepository();
|
|
$rep->cancelExpireAt($collection, $filed);
|
|
send_admin_success_notification();
|
|
} catch (\Exception $e) {
|
|
send_admin_fail_notification($e->getMessage());
|
|
}
|
|
})
|
|
->deselectRecordsAfterCompletion()
|
|
;
|
|
}
|
|
|
|
public static function getEloquentQuery(): Builder
|
|
{
|
|
return parent::getEloquentQuery()->with(['user', 'medal']);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListUserMedals::route('/'),
|
|
'create' => Pages\CreateUserMedal::route('/create'),
|
|
'edit' => Pages\EditUserMedal::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|