open-webui/src/lib/components/admin/Settings/General.svelte

169 lines
5.1 KiB
Svelte
Raw Normal View History

2024-02-14 09:17:43 +00:00
<script lang="ts">
2024-03-21 01:35:54 +00:00
import { getWebhookUrl, updateWebhookUrl } from '$lib/apis';
2024-02-14 09:17:43 +00:00
import {
getDefaultUserRole,
2024-02-20 04:44:00 +00:00
getJWTExpiresDuration,
2024-02-14 09:17:43 +00:00
getSignUpEnabledStatus,
toggleSignUpEnabledStatus,
2024-02-20 04:44:00 +00:00
updateDefaultUserRole,
updateJWTExpiresDuration
2024-02-14 09:17:43 +00:00
} from '$lib/apis/auths';
import { onMount, getContext } from 'svelte';
const i18n = getContext('i18n');
2024-02-14 09:17:43 +00:00
export let saveHandler: Function;
let signUpEnabled = true;
let defaultUserRole = 'pending';
2024-02-20 04:44:00 +00:00
let JWTExpiresIn = '';
2024-02-14 09:17:43 +00:00
2024-03-21 01:35:54 +00:00
let webhookUrl = '';
2024-02-14 09:17:43 +00:00
const toggleSignUpEnabled = async () => {
signUpEnabled = await toggleSignUpEnabledStatus(localStorage.token);
};
const updateDefaultUserRoleHandler = async (role) => {
defaultUserRole = await updateDefaultUserRole(localStorage.token, role);
};
2024-02-20 04:44:00 +00:00
const updateJWTExpiresDurationHandler = async (duration) => {
JWTExpiresIn = await updateJWTExpiresDuration(localStorage.token, duration);
};
2024-03-21 01:35:54 +00:00
const updateWebhookUrlHandler = async () => {
webhookUrl = await updateWebhookUrl(localStorage.token, webhookUrl);
};
2024-02-14 09:17:43 +00:00
onMount(async () => {
signUpEnabled = await getSignUpEnabledStatus(localStorage.token);
defaultUserRole = await getDefaultUserRole(localStorage.token);
2024-02-20 04:44:00 +00:00
JWTExpiresIn = await getJWTExpiresDuration(localStorage.token);
2024-03-21 01:35:54 +00:00
webhookUrl = await getWebhookUrl(localStorage.token);
2024-02-14 09:17:43 +00:00
});
</script>
<form
class="flex flex-col h-full justify-between space-y-3 text-sm"
on:submit|preventDefault={() => {
2024-02-20 04:44:00 +00:00
updateJWTExpiresDurationHandler(JWTExpiresIn);
2024-03-21 01:35:54 +00:00
updateWebhookUrlHandler();
2024-02-14 09:17:43 +00:00
saveHandler();
}}
>
<div class=" space-y-3 pr-1.5 overflow-y-scroll max-h-80">
<div>
<div class=" mb-2 text-sm font-medium">{$i18n.t('General Settings')}</div>
2024-02-14 09:17:43 +00:00
<div class=" flex w-full justify-between">
<div class=" self-center text-xs font-medium">{$i18n.t('Enable New Sign Ups')}</div>
2024-02-14 09:17:43 +00:00
<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>
<span class="ml-2 self-center">{$i18n.t('Enabled')}</span>
2024-02-14 09:17:43 +00:00
{: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>
<span class="ml-2 self-center">{$i18n.t('Disabled')}</span>
2024-02-14 09:17:43 +00:00
{/if}
</button>
</div>
<div class=" flex w-full justify-between">
<div class=" self-center text-xs font-medium">{$i18n.t('Default User Role')}</div>
2024-02-14 09:17:43 +00:00
<div class="flex items-center relative">
<select
2024-03-05 08:15:22 +00:00
class="dark:bg-gray-900 w-fit pr-8 rounded py-2 px-2 text-xs bg-transparent outline-none text-right"
2024-02-14 09:17:43 +00:00
bind:value={defaultUserRole}
placeholder="Select a theme"
on:change={(e) => {
updateDefaultUserRoleHandler(e.target.value);
}}
>
2024-03-07 16:56:57 +00:00
<option value="pending">{$i18n.t('pending')}</option>
<option value="user">{$i18n.t('user')}</option>
<option value="admin">{$i18n.t('admin')}</option>
2024-02-14 09:17:43 +00:00
</select>
</div>
</div>
2024-02-20 04:44:00 +00:00
<hr class=" dark:border-gray-700 my-3" />
2024-03-21 01:35:54 +00:00
<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
class="w-full rounded py-1.5 px-4 text-sm dark:text-gray-300 dark:bg-gray-800 outline-none border border-gray-100 dark:border-gray-600"
type="text"
placeholder={`https://example.com/webhook`}
bind:value={webhookUrl}
/>
</div>
</div>
<hr class=" dark:border-gray-700 my-3" />
2024-02-20 04:44:00 +00:00
<div class=" w-full justify-between">
<div class="flex w-full justify-between">
<div class=" self-center text-xs font-medium">{$i18n.t('JWT Expiration')}</div>
2024-02-20 04:44:00 +00:00
</div>
<div class="flex mt-2 space-x-2">
<input
class="w-full rounded py-1.5 px-4 text-sm dark:text-gray-300 dark:bg-gray-800 outline-none border border-gray-100 dark:border-gray-600"
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">
{$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
2024-02-20 04:44:00 +00:00
>
</div>
</div>
2024-02-14 09:17:43 +00:00
</div>
</div>
<div class="flex justify-end pt-3 text-sm font-medium">
<button
2024-04-28 01:20:43 +00:00
class=" px-4 py-2 bg-emerald-700 hover:bg-emerald-800 text-gray-100 transition rounded-lg"
2024-02-14 09:17:43 +00:00
type="submit"
>
2024-03-04 08:53:56 +00:00
{$i18n.t('Save')}
2024-02-14 09:17:43 +00:00
</button>
</div>
</form>