2023-05-05 10:08:38 +00:00
|
|
|
<?php
|
|
|
|
|
2023-08-07 20:14:21 +00:00
|
|
|
namespace App\Http\Livewire\Project\Shared\Storages;
|
2023-05-05 10:08:38 +00:00
|
|
|
|
|
|
|
use Livewire\Component;
|
2023-07-13 11:16:24 +00:00
|
|
|
use Visus\Cuid2\Cuid2;
|
2023-05-05 10:08:38 +00:00
|
|
|
|
|
|
|
class Show extends Component
|
|
|
|
{
|
|
|
|
public $storage;
|
2023-07-13 11:16:24 +00:00
|
|
|
public string|null $modalId = null;
|
2023-05-05 10:08:38 +00:00
|
|
|
protected $rules = [
|
|
|
|
'storage.name' => 'required|string',
|
|
|
|
'storage.mount_path' => 'required|string',
|
|
|
|
'storage.host_path' => 'string|nullable',
|
|
|
|
];
|
2023-06-16 10:35:40 +00:00
|
|
|
protected $validationAttributes = [
|
|
|
|
'name' => 'name',
|
|
|
|
'mount_path' => 'mount',
|
|
|
|
'host_path' => 'host',
|
|
|
|
];
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-07-13 11:16:24 +00:00
|
|
|
public function mount()
|
|
|
|
{
|
|
|
|
$this->modalId = new Cuid2(7);
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-05-05 10:08:38 +00:00
|
|
|
public function submit()
|
|
|
|
{
|
|
|
|
$this->validate();
|
|
|
|
$this->storage->save();
|
2023-06-22 08:04:39 +00:00
|
|
|
$this->emit('success', 'Storage updated successfully');
|
2023-05-05 10:08:38 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-05-05 10:08:38 +00:00
|
|
|
public function delete()
|
|
|
|
{
|
|
|
|
$this->storage->delete();
|
|
|
|
$this->emit('refreshStorages');
|
|
|
|
}
|
|
|
|
}
|