Add service_type field to Create.php and EditCompose.php

This commit is contained in:
Andras Bacsai 2024-04-16 10:44:23 +02:00
parent e7e6c76b4e
commit 1802d5d5da
4 changed files with 36 additions and 5 deletions

View File

@ -64,6 +64,7 @@ public function mount()
'name' => "$oneClickServiceName-" . str()->random(10), 'name' => "$oneClickServiceName-" . str()->random(10),
'docker_compose_raw' => base64_decode($oneClickService), 'docker_compose_raw' => base64_decode($oneClickService),
'environment_id' => $environment->id, 'environment_id' => $environment->id,
'service_type' => $oneClickServiceName,
'server_id' => (int) $server_id, 'server_id' => (int) $server_id,
'destination_id' => $destination->id, 'destination_id' => $destination->id,
'destination_type' => $destination->getMorphClass(), 'destination_type' => $destination->getMorphClass(),

View File

@ -13,11 +13,13 @@ class EditCompose extends Component
'service.docker_compose_raw' => 'required', 'service.docker_compose_raw' => 'required',
'service.docker_compose' => 'required', 'service.docker_compose' => 'required',
]; ];
public function mount() { public function mount()
{
$this->service = Service::find($this->serviceId); $this->service = Service::find($this->serviceId);
} }
public function saveEditedCompose() { public function saveEditedCompose()
{
$this->dispatch('info', "Saving new docker compose..."); $this->dispatch('info', "Saving new docker compose...");
$this->dispatch('saveCompose', $this->service->docker_compose_raw); $this->dispatch('saveCompose', $this->service->docker_compose_raw);
} }

View File

@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('services', function (Blueprint $table) {
$table->string('service_type')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('services', function (Blueprint $table) {
$table->dropColumn('service_type');
});
}
};

View File

@ -12,16 +12,16 @@
</x-forms.textarea> </x-forms.textarea>
</div> </div>
<div class="flex justify-end w-full gap-2 pt-4"> <div class="flex justify-end w-full gap-2 pt-4">
<div class="flex items-end gap-2"> <div class="flex items-end gap-2">
<div x-cloak x-show="raw"> <div x-cloak x-show="raw">
<x-forms.button class="w-64" @click.prevent="raw = !raw">Show Deployable Compose</x-forms.button> <x-forms.button class="w-64" @click.prevent="raw = !raw">Show Deployable Compose</x-forms.button>
</div> </div>
<div x-cloak x-show="raw === false"> <div x-cloak x-show="raw === false">
<x-forms.button class="w-64" @click.prevent="raw = !raw">Show Source <x-forms.button class="w-64" @click.prevent="raw = !raw">Show Source
Compose</x-forms.button> Compose</x-forms.button>
</div> </div>
</div> </div>
<div class="flex-1"></div>
<x-forms.button class="w-64" wire:click.prevent='saveEditedCompose'> <x-forms.button class="w-64" wire:click.prevent='saveEditedCompose'>
Save Save
</x-forms.button> </x-forms.button>