mirror of
https://github.com/ershisan99/coolify.git
synced 2026-01-04 05:02:12 +00:00
146 lines
4.5 KiB
Svelte
146 lines
4.5 KiB
Svelte
<script context="module" lang="ts">
|
|
import type { Load } from '@sveltejs/kit';
|
|
function checkConfiguration(destination: any): string | null {
|
|
let configurationPhase = null;
|
|
if (!destination?.remoteEngine) return configurationPhase;
|
|
if (!destination?.sshKey) {
|
|
configurationPhase = 'sshkey';
|
|
}
|
|
return configurationPhase;
|
|
}
|
|
export const load: Load = async ({ url, params }) => {
|
|
try {
|
|
const { id } = params;
|
|
const response = await get(`/destinations/${id}`);
|
|
const { destination, settings } = response;
|
|
if (id !== 'new' && (!destination || Object.entries(destination).length === 0)) {
|
|
return {
|
|
status: 302,
|
|
redirect: '/'
|
|
};
|
|
}
|
|
const configurationPhase = checkConfiguration(destination);
|
|
if (
|
|
configurationPhase &&
|
|
url.pathname !== `/destinations/${params.id}/configuration/${configurationPhase}`
|
|
) {
|
|
return {
|
|
status: 302,
|
|
redirect: `/destinations/${params.id}/configuration/${configurationPhase}`
|
|
};
|
|
}
|
|
|
|
return {
|
|
props: {
|
|
destination
|
|
},
|
|
stuff: {
|
|
destination,
|
|
settings
|
|
}
|
|
};
|
|
} catch (error) {
|
|
return handlerNotFoundLoad(error, url);
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export let destination: any;
|
|
|
|
import { del, get } from '$lib/api';
|
|
import { t } from '$lib/translations';
|
|
import { goto } from '$app/navigation';
|
|
import { page } from '$app/stores';
|
|
import { errorNotification, handlerNotFoundLoad } from '$lib/common';
|
|
import { appSession } from '$lib/store';
|
|
import DeleteIcon from '$lib/components/DeleteIcon.svelte';
|
|
import Tooltip from '$lib/components/Tooltip.svelte';
|
|
|
|
const isDestinationDeletable =
|
|
(destination?.application.length === 0 &&
|
|
destination?.database.length === 0 &&
|
|
destination?.service.length === 0) ||
|
|
true;
|
|
|
|
async function deleteDestination(destination: any) {
|
|
if (!isDestinationDeletable) return;
|
|
const sure = confirm($t('application.confirm_to_delete', { name: destination.name }));
|
|
if (sure) {
|
|
try {
|
|
await del(`/destinations/${destination.id}`, { id: destination.id });
|
|
return await goto('/', { replaceState: true });
|
|
} catch (error) {
|
|
return errorNotification(error);
|
|
}
|
|
}
|
|
}
|
|
async function forceDeleteDestination(destination: any) {
|
|
let sure = confirm($t('application.confirm_to_delete', { name: destination.name }));
|
|
if (sure) {
|
|
sure = confirm(
|
|
'Are you REALLY sure? This will delete all resources associated with this destination, but not on the destination (server) itself. You will have manually delete everything on the server afterwards.'
|
|
);
|
|
if (sure) {
|
|
sure = confirm('REALLY?');
|
|
if (sure) {
|
|
try {
|
|
await del(`/destinations/${destination.id}/force`, { id: destination.id });
|
|
return await goto('/', { replaceState: true });
|
|
} catch (error) {
|
|
return errorNotification(error);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function deletable() {
|
|
if (!isDestinationDeletable) {
|
|
return 'Please delete all resources before deleting this.';
|
|
}
|
|
if ($appSession.isAdmin) {
|
|
return $t('destination.delete_destination');
|
|
} else {
|
|
return $t('destination.permission_denied_delete_destination');
|
|
}
|
|
}
|
|
</script>
|
|
|
|
{#if $page.params.id !== 'new'}
|
|
<nav class="header lg:flex-row flex-col-reverse gap-2">
|
|
<div class="flex flex-row space-x-2 font-bold pt-10 lg:pt-0">
|
|
<div class="flex flex-col items-center justify-center title">
|
|
{#if $page.url.pathname === `/destinations/${$page.params.id}`}
|
|
Configurations
|
|
{:else if $page.url.pathname.startsWith(`/destinations/${$page.params.id}/configuration/sshkey`)}
|
|
Select a SSH Key
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
<div class="lg:block hidden flex-1" />
|
|
<div class="flex flex-row flex-wrap space-x-3 justify-center lg:justify-start lg:py-0">
|
|
<button
|
|
id="delete"
|
|
on:click={() => deleteDestination(destination)}
|
|
type="submit"
|
|
disabled={!$appSession.isAdmin && isDestinationDeletable}
|
|
class:hover:text-red-500={$appSession.isAdmin && isDestinationDeletable}
|
|
class="icons bg-transparent text-sm"
|
|
class:text-stone-600={!isDestinationDeletable}><DeleteIcon /></button
|
|
>
|
|
<Tooltip triggeredBy="#delete">{deletable()}</Tooltip>
|
|
</div>
|
|
<div class="flex flex-row flex-wrap justify-center lg:justify-start lg:py-0 items-center">
|
|
<button
|
|
id="forceDelete"
|
|
on:click={() => forceDeleteDestination(destination)}
|
|
type="submit"
|
|
disabled={!$appSession.isAdmin && isDestinationDeletable}
|
|
class="icons bg-transparent text-sm text-red-500"><DeleteIcon /></button
|
|
>
|
|
<Tooltip triggeredBy="#forceDelete">Force Delete</Tooltip>
|
|
</div>
|
|
</nav>
|
|
{/if}
|
|
<slot />
|