mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
118 lines
4.0 KiB
PHP
118 lines
4.0 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\System;
|
|
|
|
use App\Filament\Resources\System\PluginResource\Pages;
|
|
use App\Filament\Resources\System\PluginResource\RelationManagers;
|
|
use App\Jobs\ManagePlugin;
|
|
use App\Models\Plugin;
|
|
use Filament\Forms;
|
|
use Filament\Resources\Form;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Resources\Table;
|
|
use Filament\Tables;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
|
use Illuminate\Support\HtmlString;
|
|
|
|
class PluginResource extends Resource
|
|
{
|
|
protected static ?string $model = Plugin::class;
|
|
|
|
protected static ?string $navigationIcon = 'heroicon-o-plus-circle';
|
|
|
|
protected static ?string $navigationGroup = 'System';
|
|
|
|
protected static ?int $navigationSort = 99;
|
|
|
|
protected static function getNavigationLabel(): string
|
|
{
|
|
return __('admin.sidebar.plugin');
|
|
}
|
|
|
|
public static function getBreadcrumb(): string
|
|
{
|
|
return self::getNavigationLabel();
|
|
}
|
|
|
|
public static function form(Form $form): Form
|
|
{
|
|
return $form
|
|
->schema([
|
|
Forms\Components\TextInput::make('package_name')->label(__('label.plugin.package_name')),
|
|
Forms\Components\TextInput::make('remote_url')->label(__('label.plugin.remote_url')),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('id'),
|
|
Tables\Columns\TextColumn::make('package_name')->label(__('plugin.labels.package_name')),
|
|
Tables\Columns\TextColumn::make('remote_url')->label(__('plugin.labels.remote_url')),
|
|
Tables\Columns\TextColumn::make('installed_version')->label(__('plugin.labels.installed_version')),
|
|
Tables\Columns\TextColumn::make('statusText')->label(__('label.status')),
|
|
Tables\Columns\TextColumn::make('updated_at')->label(__('plugin.labels.updated_at')),
|
|
])
|
|
->filters([
|
|
//
|
|
])
|
|
->actions(self::getActions())
|
|
->bulkActions([
|
|
Tables\Actions\DeleteBulkAction::make(),
|
|
]);
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ManagePlugins::route('/'),
|
|
];
|
|
}
|
|
|
|
private static function getActions()
|
|
{
|
|
$actions = [];
|
|
$actions[] = Tables\Actions\EditAction::make();
|
|
$actions[] = self::buildInstallAction();
|
|
$actions[] = self::buildUpdateAction();
|
|
$actions[] = Tables\Actions\DeleteAction::make('delete')
|
|
->hidden(fn ($record) => !in_array($record->status, Plugin::$showDeleteBtnStatus))
|
|
->using(function ($record) {
|
|
$record->update(['status' => Plugin::STATUS_PRE_DELETE]);
|
|
ManagePlugin::dispatch($record, 'delete');
|
|
});
|
|
return $actions;
|
|
}
|
|
|
|
private static function buildInstallAction()
|
|
{
|
|
return Tables\Actions\Action::make('install')
|
|
->label(__('plugin.actions.install'))
|
|
->icon('heroicon-o-arrow-down')
|
|
->requiresConfirmation()
|
|
->hidden(fn ($record) => !in_array($record->status, Plugin::$showInstallBtnStatus))
|
|
->action(function ($record) {
|
|
$record->update(['status' => Plugin::STATUS_PRE_INSTALL]);
|
|
ManagePlugin::dispatch($record, 'install');
|
|
})
|
|
;
|
|
}
|
|
|
|
private static function buildUpdateAction()
|
|
{
|
|
return Tables\Actions\Action::make('update')
|
|
->label(__('plugin.actions.update'))
|
|
->icon('heroicon-o-arrow-up')
|
|
->requiresConfirmation()
|
|
->hidden(fn ($record) => !in_array($record->status, Plugin::$showUpdateBtnStatus))
|
|
->action(function ($record) {
|
|
$record->update(['status' => Plugin::STATUS_PRE_UPDATE]);
|
|
ManagePlugin::dispatch($record, 'update');
|
|
})
|
|
;
|
|
}
|
|
|
|
}
|