2024-05-28 19:04:19 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import { v4 as uuidv4 } from 'uuid';
|
|
|
|
|
2024-05-30 04:26:57 +00:00
|
|
|
import { toast } from 'svelte-sonner';
|
|
|
|
import { models } from '$lib/stores';
|
2024-05-28 20:05:31 +00:00
|
|
|
import { getContext, onMount, tick } from 'svelte';
|
2024-05-28 19:04:19 +00:00
|
|
|
import type { Writable } from 'svelte/store';
|
|
|
|
import type { i18n as i18nType } from 'i18next';
|
2024-05-28 20:05:31 +00:00
|
|
|
import {
|
|
|
|
getPipelineValves,
|
|
|
|
getPipelineValvesSpec,
|
|
|
|
updatePipelineValves,
|
2024-05-28 23:12:54 +00:00
|
|
|
getPipelines,
|
2024-05-30 04:26:57 +00:00
|
|
|
getModels,
|
|
|
|
getPipelinesList
|
2024-05-28 20:05:31 +00:00
|
|
|
} from '$lib/apis';
|
2024-05-30 04:26:57 +00:00
|
|
|
|
2024-05-28 19:32:49 +00:00
|
|
|
import Spinner from '$lib/components/common/Spinner.svelte';
|
|
|
|
|
2024-05-28 19:04:19 +00:00
|
|
|
const i18n: Writable<i18nType> = getContext('i18n');
|
|
|
|
|
|
|
|
export let saveHandler: Function;
|
|
|
|
|
2024-05-30 04:26:57 +00:00
|
|
|
let PIPELINES_LIST = null;
|
|
|
|
let selectedPipelinesUrlIdx = '';
|
|
|
|
|
2024-05-28 19:32:49 +00:00
|
|
|
let pipelines = null;
|
2024-05-28 20:05:31 +00:00
|
|
|
|
2024-05-28 19:32:49 +00:00
|
|
|
let valves = null;
|
2024-05-28 20:05:31 +00:00
|
|
|
let valves_spec = null;
|
|
|
|
let selectedPipelineIdx = null;
|
|
|
|
|
|
|
|
const updateHandler = async () => {
|
|
|
|
const pipeline = pipelines[selectedPipelineIdx];
|
2024-05-28 19:32:49 +00:00
|
|
|
|
2024-05-28 20:05:31 +00:00
|
|
|
if (pipeline && (pipeline?.pipeline?.valves ?? false)) {
|
2024-05-29 01:24:39 +00:00
|
|
|
if (valves?.pipelines ?? false) {
|
|
|
|
valves.pipelines = valves.pipelines.split(',').map((v) => v.trim());
|
|
|
|
}
|
|
|
|
|
2024-05-28 20:05:31 +00:00
|
|
|
const res = await updatePipelineValves(localStorage.token, pipeline.id, valves).catch(
|
|
|
|
(error) => {
|
|
|
|
toast.error(error);
|
|
|
|
}
|
|
|
|
);
|
2024-05-28 19:04:19 +00:00
|
|
|
|
2024-05-28 20:05:31 +00:00
|
|
|
if (res) {
|
|
|
|
toast.success('Valves updated successfully');
|
2024-05-28 22:47:14 +00:00
|
|
|
setPipelines();
|
2024-05-28 23:12:54 +00:00
|
|
|
models.set(await getModels(localStorage.token));
|
2024-05-28 20:05:31 +00:00
|
|
|
saveHandler();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
toast.error('No valves to update');
|
|
|
|
}
|
|
|
|
};
|
2024-05-28 19:32:49 +00:00
|
|
|
|
2024-05-28 23:12:54 +00:00
|
|
|
const getValves = async (idx) => {
|
2024-05-30 04:26:57 +00:00
|
|
|
valves = null;
|
|
|
|
valves_spec = null;
|
|
|
|
|
2024-05-28 23:12:54 +00:00
|
|
|
valves_spec = await getPipelineValvesSpec(localStorage.token, pipelines[idx].id);
|
|
|
|
valves = await getPipelineValves(localStorage.token, pipelines[idx].id);
|
2024-05-29 01:24:39 +00:00
|
|
|
|
|
|
|
if (valves?.pipelines ?? false) {
|
|
|
|
valves.pipelines = valves.pipelines.join(',');
|
|
|
|
}
|
2024-05-28 23:12:54 +00:00
|
|
|
};
|
|
|
|
|
2024-05-28 22:47:14 +00:00
|
|
|
const setPipelines = async () => {
|
2024-05-30 04:26:57 +00:00
|
|
|
pipelines = null;
|
|
|
|
valves = null;
|
|
|
|
valves_spec = null;
|
|
|
|
|
|
|
|
pipelines = await getPipelines(localStorage.token, selectedPipelinesUrlIdx);
|
2024-05-28 20:05:31 +00:00
|
|
|
|
|
|
|
if (pipelines.length > 0) {
|
|
|
|
selectedPipelineIdx = 0;
|
2024-05-28 23:12:54 +00:00
|
|
|
await getValves(selectedPipelineIdx);
|
2024-05-28 20:05:31 +00:00
|
|
|
}
|
2024-05-28 22:47:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
onMount(async () => {
|
2024-05-30 04:26:57 +00:00
|
|
|
PIPELINES_LIST = await getPipelinesList(localStorage.token);
|
|
|
|
|
|
|
|
if (PIPELINES_LIST.length > 0) {
|
|
|
|
selectedPipelinesUrlIdx = PIPELINES_LIST[0]['idx'];
|
|
|
|
}
|
|
|
|
|
2024-05-28 22:47:14 +00:00
|
|
|
setPipelines();
|
2024-05-28 19:04:19 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<form
|
|
|
|
class="flex flex-col h-full justify-between space-y-3 text-sm"
|
|
|
|
on:submit|preventDefault={async () => {
|
2024-05-28 20:05:31 +00:00
|
|
|
updateHandler();
|
2024-05-28 19:04:19 +00:00
|
|
|
}}
|
|
|
|
>
|
2024-05-28 19:32:49 +00:00
|
|
|
<div class=" space-y-2 pr-1.5 overflow-y-scroll max-h-80 h-full">
|
2024-05-30 04:26:57 +00:00
|
|
|
{#if PIPELINES_LIST !== null}
|
2024-05-28 19:04:19 +00:00
|
|
|
<div class="flex w-full justify-between mb-2">
|
|
|
|
<div class=" self-center text-sm font-semibold">
|
2024-05-30 04:26:57 +00:00
|
|
|
{$i18n.t('Manage Pipelines')}
|
2024-05-28 19:04:19 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-05-30 04:26:57 +00:00
|
|
|
|
|
|
|
{#if PIPELINES_LIST.length > 0}
|
|
|
|
<div class="space-y-1">
|
2024-05-28 19:32:49 +00:00
|
|
|
<div class="flex gap-2">
|
2024-05-30 04:26:57 +00:00
|
|
|
<div class="flex-1">
|
2024-05-28 19:32:49 +00:00
|
|
|
<select
|
|
|
|
class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
|
2024-05-30 04:26:57 +00:00
|
|
|
bind:value={selectedPipelinesUrlIdx}
|
|
|
|
placeholder={$i18n.t('Select a pipeline url')}
|
2024-05-28 20:05:31 +00:00
|
|
|
on:change={async () => {
|
|
|
|
await tick();
|
2024-05-30 04:26:57 +00:00
|
|
|
await setPipelines();
|
2024-05-28 20:05:31 +00:00
|
|
|
}}
|
2024-05-28 19:32:49 +00:00
|
|
|
>
|
2024-05-30 04:26:57 +00:00
|
|
|
<option value="" selected disabled class="bg-gray-100 dark:bg-gray-700"
|
|
|
|
>{$i18n.t('Select a pipeline url')}</option
|
|
|
|
>
|
|
|
|
|
|
|
|
{#each PIPELINES_LIST as pipelines, idx}
|
|
|
|
<option value={pipelines.idx} class="bg-gray-100 dark:bg-gray-700"
|
|
|
|
>{pipelines.url}</option
|
2024-05-28 20:05:31 +00:00
|
|
|
>
|
2024-05-28 19:32:49 +00:00
|
|
|
{/each}
|
|
|
|
</select>
|
|
|
|
</div>
|
2024-05-28 19:04:19 +00:00
|
|
|
</div>
|
2024-05-30 04:26:57 +00:00
|
|
|
</div>
|
|
|
|
{/if}
|
2024-05-28 19:32:49 +00:00
|
|
|
|
2024-05-30 04:26:57 +00:00
|
|
|
<hr class=" dark:border-gray-800 my-3 w-full" />
|
2024-05-28 19:32:49 +00:00
|
|
|
|
2024-05-30 04:26:57 +00:00
|
|
|
{#if pipelines !== null}
|
|
|
|
{#if pipelines.length > 0}
|
|
|
|
<div class="flex w-full justify-between mb-2">
|
|
|
|
<div class=" self-center text-sm font-semibold">
|
|
|
|
{$i18n.t('Pipelines Valves')}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="space-y-1">
|
|
|
|
{#if pipelines.length > 0}
|
|
|
|
<div class="flex gap-2">
|
|
|
|
<div class="flex-1 pb-1">
|
|
|
|
<select
|
|
|
|
class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
|
|
|
|
bind:value={selectedPipelineIdx}
|
|
|
|
placeholder={$i18n.t('Select a pipeline')}
|
|
|
|
on:change={async () => {
|
|
|
|
await tick();
|
|
|
|
await getValves(selectedPipelineIdx);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{#each pipelines as pipeline, idx}
|
|
|
|
<option value={idx} class="bg-gray-100 dark:bg-gray-700"
|
|
|
|
>{pipeline.name} ({pipeline.pipeline.type ?? 'pipe'})</option
|
|
|
|
>
|
|
|
|
{/each}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/if}
|
2024-05-28 20:05:31 +00:00
|
|
|
|
2024-05-30 04:26:57 +00:00
|
|
|
<div class="space-y-1">
|
|
|
|
{#if pipelines[selectedPipelineIdx].pipeline.valves}
|
|
|
|
{#if valves}
|
|
|
|
{#each Object.keys(valves_spec.properties) as property, idx}
|
|
|
|
<div class=" py-0.5 w-full justify-between">
|
|
|
|
<div class="flex w-full justify-between">
|
|
|
|
<div class=" self-center text-xs font-medium">
|
|
|
|
{valves_spec.properties[property].title}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="p-1 px-3 text-xs flex rounded transition"
|
|
|
|
type="button"
|
|
|
|
on:click={() => {
|
|
|
|
valves[property] = (valves[property] ?? null) === null ? '' : null;
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{#if (valves[property] ?? null) === null}
|
|
|
|
<span class="ml-2 self-center"> {$i18n.t('None')} </span>
|
|
|
|
{:else}
|
|
|
|
<span class="ml-2 self-center"> {$i18n.t('Custom')} </span>
|
|
|
|
{/if}
|
|
|
|
</button>
|
2024-05-28 20:05:31 +00:00
|
|
|
</div>
|
2024-05-30 04:26:57 +00:00
|
|
|
|
|
|
|
{#if (valves[property] ?? null) !== null}
|
|
|
|
<div class="flex mt-0.5 space-x-2">
|
|
|
|
<div class=" flex-1">
|
|
|
|
<input
|
|
|
|
class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
|
|
|
|
type="text"
|
|
|
|
placeholder={valves_spec.properties[property].title}
|
|
|
|
bind:value={valves[property]}
|
|
|
|
autocomplete="off"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/if}
|
2024-05-28 20:05:31 +00:00
|
|
|
</div>
|
2024-05-30 04:26:57 +00:00
|
|
|
{/each}
|
|
|
|
{:else}
|
|
|
|
<Spinner className="size-5" />
|
|
|
|
{/if}
|
|
|
|
{:else}
|
|
|
|
<div>No valves</div>
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{:else if pipelines.length === 0}
|
|
|
|
<div>Pipelines Not Detected</div>
|
|
|
|
{/if}
|
|
|
|
{:else}
|
|
|
|
<div class="flex justify-center">
|
|
|
|
<div class="my-auto">
|
|
|
|
<Spinner className="size-4" />
|
|
|
|
</div>
|
2024-05-28 19:32:49 +00:00
|
|
|
</div>
|
2024-05-30 04:26:57 +00:00
|
|
|
{/if}
|
2024-05-28 19:32:49 +00:00
|
|
|
{:else}
|
2024-05-30 04:26:57 +00:00
|
|
|
<div class="flex justify-center h-full">
|
2024-05-28 19:32:49 +00:00
|
|
|
<div class="my-auto">
|
|
|
|
<Spinner className="size-6" />
|
|
|
|
</div>
|
2024-05-28 19:04:19 +00:00
|
|
|
</div>
|
2024-05-28 19:32:49 +00:00
|
|
|
{/if}
|
2024-05-28 19:04:19 +00:00
|
|
|
</div>
|
2024-05-30 04:26:57 +00:00
|
|
|
|
2024-05-28 19:04:19 +00:00
|
|
|
<div class="flex justify-end pt-3 text-sm font-medium">
|
|
|
|
<button
|
|
|
|
class=" px-4 py-2 bg-emerald-700 hover:bg-emerald-800 text-gray-100 transition rounded-lg"
|
|
|
|
type="submit"
|
|
|
|
>
|
|
|
|
Save
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|