64 lines
2.5 KiB
PHP
64 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Manage\Cooperations\Actions\Proposal;
|
|
|
|
use App\Enums\ApprovalStatus;
|
|
use App\Enums\RoleEnum;
|
|
use App\Filament\Resources\Manage\Cooperations\CooperationResource;
|
|
use App\Models\CooperationProposal;
|
|
use App\Models\User;
|
|
use App\Notifications\BroadcastNotification;
|
|
use Filament\Actions\Action;
|
|
use Filament\Forms\Components\Textarea;
|
|
use Filament\Notifications\Notification;
|
|
use Filament\Support\Enums\Width;
|
|
use Filament\Support\Icons\Heroicon;
|
|
|
|
class RejectAction extends Action
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->label('Tolak')
|
|
->icon(Heroicon::XMark)
|
|
->color('danger')
|
|
->schema([
|
|
Textarea::make('reason')
|
|
->label('Alasan Penolakan')
|
|
->placeholder('Jelaskan alasan pengajuan ditolak...')
|
|
->required(),
|
|
])
|
|
->action(function (CooperationProposal $record, array $data): void {
|
|
$record->update([
|
|
'status' => ApprovalStatus::REJECTED,
|
|
'responded_at' => now(),
|
|
]);
|
|
|
|
$record->rejectionReasons()->create(['reason' => $data['reason']]);
|
|
|
|
Notification::make()
|
|
->title('Berhasil Diproses! ✨')
|
|
->body("Proposal dari {$record->partnerMedia->name} telah ditolak. Notifikasi sudah dikirim! 🙏")
|
|
->warning()
|
|
->send();
|
|
|
|
// Notify User (Partner)
|
|
$partnerUser = $record->partnerMedia?->company?->user;
|
|
if ($partnerUser) {
|
|
$partnerUser->notify(new BroadcastNotification([
|
|
'title' => 'Maaf, Proposal Belum Diterima 😔',
|
|
'body' => "Yah, maaf banget... proposal kerja sama Anda belum bisa kami terima saat ini. 💔\n\nAlasan: {$data['reason']}",
|
|
'action' => [
|
|
Action::make('view')
|
|
->label('Lihat')
|
|
->url(CooperationResource::getUrl('view', ['record' => $record->cooperation_id])),
|
|
],
|
|
]));
|
|
}
|
|
})
|
|
->visible(fn (CooperationProposal $record): bool => ! auth()->user()->hasRole(RoleEnum::PERUSAHAAN->value) && $record->status === ApprovalStatus::PENDING)
|
|
->modalWidth(Width::Large);
|
|
}
|
|
}
|