Pipelines.svelte 2.66 KB
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
5
6
7
8
<script lang="ts">
	import { v4 as uuidv4 } from 'uuid';

	import { getContext, onMount } from 'svelte';

	import type { Writable } from 'svelte/store';
	import type { i18n as i18nType } from 'i18next';
	import { stringify } from 'postcss';
Timothy J. Baek's avatar
Timothy J. Baek committed
9
10
11
	import { getPipelineValves, getPipelines } from '$lib/apis';
	import Spinner from '$lib/components/common/Spinner.svelte';

Timothy J. Baek's avatar
Timothy J. Baek committed
12
13
14
15
	const i18n: Writable<i18nType> = getContext('i18n');

	export let saveHandler: Function;

Timothy J. Baek's avatar
Timothy J. Baek committed
16
17
18
	let pipelines = null;
	let valves = null;

Timothy J. Baek's avatar
Timothy J. Baek committed
19
20
	let selectedPipelineIdx = 0;

Timothy J. Baek's avatar
Timothy J. Baek committed
21
22
23
24
25
26
27
28
29
30
31
	$: if (
		pipelines !== null &&
		pipelines.length > 0 &&
		pipelines[selectedPipelineIdx] !== undefined &&
		pipelines[selectedPipelineIdx].pipeline.valves
	) {
		(async () => {
			valves = await getPipelineValves(localStorage.token, pipelines[selectedPipelineIdx].id);
		})();
	}

Timothy J. Baek's avatar
Timothy J. Baek committed
32
33
34
35
36
37
38
39
40
41
42
	onMount(async () => {
		pipelines = await getPipelines(localStorage.token);
	});
</script>

<form
	class="flex flex-col h-full justify-between space-y-3 text-sm"
	on:submit|preventDefault={async () => {
		saveHandler();
	}}
>
Timothy J. Baek's avatar
Timothy J. Baek committed
43
	<div class=" space-y-2 pr-1.5 overflow-y-scroll max-h-80 h-full">
Timothy J. Baek's avatar
fix  
Timothy J. Baek committed
44
		{#if pipelines !== null && pipelines.length > 0}
Timothy J. Baek's avatar
Timothy J. Baek committed
45
46
			<div class="flex w-full justify-between mb-2">
				<div class=" self-center text-sm font-semibold">
Timothy J. Baek's avatar
Timothy J. Baek committed
47
					{$i18n.t('Pipelines')}
Timothy J. Baek's avatar
Timothy J. Baek committed
48
49
				</div>
			</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
50
51
52
53
54
55
56
57
58
59
60
61
62
63
			<div class="space-y-2">
				{#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 an Ollama instance')}
							>
								{#each pipelines as pipeline, idx}
									<option value={idx} class="bg-gray-100 dark:bg-gray-700">{pipeline.name}</option>
								{/each}
							</select>
						</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
64
					</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
				{/if}

				<div class="text-sm font-medium">{$i18n.t('Valves')}</div>

				<div class="space-y-2">
					{#if pipelines[selectedPipelineIdx].pipeline.valves}
						{#if valves}
							{#each Object.keys(valves) as valve, idx}
								<div>{valve}</div>
							{/each}
						{:else}
							<Spinner className="size-5" />
						{/if}
					{:else}
						<div>No valves</div>
					{/if}
				</div>
			</div>
		{:else if pipelines !== null && pipelines.length === 0}
			<div>Pipelines Not Detected</div>
		{:else}
			<div class="flex h-full justify-center">
				<div class="my-auto">
					<Spinner className="size-6" />
				</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
90
			</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
91
		{/if}
Timothy J. Baek's avatar
Timothy J. Baek committed
92
93
94
95
96
97
98
99
100
101
	</div>
	<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>