2024-02-04 15:54:12 +00:00
|
|
|
<form>
|
2023-10-20 10:34:53 +00:00
|
|
|
<div class="flex flex-col">
|
2023-12-13 13:22:23 +00:00
|
|
|
<h1>Clone</h1>
|
2024-03-20 11:54:06 +00:00
|
|
|
<div class="subtitle ">Quickly clone all resources to a new project or environment.</div>
|
2023-10-20 10:34:53 +00:00
|
|
|
</div>
|
2024-02-04 15:54:12 +00:00
|
|
|
<x-forms.input required id="newName" label="New Name" />
|
|
|
|
<x-forms.button isHighlighted wire:click="clone('project')" class="mt-4">Clone to a new Project</x-forms.button>
|
|
|
|
<x-forms.button isHighlighted wire:click="clone('environment')" class="mt-4">Clone to a new Environment</x-forms.button>
|
2023-10-20 10:34:53 +00:00
|
|
|
<h3 class="pt-4 pb-2">Servers</h3>
|
2024-02-02 10:50:28 +00:00
|
|
|
<div>Choose the server and network to clone the resources to.</div>
|
2023-12-13 13:22:23 +00:00
|
|
|
<div class="flex flex-col gap-4">
|
|
|
|
@foreach ($servers->sortBy('id') as $server)
|
2024-02-02 10:50:28 +00:00
|
|
|
<div class="p-4">
|
|
|
|
<h4>{{ $server->name }}</h4>
|
2023-12-13 13:22:23 +00:00
|
|
|
<div class="pt-4 pb-2">Docker Networks</div>
|
|
|
|
<div class="grid grid-cols-1 gap-2 pb-4 lg:grid-cols-4">
|
|
|
|
@foreach ($server->destinations() as $destination)
|
|
|
|
<div class="cursor-pointer box-without-bg bg-coolgray-200 group"
|
2024-03-24 15:00:25 +00:00
|
|
|
:class="'{{ $selectedDestination === $destination->id }}' && 'bg-coollabs dark:text-white'"
|
2023-12-13 13:22:23 +00:00
|
|
|
wire:click="selectServer('{{ $server->id }}', '{{ $destination->id }}')">
|
|
|
|
{{ $destination->name }}
|
|
|
|
</div>
|
|
|
|
@endforeach
|
2023-10-20 10:34:53 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
2023-12-13 13:22:23 +00:00
|
|
|
|
2023-10-20 10:34:53 +00:00
|
|
|
<h3 class="pt-4 pb-2">Resources</h3>
|
2024-02-02 10:50:28 +00:00
|
|
|
<div>These will be cloned to the new project</div>
|
2024-02-04 15:54:12 +00:00
|
|
|
<div class="grid grid-cols-1 gap-2 pt-4 opacity-95 lg:grid-cols-2 xl:grid-cols-3">
|
2023-10-20 10:34:53 +00:00
|
|
|
@foreach ($environment->applications->sortBy('name') as $application)
|
2024-02-04 15:54:12 +00:00
|
|
|
<div class="cursor-default box-without-bg bg-coolgray-100 group">
|
2023-10-20 10:34:53 +00:00
|
|
|
<div class="flex flex-col">
|
2024-03-24 15:00:25 +00:00
|
|
|
<div class="font-bold dark:text-white">{{ $application->name }}</div>
|
2023-10-20 10:34:53 +00:00
|
|
|
<div class="description">{{ $application->description }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
@foreach ($environment->databases()->sortBy('name') as $database)
|
2024-02-04 15:54:12 +00:00
|
|
|
<div class="cursor-default box-without-bg bg-coolgray-100 group">
|
2023-10-20 10:34:53 +00:00
|
|
|
<div class="flex flex-col">
|
2024-03-24 15:00:25 +00:00
|
|
|
<div class="font-bold dark:text-white">{{ $database->name }}</div>
|
2023-10-20 10:34:53 +00:00
|
|
|
<div class="description">{{ $database->description }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
@foreach ($environment->services->sortBy('name') as $service)
|
2024-02-04 15:54:12 +00:00
|
|
|
<div class="cursor-default box-without-bg bg-coolgray-100 group">
|
2023-10-20 10:34:53 +00:00
|
|
|
<div class="flex flex-col">
|
2024-03-24 15:00:25 +00:00
|
|
|
<div class="font-bold dark:text-white">{{ $service->name }}</div>
|
2023-10-20 10:34:53 +00:00
|
|
|
<div class="description">{{ $service->description }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</form>
|