57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Livewire\Project\Shared\EnvironmentVariable;
 | |
| 
 | |
| use App\Models\EnvironmentVariable as ModelsEnvironmentVariable;
 | |
| use Livewire\Component;
 | |
| use Visus\Cuid2\Cuid2;
 | |
| use Illuminate\Support\Str;
 | |
| 
 | |
| class Show extends Component
 | |
| {
 | |
|     public $parameters;
 | |
|     public ModelsEnvironmentVariable $env;
 | |
|     public ?string $modalId = null;
 | |
|     public bool $isDisabled = false;
 | |
|     public string $type;
 | |
| 
 | |
|     protected $rules = [
 | |
|         'env.key' => 'required|string',
 | |
|         'env.value' => 'nullable',
 | |
|         'env.is_build_time' => 'required|boolean',
 | |
|     ];
 | |
|     protected $validationAttributes = [
 | |
|         'key' => 'key',
 | |
|         'value' => 'value',
 | |
|         'is_build_time' => 'build',
 | |
|     ];
 | |
| 
 | |
|     public function mount()
 | |
|     {
 | |
|         $this->isDisabled = false;
 | |
|         if (Str::of($this->env->key)->startsWith('SERVICE_FQDN') || Str::of($this->env->key)->startsWith('SERVICE_URL')) {
 | |
|             $this->isDisabled = true;
 | |
|         }
 | |
|         $this->modalId = new Cuid2(7);
 | |
|         $this->parameters = get_route_parameters();
 | |
|     }
 | |
| 
 | |
|     public function instantSave()
 | |
|     {
 | |
|         $this->submit();
 | |
|     }
 | |
|     public function submit()
 | |
|     {
 | |
|         $this->validate();
 | |
|         $this->env->save();
 | |
|         $this->emit('success', 'Environment variable updated successfully.');
 | |
|         $this->emit('refreshEnvs');
 | |
|     }
 | |
| 
 | |
|     public function delete()
 | |
|     {
 | |
|         $this->env->delete();
 | |
|         $this->emit('refreshEnvs');
 | |
|     }
 | |
| }
 | 
