80 lines
2.4 KiB
Svelte
80 lines
2.4 KiB
Svelte
<script lang="ts">
|
|
import { goto } from '$app/navigation';
|
|
import { session } from '$app/stores';
|
|
|
|
export let payload;
|
|
|
|
import { post } from '$lib/api';
|
|
import Setting from '$lib/components/Setting.svelte';
|
|
import { errorNotification } from '$lib/form';
|
|
import { t } from '$lib/translations';
|
|
|
|
let loading = false;
|
|
|
|
async function handleSubmit() {
|
|
if (loading) return;
|
|
try {
|
|
loading = true;
|
|
await post('/new/destination/check.json', { network: payload.network });
|
|
const { id } = await post('/new/destination/docker.json', {
|
|
...payload
|
|
});
|
|
return await goto(`/destinations/${id}`);
|
|
} catch ({ error }) {
|
|
return errorNotification(error);
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<div class="flex justify-center px-6 pb-8">
|
|
<form on:submit|preventDefault={handleSubmit} class="grid grid-flow-row gap-2 py-4">
|
|
<div class="flex items-center space-x-2 pb-5">
|
|
<div class="title font-bold">{$t('forms.configuration')}</div>
|
|
<button
|
|
type="submit"
|
|
class:bg-sky-600={!loading}
|
|
class:hover:bg-sky-500={!loading}
|
|
disabled={loading}
|
|
>{loading
|
|
? payload.isCoolifyProxyUsed
|
|
? $t('destination.new.saving_and_configuring_proxy')
|
|
: $t('forms.saving')
|
|
: $t('forms.save')}</button
|
|
>
|
|
</div>
|
|
<div class="mt-2 grid grid-cols-2 items-center px-10">
|
|
<label for="name" class="text-base font-bold text-stone-100">{$t('forms.name')}</label>
|
|
<input required name="name" placeholder={$t('forms.name')} bind:value={payload.name} />
|
|
</div>
|
|
|
|
<div class="grid grid-cols-2 items-center px-10">
|
|
<label for="engine" class="text-base font-bold text-stone-100">{$t('forms.engine')}</label>
|
|
<input
|
|
required
|
|
name="engine"
|
|
placeholder="{$t('forms.eg')}: /var/run/docker.sock"
|
|
bind:value={payload.engine}
|
|
/>
|
|
</div>
|
|
<div class="grid grid-cols-2 items-center px-10">
|
|
<label for="network" class="text-base font-bold text-stone-100">{$t('forms.network')}</label>
|
|
<input
|
|
required
|
|
name="network"
|
|
placeholder="{$t('forms.default')}: coolify"
|
|
bind:value={payload.network}
|
|
/>
|
|
</div>
|
|
{#if $session.teamId === '0'}
|
|
<div class="grid grid-cols-2 items-center">
|
|
<Setting
|
|
bind:setting={payload.isCoolifyProxyUsed}
|
|
on:click={() => (payload.isCoolifyProxyUsed = !payload.isCoolifyProxyUsed)}
|
|
title={$t('destination.use_coolify_proxy')}
|
|
description={$t('destination.new.install_proxy')}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
</form>
|
|
</div>
|