Dr-Panel/app/Filament/Resources/TreatmentResource.php

278 lines
12 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Filament\Resources;
use App\Filament\Resources\TreatmentResource\Pages;
use App\Models\Treatment;
use App\Services\PdfService;
use Filament\Actions\Action;
use Filament\Actions\ActionGroup;
use Filament\Actions\BulkAction;
use Filament\Actions\BulkActionGroup;
use Filament\Actions\DeleteAction;
use Filament\Actions\DeleteBulkAction;
use Filament\Actions\EditAction;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Components\Textarea;
use Filament\Resources\Resource;
use Filament\Schemas\Components\Grid;
use Filament\Schemas\Components\Section;
use Filament\Schemas\Schema;
use Filament\Support\Enums\FontWeight;
use Filament\Tables\Columns\TextColumn;
use Filament\Tables\Table;
use Illuminate\Support\Collection;
use OpenSpout\Common\Entity\Row;
use OpenSpout\Writer\XLSX\Writer;
class TreatmentResource extends Resource
{
protected static ?string $model = Treatment::class;
protected static ?string $recordTitleAttribute = 'treatment_name';
public static function getNavigationIcon(): \BackedEnum|string|null
{
return 'heroicon-o-clipboard-document-list';
}
public static function getNavigationGroup(): ?string
{
return __('navigation.groups.diseases');
}
public static function getNavigationSort(): ?int
{
return 2;
}
public static function getNavigationLabel(): string
{
return __('navigation.treatments.title');
}
public static function getModelLabel(): string
{
return __('navigation.treatments.singular');
}
public static function getPluralModelLabel(): string
{
return __('navigation.treatments.title');
}
public static function form(Schema $schema): Schema
{
return $schema
->components([
Grid::make()
->schema([
Section::make()
->schema([
TextInput::make('treatment_type')
->label(__('treatments.fields.treatment_type'))
->maxLength(50),
TextInput::make('treatment_name')
->label(__('treatments.fields.treatment_name'))
->required()
->maxLength(50),
TextInput::make('treatment_cost')
->label(__('treatments.fields.treatment_cost'))
->numeric()
->minValue(0),
Textarea::make('descriptions')
->label(__('treatments.fields.descriptions'))
->rows(3)
->columnSpanFull(),
])
->columns(2)
->columnSpanFull()
->footerActions([
fn (string $operation) => Action::make('create')
->label(__('filament-panels::resources/pages/create-record.form.actions.create.label'))
->submit('create')
->keyBindings(['mod+s'])
->visible($operation === 'create'),
fn (string $operation) => Action::make('createAnother')
->label(__('filament-panels::resources/pages/create-record.form.actions.create_another.label'))
->action('createAnother')
->keyBindings(['mod+shift+s'])
->color('gray')
->visible($operation === 'create'),
fn (string $operation) => Action::make('cancelCreate')
->label(__('filament-panels::resources/pages/create-record.form.actions.cancel.label'))
->url(static::getUrl('index'))
->color('gray')
->visible($operation === 'create'),
fn (string $operation) => Action::make('save')
->label(__('filament-panels::resources/pages/edit-record.form.actions.save.label'))
->submit('save')
->keyBindings(['mod+s'])
->visible($operation === 'edit'),
fn (string $operation) => Action::make('cancelEdit')
->label(__('filament-panels::resources/pages/edit-record.form.actions.cancel.label'))
->url(static::getUrl('index'))
->color('gray')
->visible($operation === 'edit'),
]),
])
->columnSpanFull(),
]);
}
public static function table(Table $table): Table
{
return $table
->columns([
TextColumn::make('treatment_name')
->label(__('treatments.fields.treatment_name'))
->weight(FontWeight::Medium)
->searchable()
->sortable(),
TextColumn::make('treatment_type')
->label(__('treatments.fields.treatment_type'))
->badge()
->color('primary')
->placeholder('-')
->sortable(),
TextColumn::make('treatment_cost')
->label(__('treatments.fields.treatment_cost'))
->numeric(thousandsSeparator: ',')
->placeholder('-')
->sortable(),
TextColumn::make('descriptions')
->label(__('treatments.fields.descriptions'))
->limit(40)
->placeholder('-'),
TextColumn::make('created_at')
->label(__('treatments.fields.created_at'))
->sortable(),
])
->recordActions([
EditAction::make(),
DeleteAction::make(),
])
->toolbarActions([
BulkActionGroup::make([
DeleteBulkAction::make(),
BulkAction::make('export_excel_selected')
->label(__('table.export_excel_selected'))
->icon('heroicon-o-table-cells')
->color('success')
->action(function (Collection $records) {
$tempPath = tempnam(sys_get_temp_dir(), 'export_') . '.xlsx';
$writer = new Writer();
$writer->openToFile($tempPath);
$writer->addRow(Row::fromValues([
'ID',
__('treatments.fields.treatment_name'),
__('treatments.fields.treatment_type'),
__('treatments.fields.treatment_cost'),
__('treatments.fields.descriptions'),
]));
foreach ($records as $record) {
$writer->addRow(Row::fromValues([
$record->id,
$record->treatment_name,
$record->treatment_type,
$record->treatment_cost,
$record->descriptions,
]));
}
$writer->close();
return response()->streamDownload(function () use ($tempPath) {
readfile($tempPath);
@unlink($tempPath);
}, 'treatments-' . now()->format('Y-m-d') . '.xlsx', [
'Content-Type' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
]);
}),
]),
ActionGroup::make([
Action::make('export_excel')
->label(__('table.export_excel'))
->color('success')
->icon('heroicon-o-table-cells')
->action(function () {
$records = Treatment::orderBy('treatment_type')->orderBy('treatment_name')->get();
$tempPath = tempnam(sys_get_temp_dir(), 'export_') . '.xlsx';
$writer = new Writer();
$writer->openToFile($tempPath);
$writer->addRow(Row::fromValues([
'ID',
__('treatments.fields.treatment_name'),
__('treatments.fields.treatment_type'),
__('treatments.fields.treatment_cost'),
__('treatments.fields.descriptions'),
]));
foreach ($records as $record) {
$writer->addRow(Row::fromValues([
$record->id,
$record->treatment_name,
$record->treatment_type,
$record->treatment_cost,
$record->descriptions,
]));
}
$writer->close();
return response()->streamDownload(function () use ($tempPath) {
readfile($tempPath);
@unlink($tempPath);
}, 'treatments-' . now()->format('Y-m-d') . '.xlsx', [
'Content-Type' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
]);
}),
Action::make('export_pdf')
->label(__('table.export_pdf'))
->color('danger')
->icon('heroicon-o-document-arrow-down')
->action(function () {
$records = Treatment::orderBy('treatment_type')->orderBy('treatment_name')->get();
return PdfService::download(
'exports.treatments-pdf',
['records' => $records],
'treatments-' . now()->format('Y-m-d') . '.pdf',
);
}),
])
->label(__('table.export'))
->color('orange')
->button(),
]);
}
public static function getPages(): array
{
return [
'index' => Pages\ListTreatments::route('/'),
'create' => Pages\CreateTreatment::route('/create'),
'edit' => Pages\EditTreatment::route('/{record}/edit'),
];
}
}