7913a639b5
Refactor views.
73 lines
2.1 KiB
PHP
73 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Project\Shared\ScheduledTask;
|
|
|
|
use App\Models\ScheduledTask as ModelsScheduledTask;
|
|
use Livewire\Component;
|
|
use App\Models\Application;
|
|
use App\Models\Service;
|
|
use Visus\Cuid2\Cuid2;
|
|
|
|
class Show extends Component
|
|
{
|
|
public $parameters;
|
|
public Application|Service $resource;
|
|
public ModelsScheduledTask $task;
|
|
public ?string $modalId = null;
|
|
public string $type;
|
|
|
|
protected $rules = [
|
|
'task.name' => 'required|string',
|
|
'task.command' => 'required|string',
|
|
'task.frequency' => 'required|string',
|
|
'task.container' => 'nullable|string',
|
|
];
|
|
protected $validationAttributes = [
|
|
'name' => 'name',
|
|
'command' => 'command',
|
|
'frequency' => 'frequency',
|
|
'container' => 'container',
|
|
];
|
|
|
|
public function mount()
|
|
{
|
|
$this->parameters = get_route_parameters();
|
|
|
|
if (data_get($this->parameters, 'application_uuid')) {
|
|
$this->type = 'application';
|
|
$this->resource = Application::where('uuid', $this->parameters['application_uuid'])->firstOrFail();
|
|
} else if (data_get($this->parameters, 'service_uuid')) {
|
|
$this->type = 'service';
|
|
$this->resource = Service::where('uuid', $this->parameters['service_uuid'])->firstOrFail();
|
|
}
|
|
|
|
$this->modalId = new Cuid2(7);
|
|
$this->task = ModelsScheduledTask::where('uuid', request()->route('task_uuid'))->first();
|
|
}
|
|
|
|
public function submit()
|
|
{
|
|
$this->validate();
|
|
$this->task->save();
|
|
$this->dispatch('success', 'Scheduled task updated successfully.');
|
|
$this->dispatch('refreshTasks');
|
|
}
|
|
|
|
public function delete()
|
|
{
|
|
try {
|
|
$this->task->delete();
|
|
|
|
if ($this->type == 'application') {
|
|
return redirect()->route('project.application.configuration', $this->parameters);
|
|
}
|
|
else {
|
|
return redirect()->route('project.service.configuration', $this->parameters);
|
|
}
|
|
|
|
} catch (\Exception $e) {
|
|
return handleError($e);
|
|
}
|
|
}
|
|
}
|