mirror of
https://github.com/ershisan99/coolify.git
synced 2026-01-22 05:02:11 +00:00
91 lines
3.0 KiB
Svelte
91 lines
3.0 KiB
Svelte
<script lang="ts">
|
|
import { goto } from '$app/navigation';
|
|
|
|
export let payload;
|
|
|
|
import { post } from '$lib/api';
|
|
import Explainer from '$lib/components/Explainer.svelte';
|
|
import Setting from '$lib/components/Setting.svelte';
|
|
import { errorNotification } from '$lib/form';
|
|
|
|
let loading = false;
|
|
|
|
async function handleSubmit() {
|
|
try {
|
|
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">Configuration</div>
|
|
<button
|
|
type="submit"
|
|
class:bg-sky-600={!loading}
|
|
class:hover:bg-sky-500={!loading}
|
|
disabled={loading}
|
|
>{loading
|
|
? payload.isCoolifyProxyUsed
|
|
? 'Saving and configuring proxy...'
|
|
: 'Saving...'
|
|
: '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">Name</label>
|
|
<input required name="name" placeholder="name" bind:value={payload.name} />
|
|
</div>
|
|
|
|
<div class="grid grid-cols-2 items-center px-10">
|
|
<label for="ipAddress" class="text-base font-bold text-stone-100">IP Address</label>
|
|
<input
|
|
required
|
|
name="ipAddress"
|
|
placeholder="eg: 192.168..."
|
|
bind:value={payload.ipAddress}
|
|
/>
|
|
</div>
|
|
|
|
<div class="grid grid-cols-2 items-center px-10">
|
|
<label for="user" class="text-base font-bold text-stone-100">User</label>
|
|
<input required name="user" placeholder="eg: root" bind:value={payload.user} />
|
|
</div>
|
|
|
|
<div class="grid grid-cols-2 items-center px-10">
|
|
<label for="port" class="text-base font-bold text-stone-100">Port</label>
|
|
<input required name="port" placeholder="eg: 22" bind:value={payload.port} />
|
|
</div>
|
|
<div class="grid grid-cols-2 items-center px-10">
|
|
<label for="sshPrivateKey" class="text-base font-bold text-stone-100">SSH Private Key</label>
|
|
<textarea
|
|
rows="10"
|
|
class="resize-none"
|
|
required
|
|
name="sshPrivateKey"
|
|
placeholder="eg: -----BEGIN...."
|
|
bind:value={payload.sshPrivateKey}
|
|
/>
|
|
</div>
|
|
|
|
<div class="grid grid-cols-2 items-center px-10">
|
|
<label for="network" class="text-base font-bold text-stone-100">Network</label>
|
|
<input required name="network" placeholder="default: coolify" bind:value={payload.network} />
|
|
</div>
|
|
<div class="grid grid-cols-2 items-center">
|
|
<Setting
|
|
bind:setting={payload.isCoolifyProxyUsed}
|
|
on:click={() => (payload.isCoolifyProxyUsed = !payload.isCoolifyProxyUsed)}
|
|
title="Use Coolify Proxy?"
|
|
description="This will install a proxy on the destination to allow you to access your applications and services without any manual configuration (recommended for Docker).<br><br>Databases will have their own proxy."
|
|
/>
|
|
</div>
|
|
</form>
|
|
</div>
|