|
<script lang="ts"> |
|
import { onMount } from "svelte"; |
|
import { base } from "$app/paths"; |
|
import { clickOutside } from "$lib/actions/clickOutside"; |
|
import { afterNavigate, goto } from "$app/navigation"; |
|
import { page } from "$app/stores"; |
|
import { useSettingsStore } from "$lib/stores/settings"; |
|
import CarbonClose from "~icons/carbon/close"; |
|
import CarbonArrowUpRight from "~icons/carbon/ArrowUpRight"; |
|
import CarbonCheckmark from "~icons/carbon/checkmark"; |
|
import CarbonAdd from "~icons/carbon/add"; |
|
|
|
import UserIcon from "~icons/carbon/user"; |
|
import { fade, fly } from "svelte/transition"; |
|
export let data; |
|
|
|
let previousPage: string = base; |
|
let assistantsSection: HTMLHeadingElement; |
|
|
|
onMount(() => { |
|
if ($page.params?.assistantId) { |
|
assistantsSection.scrollIntoView(); |
|
} |
|
}); |
|
|
|
afterNavigate(({ from }) => { |
|
if (!from?.url.pathname.includes("settings")) { |
|
previousPage = from?.url.toString() || previousPage; |
|
} |
|
}); |
|
|
|
const settings = useSettingsStore(); |
|
</script> |
|
|
|
<div |
|
class="fixed inset-0 flex items-center justify-center bg-black/80 backdrop-blur-sm dark:bg-black/50" |
|
in:fade |
|
> |
|
<dialog |
|
in:fly={{ y: 100 }} |
|
open |
|
use:clickOutside={() => { |
|
goto(previousPage); |
|
}} |
|
class="xl: z-10 grid h-[95dvh] w-[90dvw] grid-cols-1 content-start gap-x-8 overflow-hidden rounded-2xl bg-white p-4 shadow-2xl outline-none sm:h-[80dvh] md:grid-cols-3 md:grid-rows-[auto,1fr] md:p-8 xl:w-[1200px] 2xl:h-[70dvh]" |
|
> |
|
<div class="col-span-1 mb-4 flex items-center justify-between md:col-span-3"> |
|
<h2 class="text-xl font-bold">Settings</h2> |
|
<button |
|
class="btn rounded-lg" |
|
on:click={() => { |
|
goto(previousPage); |
|
}} |
|
> |
|
<CarbonClose class="text-xl text-gray-900 hover:text-black" /> |
|
</button> |
|
</div> |
|
<div |
|
class="col-span-1 flex flex-col overflow-y-auto whitespace-nowrap max-md:-mx-4 max-md:h-[245px] max-md:border max-md:border-b-2 md:pr-6" |
|
> |
|
<h3 class="pb-3 pl-3 pt-2 text-[.8rem] text-gray-800 sm:pl-1">Models</h3> |
|
|
|
{#each data.models.filter((el) => !el.unlisted) as model} |
|
<a |
|
href="{base}/settings/{model.id}" |
|
class="group flex h-10 flex-none items-center gap-2 pl-3 pr-2 text-sm text-gray-500 hover:bg-gray-100 md:rounded-xl |
|
{model.id === $page.params.model ? '!bg-gray-100 !text-gray-800' : ''}" |
|
> |
|
<div class="truncate">{model.displayName}</div> |
|
{#if model.id === $settings.activeModel} |
|
<div |
|
class="ml-auto rounded-lg bg-black px-2 py-1.5 text-xs font-semibold leading-none text-white" |
|
> |
|
Active |
|
</div> |
|
{/if} |
|
</a> |
|
{/each} |
|
|
|
{#if data.enableAssistants} |
|
<h3 bind:this={assistantsSection} class="pb-3 pl-3 pt-5 text-[.8rem] text-gray-800 sm:pl-1"> |
|
Assistants |
|
</h3> |
|
{#if !data.loginEnabled || (data.loginEnabled && !!data.user)} |
|
<a |
|
href="{base}/settings/assistants/new" |
|
class="group flex h-10 flex-none items-center gap-2 pl-3 pr-2 text-sm text-gray-500 hover:bg-gray-100 md:rounded-xl |
|
{$page.url.pathname === `${base}/settings/assistants/new` ? '!bg-gray-100 !text-gray-800' : ''}" |
|
> |
|
<CarbonAdd /> |
|
<div class="truncate">Create new assistant</div> |
|
</a> |
|
{/if} |
|
{#each data.assistants as assistant} |
|
<a |
|
href="{base}/settings/assistants/{assistant._id.toString()}" |
|
class="group flex h-10 flex-none items-center gap-2 pl-2 pr-2 text-sm text-gray-500 hover:bg-gray-100 md:rounded-xl |
|
{assistant._id.toString() === $page.params.assistantId ? '!bg-gray-100 !text-gray-800' : ''}" |
|
> |
|
{#if assistant.avatar} |
|
<img |
|
src="{base}/settings/assistants/{assistant._id.toString()}/avatar.jpg?hash={assistant.avatar}" |
|
alt="Avatar" |
|
class="h-6 w-6 rounded-full object-cover" |
|
/> |
|
{:else} |
|
<div |
|
class="flex size-6 items-center justify-center rounded-full bg-gray-300 font-bold uppercase text-gray-500" |
|
> |
|
{assistant.name[0]} |
|
</div> |
|
{/if} |
|
<div class="truncate">{assistant.name}</div> |
|
{#if assistant._id.toString() === $settings.activeModel} |
|
<div |
|
class="ml-auto rounded-lg bg-black px-2 py-1.5 text-xs font-semibold leading-none text-white" |
|
> |
|
Active |
|
</div> |
|
{/if} |
|
</a> |
|
{/each} |
|
<a |
|
href="{base}/assistants" |
|
class="group flex h-10 flex-none items-center gap-2 pl-3 pr-2 text-sm text-gray-500 hover:bg-gray-100 md:rounded-xl" |
|
><CarbonArrowUpRight class="mr-1.5 shrink-0 text-xs " /> |
|
<div class="truncate">Browse Assistants</div> |
|
</a> |
|
{/if} |
|
|
|
<a |
|
href="{base}/settings" |
|
class="group mt-auto flex h-10 flex-none items-center gap-2 pl-3 pr-2 text-sm text-gray-500 hover:bg-gray-100 max-md:order-first md:rounded-xl |
|
{$page.url.pathname === `${base}/settings` ? '!bg-gray-100 !text-gray-800' : ''}" |
|
> |
|
<UserIcon class="text-sm" /> |
|
Application Settings |
|
</a> |
|
</div> |
|
<div class="col-span-1 overflow-y-auto px-4 max-md:-mx-4 max-md:pt-6 md:col-span-2"> |
|
<slot /> |
|
</div> |
|
|
|
{#if $settings.recentlySaved} |
|
<div |
|
class="absolute bottom-4 right-4 m-2 flex items-center gap-1.5 rounded-full border border-gray-300 bg-gray-200 px-3 py-1 text-black" |
|
> |
|
<CarbonCheckmark class="text-green-500" /> |
|
Saved |
|
</div> |
|
{/if} |
|
</dialog> |
|
</div> |
|
|