General.svelte 5.15 KB
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
<script lang="ts">
2
	import { getWebhookUrl, updateWebhookUrl } from '$lib/apis';
Timothy J. Baek's avatar
Timothy J. Baek committed
3
4
	import {
		getDefaultUserRole,
Timothy J. Baek's avatar
Timothy J. Baek committed
5
		getJWTExpiresDuration,
Timothy J. Baek's avatar
Timothy J. Baek committed
6
7
		getSignUpEnabledStatus,
		toggleSignUpEnabledStatus,
Timothy J. Baek's avatar
Timothy J. Baek committed
8
9
		updateDefaultUserRole,
		updateJWTExpiresDuration
Timothy J. Baek's avatar
Timothy J. Baek committed
10
	} from '$lib/apis/auths';
11
12
13
	import { onMount, getContext } from 'svelte';

	const i18n = getContext('i18n');
Timothy J. Baek's avatar
Timothy J. Baek committed
14
15
16
17

	export let saveHandler: Function;
	let signUpEnabled = true;
	let defaultUserRole = 'pending';
Timothy J. Baek's avatar
Timothy J. Baek committed
18
	let JWTExpiresIn = '';
Timothy J. Baek's avatar
Timothy J. Baek committed
19

20
21
	let webhookUrl = '';

Timothy J. Baek's avatar
Timothy J. Baek committed
22
23
24
25
26
27
28
29
	const toggleSignUpEnabled = async () => {
		signUpEnabled = await toggleSignUpEnabledStatus(localStorage.token);
	};

	const updateDefaultUserRoleHandler = async (role) => {
		defaultUserRole = await updateDefaultUserRole(localStorage.token, role);
	};

Timothy J. Baek's avatar
Timothy J. Baek committed
30
31
32
33
	const updateJWTExpiresDurationHandler = async (duration) => {
		JWTExpiresIn = await updateJWTExpiresDuration(localStorage.token, duration);
	};

34
35
36
37
	const updateWebhookUrlHandler = async () => {
		webhookUrl = await updateWebhookUrl(localStorage.token, webhookUrl);
	};

Timothy J. Baek's avatar
Timothy J. Baek committed
38
	onMount(async () => {
39
40
41
42
43
44
45
46
47
48
49
50
51
52
		await Promise.all([
			(async () => {
				signUpEnabled = await getSignUpEnabledStatus(localStorage.token);
			})(),
			(async () => {
				defaultUserRole = await getDefaultUserRole(localStorage.token);
			})(),
			(async () => {
				JWTExpiresIn = await getJWTExpiresDuration(localStorage.token);
			})(),
			(async () => {
				webhookUrl = await getWebhookUrl(localStorage.token);
			})()
		]);
Timothy J. Baek's avatar
Timothy J. Baek committed
53
54
55
56
57
58
	});
</script>

<form
	class="flex flex-col h-full justify-between space-y-3 text-sm"
	on:submit|preventDefault={() => {
Timothy J. Baek's avatar
Timothy J. Baek committed
59
		updateJWTExpiresDurationHandler(JWTExpiresIn);
60
		updateWebhookUrlHandler();
Timothy J. Baek's avatar
Timothy J. Baek committed
61
62
63
64
65
		saveHandler();
	}}
>
	<div class=" space-y-3 pr-1.5 overflow-y-scroll max-h-80">
		<div>
66
			<div class=" mb-2 text-sm font-medium">{$i18n.t('General Settings')}</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
67
68

			<div class="  flex w-full justify-between">
