File size: 2,330 Bytes
bc27e65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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
90
91
<script lang="ts">

	import { getContext, tick } from 'svelte';

	const i18n = getContext('i18n');



	import Tooltip from '$lib/components/common/Tooltip.svelte';

	import SensitiveInput from '$lib/components/common/SensitiveInput.svelte';

	import Cog6 from '$lib/components/icons/Cog6.svelte';

	import ConfirmDialog from '$lib/components/common/ConfirmDialog.svelte';

	import AddServerModal from '$lib/components/AddServerModal.svelte';



	export let onDelete = () => {};

	export let onSubmit = () => {};



	export let connection = null;

	export let direct = false;



	let showConfigModal = false;

	let showDeleteConfirmDialog = false;

</script>



<AddServerModal

	edit

	{direct}

	bind:show={showConfigModal}

	{connection}

	onDelete={() => {

		showDeleteConfirmDialog = true;

	}}

	onSubmit={(c) => {

		connection = c;

		onSubmit(c);

	}}

/>



<ConfirmDialog

	bind:show={showDeleteConfirmDialog}

	on:confirm={() => {

		onDelete();

		showConfigModal = false;

	}}

/>



<div class="flex w-full gap-2 items-center">

	<Tooltip

		className="w-full relative"

		content={$i18n.t(`WebUI will make requests to "{{url}}"`, {

			url: `${connection?.url}/${connection?.path ?? 'openapi.json'}`

		})}

		placement="top-start"

	>

		{#if !(connection?.config?.enable ?? true)}

			<div

				class="absolute top-0 bottom-0 left-0 right-0 opacity-60 bg-white dark:bg-gray-900 z-10"

			></div>

		{/if}

		<div class="flex w-full">

			<div class="flex-1 relative">

				<input

					class=" outline-hidden w-full bg-transparent"

					placeholder={$i18n.t('API Base URL')}

					bind:value={connection.url}

					autocomplete="off"

				/>

			</div>



			{#if (connection?.auth_type ?? 'bearer') === 'bearer'}

				<SensitiveInput

					inputClassName=" outline-hidden bg-transparent w-full"

					placeholder={$i18n.t('API Key')}

					bind:value={connection.key}

					required={false}

				/>

			{/if}

		</div>

	</Tooltip>



	<div class="flex gap-1">

		<Tooltip content={$i18n.t('Configure')} className="self-start">

			<button

				class="self-center p-1 bg-transparent hover:bg-gray-100 dark:bg-gray-900 dark:hover:bg-gray-850 rounded-lg transition"

				on:click={() => {

					showConfigModal = true;

				}}

				type="button"

			>

				<Cog6 />

			</button>

		</Tooltip>

	</div>

</div>