2023-05-04 20:29:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Livewire\Project\Application\EnvironmentVariable;
|
|
|
|
|
|
|
|
use App\Models\Application;
|
|
|
|
use App\Models\EnvironmentVariable;
|
|
|
|
use Illuminate\Database\QueryException;
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
class Add extends Component
|
|
|
|
{
|
|
|
|
public $parameters;
|
|
|
|
public string $key;
|
|
|
|
public string $value;
|
|
|
|
public bool $is_build_time = false;
|
|
|
|
|
2023-05-05 12:20:10 +00:00
|
|
|
protected $listeners = ['clearAddEnv' => 'clear'];
|
2023-05-05 07:28:00 +00:00
|
|
|
protected $rules = [
|
|
|
|
'key' => 'required|string',
|
|
|
|
'value' => 'required|string',
|
|
|
|
'is_build_time' => 'required|boolean',
|
|
|
|
];
|
2023-05-04 20:29:14 +00:00
|
|
|
public function mount()
|
|
|
|
{
|
2023-05-08 11:36:49 +00:00
|
|
|
$this->parameters = getParameters();
|
2023-05-04 20:29:14 +00:00
|
|
|
}
|
|
|
|
public function submit()
|
|
|
|
{
|
2023-05-05 07:28:00 +00:00
|
|
|
$this->validate();
|
2023-05-05 12:20:10 +00:00
|
|
|
$this->emitUp('submit', [
|
|
|
|
'key' => $this->key,
|
|
|
|
'value' => $this->value,
|
|
|
|
'is_build_time' => $this->is_build_time,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
public function clear()
|
|
|
|
{
|
|
|
|
$this->key = '';
|
|
|
|
$this->value = '';
|
|
|
|
$this->is_build_time = false;
|
2023-05-04 20:29:14 +00:00
|
|
|
}
|
|
|
|
}
|