69
				<div class=" self-center text-xs font-medium">{$i18n.t('Enable New Sign Ups')}</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88

				<button
					class="p-1 px-3 text-xs flex rounded transition"
					on:click={() => {
						toggleSignUpEnabled();
					}}
					type="button"
				>
					{#if signUpEnabled}
						<svg
							xmlns="http://www.w3.org/2000/svg"
							viewBox="0 0 16 16"
							fill="currentColor"
							class="w-4 h-4"
						>
							<path
								d="M11.5 1A3.5 3.5 0 0 0 8 4.5V7H2.5A1.5 1.5 0 0 0 1 8.5v5A1.5 1.5 0 0 0 2.5 15h7a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 9.5 7V4.5a2 2 0 1 1 4 0v1.75a.75.75 0 0 0 1.5 0V4.5A3.5 3.5 0 0 0 11.5 1Z"
							/>
						</svg>
89
						<span class="ml-2 self-center">{$i18n.t('Enabled')}</span>
Timothy J. Baek's avatar
Timothy J. Baek committed
90
91
92
93
94
95
96
97
98
99
100
101
102
103
					{:else}
						<svg
							xmlns="http://www.w3.org/2000/svg"
							viewBox="0 0 16 16"
							fill="currentColor"
							class="w-4 h-4"
						>
							<path
								fill-rule="evenodd"
								d="M8 1a3.5 3.5 0 0 0-3.5 3.5V7A1.5 1.5 0 0 0 3 8.5v5A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 11.5 7V4.5A3.5 3.5 0 0 0 8 1Zm2 6V4.5a2 2 0 1 0-4 0V7h4Z"
								clip-rule="evenodd"
							/>
						</svg>

104
						<span class="ml-2 self-center">{$i18n.t('Disabled')}</span>
Timothy J. Baek's avatar
Timothy J. Baek committed
105
106
107
108
109
					{/if}
				</button>
			</div>

			<div class=" flex w-full justify-between">
110
				<div class=" self-center text-xs font-medium">{$i18n.t('Default User Role')}</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
111
112
				<div class="flex items-center relative">
					<select
Jannik Streidl's avatar
Jannik Streidl committed
113
						class="dark:bg-gray-900 w-fit pr-8 rounded py-2 px-2 text-xs bg-transparent outline-none text-right"
Timothy J. Baek's avatar
Timothy J. Baek committed
114
115
116
117
118
119
						bind:value={defaultUserRole}
						placeholder="Select a theme"
						on:change={(e) => {
							updateDefaultUserRoleHandler(e.target.value);
						}}
					>
Jannik Streidl's avatar
Jannik Streidl committed
120
121
122
						<option value="pending">{$i18n.t('pending')}</option>
						<option value="user">{$i18n.t('user')}</option>
						<option value="admin">{$i18n.t('admin')}</option>
Timothy J. Baek's avatar
Timothy J. Baek committed
123
124
125
					</select>
				</div>
			</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
126
127

			<hr class=" dark:border-gray-700 my-3" />
128
129
130
131
132
133
134
135

			<div class=" w-full justify-between">
				<div class="flex w-full justify-between">
					<div class=" self-center text-xs font-medium">{$i18n.t('Webhook URL')}</div>
				</div>

				<div class="flex mt-2 space-x-2">
					<input
Timothy J. Baek's avatar
Timothy J. Baek committed
136
						class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
137
138
139
140
141
142
143
144
						type="text"
						placeholder={`https://example.com/webhook`}
						bind:value={webhookUrl}
					/>
				</div>
			</div>

			<hr class=" dark:border-gray-700 my-3" />
Timothy J. Baek's avatar
Timothy J. Baek committed
145
146
147

			<div class=" w-full justify-between">
				<div class="flex w-full justify-between">
148
					<div class=" self-center text-xs font-medium">{$i18n.t('JWT Expiration')}</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
149
150
151
152
				</div>

				<div class="flex mt-2 space-x-2">
					<input
Timothy J. Baek's avatar
Timothy J. Baek committed
153
						class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
Timothy J. Baek's avatar
Timothy J. Baek committed
154
155
156
157
158
159
160
						type="text"
						placeholder={`e.g.) "30m","1h", "10d". `}
						bind:value={JWTExpiresIn}
					/>
				</div>

				<div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
161
162
163
					{$i18n.t('Valid time units:')}
					<span class=" text-gray-300 font-medium"
						>{$i18n.t("'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.")}</span
Timothy J. Baek's avatar
Timothy J. Baek committed
164
165
166
					>
				</div>
			</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
167
168
169
170
171
		</div>
	</div>

	<div class="flex justify-end pt-3 text-sm font-medium">
		<button
Timothy J. Baek's avatar
Timothy J. Baek committed
172
			class=" px-4 py-2 bg-emerald-700 hover:bg-emerald-800 text-gray-100 transition rounded-lg"
Timothy J. Baek's avatar
Timothy J. Baek committed
173
174
			type="submit"
		>
Jannik Streidl's avatar
Jannik Streidl committed
175
			{$i18n.t('Save')}
Timothy J. Baek's avatar
Timothy J. Baek committed
176
177
178
		</button>
	</div>
</form>