mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 07:34:45 +02:00
Add own action classes for egg actions (+ add empty state) (#823)
* add own action classes for egg actions * add empty state to ListEggs * put Import before Create
This commit is contained in:
parent
5af507b54b
commit
eb819032bc
@ -5,17 +5,14 @@ namespace App\Filament\Admin\Resources\EggResource\Pages;
|
|||||||
use AbdelhamidErrahmouni\FilamentMonacoEditor\MonacoEditor;
|
use AbdelhamidErrahmouni\FilamentMonacoEditor\MonacoEditor;
|
||||||
use App\Filament\Admin\Resources\EggResource;
|
use App\Filament\Admin\Resources\EggResource;
|
||||||
use App\Filament\Admin\Resources\EggResource\RelationManagers\ServersRelationManager;
|
use App\Filament\Admin\Resources\EggResource\RelationManagers\ServersRelationManager;
|
||||||
|
use App\Filament\Components\Actions\ExportEggAction;
|
||||||
|
use App\Filament\Components\Actions\ImportEggAction;
|
||||||
use App\Models\Egg;
|
use App\Models\Egg;
|
||||||
use App\Services\Eggs\Sharing\EggExporterService;
|
use Filament\Actions\DeleteAction;
|
||||||
use App\Services\Eggs\Sharing\EggImporterService;
|
|
||||||
use Exception;
|
|
||||||
use Filament\Actions;
|
|
||||||
use Filament\Forms\Components\Checkbox;
|
use Filament\Forms\Components\Checkbox;
|
||||||
use Filament\Forms\Components\Fieldset;
|
use Filament\Forms\Components\Fieldset;
|
||||||
use Filament\Forms\Components\FileUpload;
|
|
||||||
use Filament\Forms\Components\Hidden;
|
use Filament\Forms\Components\Hidden;
|
||||||
use Filament\Forms\Components\KeyValue;
|
use Filament\Forms\Components\KeyValue;
|
||||||
use Filament\Forms\Components\Placeholder;
|
|
||||||
use Filament\Forms\Components\Repeater;
|
use Filament\Forms\Components\Repeater;
|
||||||
use Filament\Forms\Components\Select;
|
use Filament\Forms\Components\Select;
|
||||||
use Filament\Forms\Components\Tabs;
|
use Filament\Forms\Components\Tabs;
|
||||||
@ -26,7 +23,6 @@ use Filament\Forms\Components\TextInput;
|
|||||||
use Filament\Forms\Components\Toggle;
|
use Filament\Forms\Components\Toggle;
|
||||||
use Filament\Forms\Form;
|
use Filament\Forms\Form;
|
||||||
use Filament\Forms\Set;
|
use Filament\Forms\Set;
|
||||||
use Filament\Notifications\Notification;
|
|
||||||
use Filament\Resources\Pages\EditRecord;
|
use Filament\Resources\Pages\EditRecord;
|
||||||
|
|
||||||
class EditEgg extends EditRecord
|
class EditEgg extends EditRecord
|
||||||
@ -242,83 +238,11 @@ class EditEgg extends EditRecord
|
|||||||
protected function getHeaderActions(): array
|
protected function getHeaderActions(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
Actions\DeleteAction::make('deleteEgg')
|
DeleteAction::make()
|
||||||
->disabled(fn (Egg $egg): bool => $egg->servers()->count() > 0)
|
->disabled(fn (Egg $egg): bool => $egg->servers()->count() > 0)
|
||||||
->label(fn (Egg $egg): string => $egg->servers()->count() <= 0 ? 'Delete' : 'In Use'),
|
->label(fn (Egg $egg): string => $egg->servers()->count() <= 0 ? 'Delete' : 'In Use'),
|
||||||
Actions\Action::make('exportEgg')
|
ExportEggAction::make(),
|
||||||
->label('Export')
|
ImportEggAction::make(),
|
||||||
->color('primary')
|
|
||||||
->action(fn (EggExporterService $service, Egg $egg) => response()->streamDownload(function () use ($service, $egg) {
|
|
||||||
echo $service->handle($egg->id);
|
|
||||||
}, 'egg-' . $egg->getKebabName() . '.json'))
|
|
||||||
->authorize(fn () => auth()->user()->can('export egg')),
|
|
||||||
Actions\Action::make('importEgg')
|
|
||||||
->label('Import')
|
|
||||||
->form([
|
|
||||||
Placeholder::make('warning')
|
|
||||||
->label('This will overwrite the current egg to the one you upload.'),
|
|
||||||
Tabs::make('Tabs')
|
|
||||||
->tabs([
|
|
||||||
Tab::make('From File')
|
|
||||||
->icon('tabler-file-upload')
|
|
||||||
->schema([
|
|
||||||
FileUpload::make('egg')
|
|
||||||
->label('Egg')
|
|
||||||
->hint('eg. minecraft.json')
|
|
||||||
->acceptedFileTypes(['application/json'])
|
|
||||||
->storeFiles(false),
|
|
||||||
]),
|
|
||||||
Tab::make('From URL')
|
|
||||||
->icon('tabler-world-upload')
|
|
||||||
->schema([
|
|
||||||
TextInput::make('url')
|
|
||||||
->label('URL')
|
|
||||||
->default(fn (Egg $egg): ?string => $egg->update_url)
|
|
||||||
->hint('Link to the egg file (eg. minecraft.json)')
|
|
||||||
->url(),
|
|
||||||
]),
|
|
||||||
])
|
|
||||||
->contained(false),
|
|
||||||
|
|
||||||
])
|
|
||||||
->action(function (array $data, Egg $egg, EggImporterService $eggImportService): void {
|
|
||||||
if (!empty($data['egg'])) {
|
|
||||||
try {
|
|
||||||
$eggImportService->fromFile($data['egg'], $egg);
|
|
||||||
} catch (Exception $exception) {
|
|
||||||
Notification::make()
|
|
||||||
->title('Import Failed')
|
|
||||||
->body($exception->getMessage())
|
|
||||||
->danger() // Will Robinson
|
|
||||||
->send();
|
|
||||||
|
|
||||||
report($exception);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
} elseif (!empty($data['url'])) {
|
|
||||||
try {
|
|
||||||
$eggImportService->fromUrl($data['url'], $egg);
|
|
||||||
} catch (Exception $exception) {
|
|
||||||
Notification::make()
|
|
||||||
->title('Import Failed')
|
|
||||||
->body($exception->getMessage())
|
|
||||||
->danger()
|
|
||||||
->send();
|
|
||||||
|
|
||||||
report($exception);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->refreshForm();
|
|
||||||
Notification::make()
|
|
||||||
->title('Import Success')
|
|
||||||
->success()
|
|
||||||
->send();
|
|
||||||
})
|
|
||||||
->authorize(fn () => auth()->user()->can('import egg')),
|
|
||||||
$this->getSaveFormAction()->formId('form'),
|
$this->getSaveFormAction()->formId('form'),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -3,24 +3,19 @@
|
|||||||
namespace App\Filament\Admin\Resources\EggResource\Pages;
|
namespace App\Filament\Admin\Resources\EggResource\Pages;
|
||||||
|
|
||||||
use App\Filament\Admin\Resources\EggResource;
|
use App\Filament\Admin\Resources\EggResource;
|
||||||
|
use App\Filament\Components\Actions\ImportEggAction as ImportEggHeaderAction;
|
||||||
|
use App\Filament\Components\Tables\Actions\ExportEggAction;
|
||||||
|
use App\Filament\Components\Tables\Actions\ImportEggAction;
|
||||||
|
use App\Filament\Components\Tables\Actions\UpdateEggAction;
|
||||||
use App\Models\Egg;
|
use App\Models\Egg;
|
||||||
use App\Services\Eggs\Sharing\EggExporterService;
|
use Filament\Actions\CreateAction as CreateHeaderAction;
|
||||||
use App\Services\Eggs\Sharing\EggImporterService;
|
|
||||||
use Exception;
|
|
||||||
use Filament\Actions;
|
|
||||||
use Filament\Forms\Components\FileUpload;
|
|
||||||
use Filament\Forms\Components\Tabs;
|
|
||||||
use Filament\Forms\Components\Tabs\Tab;
|
|
||||||
use Filament\Forms\Components\TextInput;
|
|
||||||
use Filament\Notifications\Notification;
|
|
||||||
use Filament\Resources\Pages\ListRecords;
|
use Filament\Resources\Pages\ListRecords;
|
||||||
use Filament\Tables\Actions\Action;
|
|
||||||
use Filament\Tables\Actions\BulkActionGroup;
|
use Filament\Tables\Actions\BulkActionGroup;
|
||||||
|
use Filament\Tables\Actions\CreateAction;
|
||||||
use Filament\Tables\Actions\DeleteBulkAction;
|
use Filament\Tables\Actions\DeleteBulkAction;
|
||||||
use Filament\Tables\Actions\EditAction;
|
use Filament\Tables\Actions\EditAction;
|
||||||
use Filament\Tables\Columns\TextColumn;
|
use Filament\Tables\Columns\TextColumn;
|
||||||
use Filament\Tables\Table;
|
use Filament\Tables\Table;
|
||||||
use Livewire\Features\SupportFileUploads\TemporaryUploadedFile;
|
|
||||||
|
|
||||||
class ListEggs extends ListRecords
|
class ListEggs extends ListRecords
|
||||||
{
|
{
|
||||||
@ -49,132 +44,31 @@ class ListEggs extends ListRecords
|
|||||||
])
|
])
|
||||||
->actions([
|
->actions([
|
||||||
EditAction::make(),
|
EditAction::make(),
|
||||||
Action::make('export')
|
ExportEggAction::make(),
|
||||||
->icon('tabler-download')
|
UpdateEggAction::make(),
|
||||||
->label('Export')
|
|
||||||
->color('primary')
|
|
||||||
->action(fn (EggExporterService $service, Egg $egg) => response()->streamDownload(function () use ($service, $egg) {
|
|
||||||
echo $service->handle($egg->id);
|
|
||||||
}, 'egg-' . $egg->getKebabName() . '.json'))
|
|
||||||
->authorize(fn () => auth()->user()->can('export egg')),
|
|
||||||
Action::make('update')
|
|
||||||
->icon('tabler-cloud-download')
|
|
||||||
->label('Update')
|
|
||||||
->color('success')
|
|
||||||
->requiresConfirmation()
|
|
||||||
->modalHeading('Are you sure you want to update this egg?')
|
|
||||||
->modalDescription('If you made any changes to the egg they will be overwritten!')
|
|
||||||
->modalIconColor('danger')
|
|
||||||
->modalSubmitAction(fn (Actions\StaticAction $action) => $action->color('danger'))
|
|
||||||
->action(function (Egg $egg, EggImporterService $eggImporterService) {
|
|
||||||
try {
|
|
||||||
$eggImporterService->fromUrl($egg->update_url, $egg);
|
|
||||||
|
|
||||||
cache()->forget("eggs.{$egg->uuid}.update");
|
|
||||||
} catch (Exception $exception) {
|
|
||||||
Notification::make()
|
|
||||||
->title('Egg Update failed')
|
|
||||||
->body($exception->getMessage())
|
|
||||||
->danger()
|
|
||||||
->send();
|
|
||||||
|
|
||||||
report($exception);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Notification::make()
|
|
||||||
->title('Egg updated')
|
|
||||||
->success()
|
|
||||||
->send();
|
|
||||||
})
|
|
||||||
->authorize(fn () => auth()->user()->can('import egg'))
|
|
||||||
->visible(fn (Egg $egg) => cache()->get("eggs.{$egg->uuid}.update", false)),
|
|
||||||
])
|
])
|
||||||
->bulkActions([
|
->bulkActions([
|
||||||
BulkActionGroup::make([
|
BulkActionGroup::make([
|
||||||
DeleteBulkAction::make()
|
DeleteBulkAction::make()
|
||||||
->authorize(fn () => auth()->user()->can('delete egg')),
|
->authorize(fn () => auth()->user()->can('delete egg')),
|
||||||
]),
|
]),
|
||||||
|
])
|
||||||
|
->emptyStateIcon('tabler-eggs')
|
||||||
|
->emptyStateDescription('')
|
||||||
|
->emptyStateHeading('No Eggs')
|
||||||
|
->emptyStateActions([
|
||||||
|
CreateAction::make()
|
||||||
|
->label('Create Egg'),
|
||||||
|
ImportEggAction::make(),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function getHeaderActions(): array
|
protected function getHeaderActions(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
Actions\CreateAction::make('create')->label('Create Egg'),
|
ImportEggHeaderAction::make(),
|
||||||
|
CreateHeaderAction::make()
|
||||||
Actions\Action::make('import')
|
->label('Create Egg'),
|
||||||
->label('Import')
|
|
||||||
->form([
|
|
||||||
Tabs::make('Tabs')
|
|
||||||
->tabs([
|
|
||||||
Tab::make('From File')
|
|
||||||
->icon('tabler-file-upload')
|
|
||||||
->schema([
|
|
||||||
FileUpload::make('egg')
|
|
||||||
->label('Egg')
|
|
||||||
->hint('This should be the json file ( egg-minecraft.json )')
|
|
||||||
->acceptedFileTypes(['application/json'])
|
|
||||||
->storeFiles(false)
|
|
||||||
->multiple(),
|
|
||||||
]),
|
|
||||||
Tab::make('From URL')
|
|
||||||
->icon('tabler-world-upload')
|
|
||||||
->schema([
|
|
||||||
TextInput::make('url')
|
|
||||||
->label('URL')
|
|
||||||
->hint('This URL should point to a single json file')
|
|
||||||
->url(),
|
|
||||||
]),
|
|
||||||
])
|
|
||||||
->contained(false),
|
|
||||||
|
|
||||||
])
|
|
||||||
->action(function (array $data, EggImporterService $eggImportService): void {
|
|
||||||
if (!empty($data['egg'])) {
|
|
||||||
/** @var TemporaryUploadedFile[] $eggFile */
|
|
||||||
$eggFile = $data['egg'];
|
|
||||||
|
|
||||||
foreach ($eggFile as $file) {
|
|
||||||
try {
|
|
||||||
$eggImportService->fromFile($file);
|
|
||||||
} catch (Exception $exception) {
|
|
||||||
Notification::make()
|
|
||||||
->title('Import Failed')
|
|
||||||
->body($exception->getMessage())
|
|
||||||
->danger()
|
|
||||||
->send();
|
|
||||||
|
|
||||||
report($exception);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($data['url'])) {
|
|
||||||
try {
|
|
||||||
$eggImportService->fromUrl($data['url']);
|
|
||||||
} catch (Exception $exception) {
|
|
||||||
Notification::make()
|
|
||||||
->title('Import Failed')
|
|
||||||
->body($exception->getMessage())
|
|
||||||
->danger()
|
|
||||||
->send();
|
|
||||||
|
|
||||||
report($exception);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Notification::make()
|
|
||||||
->title('Import Success')
|
|
||||||
->success()
|
|
||||||
->send();
|
|
||||||
})
|
|
||||||
->authorize(fn () => auth()->user()->can('import egg')),
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
28
app/Filament/Components/Actions/ExportEggAction.php
Normal file
28
app/Filament/Components/Actions/ExportEggAction.php
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Components\Actions;
|
||||||
|
|
||||||
|
use App\Models\Egg;
|
||||||
|
use App\Services\Eggs\Sharing\EggExporterService;
|
||||||
|
use Filament\Actions\Action;
|
||||||
|
|
||||||
|
class ExportEggAction extends Action
|
||||||
|
{
|
||||||
|
public static function getDefaultName(): ?string
|
||||||
|
{
|
||||||
|
return 'export';
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
|
||||||
|
$this->label('Export');
|
||||||
|
|
||||||
|
$this->authorize(fn () => auth()->user()->can('export egg'));
|
||||||
|
|
||||||
|
$this->action(fn (EggExporterService $service, Egg $egg) => response()->streamDownload(function () use ($service, $egg) {
|
||||||
|
echo $service->handle($egg->id);
|
||||||
|
}, 'egg-' . $egg->getKebabName() . '.json'));
|
||||||
|
}
|
||||||
|
}
|
87
app/Filament/Components/Actions/ImportEggAction.php
Normal file
87
app/Filament/Components/Actions/ImportEggAction.php
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Components\Actions;
|
||||||
|
|
||||||
|
use App\Services\Eggs\Sharing\EggImporterService;
|
||||||
|
use Exception;
|
||||||
|
use Filament\Actions\Action;
|
||||||
|
use Filament\Forms\Components\FileUpload;
|
||||||
|
use Filament\Forms\Components\Tabs;
|
||||||
|
use Filament\Forms\Components\Tabs\Tab;
|
||||||
|
use Filament\Forms\Components\TextInput;
|
||||||
|
use Filament\Notifications\Notification;
|
||||||
|
use Livewire\Features\SupportFileUploads\TemporaryUploadedFile;
|
||||||
|
|
||||||
|
class ImportEggAction extends Action
|
||||||
|
{
|
||||||
|
public static function getDefaultName(): ?string
|
||||||
|
{
|
||||||
|
return 'import';
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
|
||||||
|
$this->label('Import');
|
||||||
|
|
||||||
|
$this->authorize(fn () => auth()->user()->can('import egg'));
|
||||||
|
|
||||||
|
$this->form([
|
||||||
|
Tabs::make('Tabs')
|
||||||
|
->contained(false)
|
||||||
|
->tabs([
|
||||||
|
Tab::make('From File')
|
||||||
|
->icon('tabler-file-upload')
|
||||||
|
->schema([
|
||||||
|
FileUpload::make('egg')
|
||||||
|
->label('Egg')
|
||||||
|
->hint('This should be the json file ( egg-minecraft.json )')
|
||||||
|
->acceptedFileTypes(['application/json'])
|
||||||
|
->storeFiles(false)
|
||||||
|
->multiple(),
|
||||||
|
]),
|
||||||
|
Tab::make('From URL')
|
||||||
|
->icon('tabler-world-upload')
|
||||||
|
->schema([
|
||||||
|
TextInput::make('url')
|
||||||
|
->label('URL')
|
||||||
|
->hint('This URL should point to a single json file')
|
||||||
|
->url(),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->action(function (array $data, EggImporterService $eggImportService): void {
|
||||||
|
try {
|
||||||
|
if (!empty($data['egg'])) {
|
||||||
|
/** @var TemporaryUploadedFile[] $eggFile */
|
||||||
|
$eggFile = $data['egg'];
|
||||||
|
|
||||||
|
foreach ($eggFile as $file) {
|
||||||
|
$eggImportService->fromFile($file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($data['url'])) {
|
||||||
|
$eggImportService->fromUrl($data['url']);
|
||||||
|
}
|
||||||
|
} catch (Exception $exception) {
|
||||||
|
Notification::make()
|
||||||
|
->title('Import Failed')
|
||||||
|
->body($exception->getMessage())
|
||||||
|
->danger()
|
||||||
|
->send();
|
||||||
|
|
||||||
|
report($exception);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Notification::make()
|
||||||
|
->title('Import Success')
|
||||||
|
->success()
|
||||||
|
->send();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
30
app/Filament/Components/Tables/Actions/ExportEggAction.php
Normal file
30
app/Filament/Components/Tables/Actions/ExportEggAction.php
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Components\Tables\Actions;
|
||||||
|
|
||||||
|
use App\Models\Egg;
|
||||||
|
use App\Services\Eggs\Sharing\EggExporterService;
|
||||||
|
use Filament\Tables\Actions\Action;
|
||||||
|
|
||||||
|
class ExportEggAction extends Action
|
||||||
|
{
|
||||||
|
public static function getDefaultName(): ?string
|
||||||
|
{
|
||||||
|
return 'export';
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
|
||||||
|
$this->label('Export');
|
||||||
|
|
||||||
|
$this->icon('tabler-download');
|
||||||
|
|
||||||
|
$this->authorize(fn () => auth()->user()->can('export egg'));
|
||||||
|
|
||||||
|
$this->action(fn (EggExporterService $service, Egg $egg) => response()->streamDownload(function () use ($service, $egg) {
|
||||||
|
echo $service->handle($egg->id);
|
||||||
|
}, 'egg-' . $egg->getKebabName() . '.json'));
|
||||||
|
}
|
||||||
|
}
|
87
app/Filament/Components/Tables/Actions/ImportEggAction.php
Normal file
87
app/Filament/Components/Tables/Actions/ImportEggAction.php
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Components\Tables\Actions;
|
||||||
|
|
||||||
|
use App\Services\Eggs\Sharing\EggImporterService;
|
||||||
|
use Exception;
|
||||||
|
use Filament\Forms\Components\FileUpload;
|
||||||
|
use Filament\Forms\Components\Tabs;
|
||||||
|
use Filament\Forms\Components\Tabs\Tab;
|
||||||
|
use Filament\Forms\Components\TextInput;
|
||||||
|
use Filament\Notifications\Notification;
|
||||||
|
use Filament\Tables\Actions\Action;
|
||||||
|
use Livewire\Features\SupportFileUploads\TemporaryUploadedFile;
|
||||||
|
|
||||||
|
class ImportEggAction extends Action
|
||||||
|
{
|
||||||
|
public static function getDefaultName(): ?string
|
||||||
|
{
|
||||||
|
return 'import';
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
|
||||||
|
$this->label('Import');
|
||||||
|
|
||||||
|
$this->authorize(fn () => auth()->user()->can('import egg'));
|
||||||
|
|
||||||
|
$this->form([
|
||||||
|
Tabs::make('Tabs')
|
||||||
|
->contained(false)
|
||||||
|
->tabs([
|
||||||
|
Tab::make('From File')
|
||||||
|
->icon('tabler-file-upload')
|
||||||
|
->schema([
|
||||||
|
FileUpload::make('egg')
|
||||||
|
->label('Egg')
|
||||||
|
->hint('This should be the json file ( egg-minecraft.json )')
|
||||||
|
->acceptedFileTypes(['application/json'])
|
||||||
|
->storeFiles(false)
|
||||||
|
->multiple(),
|
||||||
|
]),
|
||||||
|
Tab::make('From URL')
|
||||||
|
->icon('tabler-world-upload')
|
||||||
|
->schema([
|
||||||
|
TextInput::make('url')
|
||||||
|
->label('URL')
|
||||||
|
->hint('This URL should point to a single json file')
|
||||||
|
->url(),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->action(function (array $data, EggImporterService $eggImportService): void {
|
||||||
|
try {
|
||||||
|
if (!empty($data['egg'])) {
|
||||||
|
/** @var TemporaryUploadedFile[] $eggFile */
|
||||||
|
$eggFile = $data['egg'];
|
||||||
|
|
||||||
|
foreach ($eggFile as $file) {
|
||||||
|
$eggImportService->fromFile($file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($data['url'])) {
|
||||||
|
$eggImportService->fromUrl($data['url']);
|
||||||
|
}
|
||||||
|
} catch (Exception $exception) {
|
||||||
|
Notification::make()
|
||||||
|
->title('Import Failed')
|
||||||
|
->body($exception->getMessage())
|
||||||
|
->danger()
|
||||||
|
->send();
|
||||||
|
|
||||||
|
report($exception);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Notification::make()
|
||||||
|
->title('Import Success')
|
||||||
|
->success()
|
||||||
|
->send();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
67
app/Filament/Components/Tables/Actions/UpdateEggAction.php
Normal file
67
app/Filament/Components/Tables/Actions/UpdateEggAction.php
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Components\Tables\Actions;
|
||||||
|
|
||||||
|
use App\Models\Egg;
|
||||||
|
use App\Services\Eggs\Sharing\EggImporterService;
|
||||||
|
use Exception;
|
||||||
|
use Filament\Actions\StaticAction;
|
||||||
|
use Filament\Notifications\Notification;
|
||||||
|
use Filament\Tables\Actions\Action;
|
||||||
|
|
||||||
|
class UpdateEggAction extends Action
|
||||||
|
{
|
||||||
|
public static function getDefaultName(): ?string
|
||||||
|
{
|
||||||
|
return 'update';
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
|
||||||
|
$this->label('Update');
|
||||||
|
|
||||||
|
$this->icon('tabler-cloud-download');
|
||||||
|
|
||||||
|
$this->color('success');
|
||||||
|
|
||||||
|
$this->requiresConfirmation();
|
||||||
|
|
||||||
|
$this->modalHeading('Are you sure you want to update this egg?');
|
||||||
|
|
||||||
|
$this->modalDescription('If you made any changes to the egg they will be overwritten!');
|
||||||
|
|
||||||
|
$this->modalIconColor('danger');
|
||||||
|
|
||||||
|
$this->modalSubmitAction(fn (StaticAction $action) => $action->color('danger'));
|
||||||
|
|
||||||
|
$this->action(function (Egg $egg, EggImporterService $eggImporterService) {
|
||||||
|
try {
|
||||||
|
$eggImporterService->fromUrl($egg->update_url, $egg);
|
||||||
|
|
||||||
|
cache()->forget("eggs.$egg->uuid.update");
|
||||||
|
} catch (Exception $exception) {
|
||||||
|
Notification::make()
|
||||||
|
->title('Egg Update failed')
|
||||||
|
->body($exception->getMessage())
|
||||||
|
->danger()
|
||||||
|
->send();
|
||||||
|
|
||||||
|
report($exception);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Notification::make()
|
||||||
|
->title('Egg updated')
|
||||||
|
->body($egg->name)
|
||||||
|
->success()
|
||||||
|
->send();
|
||||||
|
});
|
||||||
|
|
||||||
|
$this->authorize(fn () => auth()->user()->can('import egg'));
|
||||||
|
|
||||||
|
$this->visible(fn (Egg $egg) => cache()->get("eggs.$egg->uuid.update", false));
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user