refactor add environment + remove unnecessary livewire component
This commit is contained in:
@@ -1,44 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Livewire\Project;
|
|
||||||
|
|
||||||
use App\Models\Environment;
|
|
||||||
use App\Models\Project;
|
|
||||||
use Livewire\Component;
|
|
||||||
|
|
||||||
class AddEnvironment extends Component
|
|
||||||
{
|
|
||||||
public Project $project;
|
|
||||||
|
|
||||||
public string $name = '';
|
|
||||||
|
|
||||||
public string $description = '';
|
|
||||||
|
|
||||||
protected $rules = [
|
|
||||||
'name' => 'required|string|min:3',
|
|
||||||
];
|
|
||||||
|
|
||||||
protected $validationAttributes = [
|
|
||||||
'name' => 'Environment Name',
|
|
||||||
];
|
|
||||||
|
|
||||||
public function submit()
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$this->validate();
|
|
||||||
$environment = Environment::create([
|
|
||||||
'name' => $this->name,
|
|
||||||
'project_id' => $this->project->id,
|
|
||||||
]);
|
|
||||||
|
|
||||||
return redirect()->route('project.resource.index', [
|
|
||||||
'project_uuid' => $this->project->uuid,
|
|
||||||
'environment_name' => $environment->name,
|
|
||||||
]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
handleError($e, $this);
|
|
||||||
} finally {
|
|
||||||
$this->name = '';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -2,27 +2,46 @@
|
|||||||
|
|
||||||
namespace App\Livewire\Project;
|
namespace App\Livewire\Project;
|
||||||
|
|
||||||
|
use App\Models\Environment;
|
||||||
use App\Models\Project;
|
use App\Models\Project;
|
||||||
|
use Livewire\Attributes\Rule;
|
||||||
use Livewire\Component;
|
use Livewire\Component;
|
||||||
|
|
||||||
class Show extends Component
|
class Show extends Component
|
||||||
{
|
{
|
||||||
public Project $project;
|
public Project $project;
|
||||||
|
|
||||||
public $environments;
|
#[Rule(['required', 'string', 'min:3'])]
|
||||||
|
public string $name;
|
||||||
|
|
||||||
public function mount()
|
#[Rule(['nullable', 'string'])]
|
||||||
|
public ?string $description = null;
|
||||||
|
|
||||||
|
public function mount(string $project_uuid)
|
||||||
{
|
{
|
||||||
$projectUuid = request()->route('project_uuid');
|
try {
|
||||||
$teamId = currentTeam()->id;
|
$this->project = Project::where('team_id', currentTeam()->id)->where('uuid', $project_uuid)->firstOrFail();
|
||||||
|
} catch (\Throwable $e) {
|
||||||
$project = Project::where('team_id', $teamId)->where('uuid', $projectUuid)->first();
|
return handleError($e, $this);
|
||||||
if (! $project) {
|
}
|
||||||
return redirect()->route('dashboard');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->environments = $project->environments->sortBy('created_at');
|
public function submit()
|
||||||
$this->project = $project;
|
{
|
||||||
|
try {
|
||||||
|
$this->validate();
|
||||||
|
$environment = Environment::create([
|
||||||
|
'name' => $this->name,
|
||||||
|
'project_id' => $this->project->id,
|
||||||
|
]);
|
||||||
|
|
||||||
|
return redirect()->route('project.resource.index', [
|
||||||
|
'project_uuid' => $this->project->uuid,
|
||||||
|
'environment_name' => $environment->name,
|
||||||
|
]);
|
||||||
|
} catch (\Throwable $e) {
|
||||||
|
handleError($e, $this);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function render()
|
public function render()
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
<form class="flex flex-col w-full gap-2 rounded" wire:submit='submit'>
|
|
||||||
<x-forms.input placeholder="production" id="name" label="Name" required />
|
|
||||||
<x-forms.button type="submit" @click="slideOverOpen=false">
|
|
||||||
Save
|
|
||||||
</x-forms.button>
|
|
||||||
</form>
|
|
||||||
@@ -5,13 +5,18 @@
|
|||||||
<div class="flex items-center gap-2">
|
<div class="flex items-center gap-2">
|
||||||
<h1>Environments</h1>
|
<h1>Environments</h1>
|
||||||
<x-modal-input buttonTitle="+ Add" title="New Environment">
|
<x-modal-input buttonTitle="+ Add" title="New Environment">
|
||||||
<livewire:project.add-environment :project="$project" />
|
<form class="flex flex-col w-full gap-2 rounded" wire:submit='submit'>
|
||||||
|
<x-forms.input placeholder="production" id="name" label="Name" required />
|
||||||
|
<x-forms.button type="submit">
|
||||||
|
Save
|
||||||
|
</x-forms.button>
|
||||||
|
</form>
|
||||||
</x-modal-input>
|
</x-modal-input>
|
||||||
<livewire:project.delete-project :disabled="$project->resource_count() > 0" :project_id="$project->id" />
|
<livewire:project.delete-project :disabled="$project->resource_count() > 0" :project_id="$project->id" />
|
||||||
</div>
|
</div>
|
||||||
<div class="text-xs truncate subtitle lg:text-sm">{{ $project->name }}.</div>
|
<div class="text-xs truncate subtitle lg:text-sm">{{ $project->name }}.</div>
|
||||||
<div class="grid gap-2 lg:grid-cols-2">
|
<div class="grid gap-2 lg:grid-cols-2">
|
||||||
@forelse ($environments as $environment)
|
@forelse ($project->environments->sortBy('created_at') as $environment)
|
||||||
<div class="gap-2 border border-transparent cursor-pointer box group" x-data
|
<div class="gap-2 border border-transparent cursor-pointer box group" x-data
|
||||||
x-on:click="goto('{{ $project->uuid }}','{{ $environment->name }}')">
|
x-on:click="goto('{{ $project->uuid }}','{{ $environment->name }}')">
|
||||||
<div class="flex flex-1 mx-6">
|
<div class="flex flex-1 mx-6">
|
||||||
@@ -28,12 +33,6 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{-- <div class="flex items-center justify-center gap-2 pt-4 pb-2 mr-4 text-xs lg:py-0 lg:justify-normal">
|
|
||||||
<a class="mx-4 font-bold hover:underline"
|
|
||||||
href="{{ route('project.environment.edit', ['project_uuid' => data_get($project, 'uuid'), 'environment_name' => $environment->name]) }}">
|
|
||||||
Settings
|
|
||||||
</a>
|
|
||||||
</div> --}}
|
|
||||||
</div>
|
</div>
|
||||||
@empty
|
@empty
|
||||||
<p>No environments found.</p>
|
<p>No environments found.</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user