coolify/app/Http/Livewire/Project/Application/Storages/Add.php

40 lines
921 B
PHP
Raw Normal View History

2023-05-05 12:08:38 +02:00
<?php
namespace App\Http\Livewire\Project\Application\Storages;
use Livewire\Component;
class Add extends Component
{
public $parameters;
public string $name;
public string $mount_path;
public string|null $host_path = null;
2023-05-05 14:20:10 +02:00
protected $listeners = ['clearAddStorage' => 'clear'];
2023-05-05 12:08:38 +02:00
protected $rules = [
'name' => 'required|string',
'mount_path' => 'required|string',
'host_path' => 'string|nullable',
];
public function mount()
{
2023-06-15 09:15:41 +02:00
$this->parameters = getRouteParameters();
2023-05-05 12:08:38 +02:00
}
public function submit()
{
$this->validate();
2023-05-05 14:20:10 +02:00
$this->emitUp('submit', [
'name' => $this->name,
'mount_path' => $this->mount_path,
'host_path' => $this->host_path,
]);
}
public function clear()
{
$this->name = '';
$this->mount_path = '';
$this->host_path = null;
2023-05-05 12:08:38 +02:00
}
}