Spaces:
Running
Running
<script lang="ts"> | |
import { onDestroy } from "svelte"; | |
import { goto, invalidate } from "$app/navigation"; | |
import { page } from "$app/stores"; | |
import "../styles/main.css"; | |
import { base } from "$app/paths"; | |
import { PUBLIC_ORIGIN, PUBLIC_APP_DISCLAIMER } from "$env/static/public"; | |
import { shareConversation } from "$lib/shareConversation"; | |
import { UrlDependency } from "$lib/types/UrlDependency"; | |
import { error } from "$lib/stores/errors"; | |
import MobileNav from "$lib/components/MobileNav.svelte"; | |
import NavMenu from "$lib/components/NavMenu.svelte"; | |
import Toast from "$lib/components/Toast.svelte"; | |
import SettingsModal from "$lib/components/SettingsModal.svelte"; | |
import LoginModal from "$lib/components/LoginModal.svelte"; | |
import { PUBLIC_APP_ASSETS, PUBLIC_APP_NAME } from "$env/static/public"; | |
export let data; | |
let isNavOpen = false; | |
let isSettingsOpen = false; | |
let errorToastTimeout: ReturnType<typeof setTimeout>; | |
let currentError: string | null; | |
async function onError() { | |
// If a new different error comes, wait for the current error to hide first | |
if ($error && currentError && $error !== currentError) { | |
clearTimeout(errorToastTimeout); | |
currentError = null; | |
await new Promise((resolve) => setTimeout(resolve, 300)); | |
} | |
currentError = $error; | |
errorToastTimeout = setTimeout(() => { | |
$error = null; | |
currentError = null; | |
}, 3000); | |
} | |
async function deleteConversation(id: string) { | |
try { | |
const res = await fetch(`${base}/conversation/${id}`, { | |
method: "DELETE", | |
headers: { | |
"Content-Type": "application/json", | |
}, | |
}); | |
if (!res.ok) { | |
$error = "Error while deleting conversation, try again."; | |
return; | |
} | |
if ($page.params.id !== id) { | |
await invalidate(UrlDependency.ConversationList); | |
} else { | |
await goto(`${base}/`, { invalidateAll: true }); | |
} | |
} catch (err) { | |
console.error(err); | |
$error = String(err); | |
} | |
} | |
async function editConversationTitle(id: string, title: string) { | |
try { | |
const res = await fetch(`${base}/conversation/${id}`, { | |
method: "PATCH", | |
headers: { | |
"Content-Type": "application/json", | |
}, | |
body: JSON.stringify({ title }), | |
}); | |
if (!res.ok) { | |
$error = "Error while editing title, try again."; | |
return; | |
} | |
await invalidate(UrlDependency.ConversationList); | |
} catch (err) { | |
console.error(err); | |
$error = String(err); | |
} | |
} | |
onDestroy(() => { | |
clearTimeout(errorToastTimeout); | |
}); | |
$: if ($error) onError(); | |
const requiresLogin = | |
!$page.error && | |
!$page.route.id?.startsWith("/r/") && | |
(data.requiresLogin | |
? !data.user | |
: !data.settings.ethicsModalAcceptedAt && !!PUBLIC_APP_DISCLAIMER); | |
</script> | |
<svelte:head> | |
<title>{PUBLIC_APP_NAME}</title> | |
<meta name="description" content="The first open source alternative to ChatGPT. 💪" /> | |
<meta name="twitter:card" content="summary_large_image" /> | |
<meta name="twitter:site" content="@huggingface" /> | |
<meta property="og:title" content={PUBLIC_APP_NAME} /> | |
<meta property="og:type" content="website" /> | |
<meta property="og:url" content="{PUBLIC_ORIGIN || $page.url.origin}{base}" /> | |
<meta | |
property="og:image" | |
content="{PUBLIC_ORIGIN || $page.url.origin}{base}/{PUBLIC_APP_ASSETS}/thumbnail.png" | |
/> | |
<link | |
rel="icon" | |
href="{PUBLIC_ORIGIN || $page.url.origin}{base}/{PUBLIC_APP_ASSETS}/favicon.svg" | |
type="image/svg+xml" | |
/> | |
<link | |
rel="icon" | |
href="{PUBLIC_ORIGIN || $page.url.origin}{base}/{PUBLIC_APP_ASSETS}/favicon.png" | |
type="image/png" | |
/> | |
<!-- Icon Support for iOS Bookmark Home Screen --> | |
<link | |
rel="apple-touch-icon" | |
href="{PUBLIC_ORIGIN || $page.url.origin}{base}/{PUBLIC_APP_ASSETS}/touch-icon-ipad-retina.png" | |
sizes="167x167" | |
type="image/png" | |
/> | |
<link | |
rel="apple-touch-icon" | |
href="{PUBLIC_ORIGIN || $page.url.origin}{base}/{PUBLIC_APP_ASSETS}/touch-icon-ipad.png" | |
sizes="152x152" | |
type="image/png" | |
/> | |
<link | |
rel="apple-touch-icon" | |
href="{PUBLIC_ORIGIN || | |
$page.url.origin}{base}/{PUBLIC_APP_ASSETS}/touch-icon-iphone-retina.png" | |
sizes="180x180" | |
type="image/png" | |
/> | |
<link | |
rel="manifest" | |
href="{PUBLIC_ORIGIN || $page.url.origin}{base}/{PUBLIC_APP_ASSETS}/manifest.json" | |
/> | |
</svelte:head> | |
<div | |
class="grid h-full w-screen grid-cols-1 grid-rows-[auto,1fr] overflow-hidden text-smd dark:text-gray-300 md:grid-cols-[280px,1fr] md:grid-rows-[1fr]" | |
> | |
<MobileNav | |
isOpen={isNavOpen} | |
on:toggle={(ev) => (isNavOpen = ev.detail)} | |
title={data.conversations.find((conv) => conv.id === $page.params.id)?.title} | |
> | |
<NavMenu | |
conversations={data.conversations} | |
user={data.user} | |
canLogin={data.user === undefined && data.requiresLogin} | |
on:shareConversation={(ev) => shareConversation(ev.detail.id, ev.detail.title)} | |
on:deleteConversation={(ev) => deleteConversation(ev.detail)} | |
on:clickSettings={() => (isSettingsOpen = true)} | |
on:editConversationTitle={(ev) => editConversationTitle(ev.detail.id, ev.detail.title)} | |
/> | |
</MobileNav> | |
<nav class="grid max-h-screen grid-cols-1 grid-rows-[auto,1fr,auto] max-md:hidden"> | |
<NavMenu | |
conversations={data.conversations} | |
user={data.user} | |
canLogin={data.user === undefined && data.requiresLogin} | |
on:shareConversation={(ev) => shareConversation(ev.detail.id, ev.detail.title)} | |
on:deleteConversation={(ev) => deleteConversation(ev.detail)} | |
on:clickSettings={() => (isSettingsOpen = true)} | |
on:editConversationTitle={(ev) => editConversationTitle(ev.detail.id, ev.detail.title)} | |
/> | |
</nav> | |
{#if currentError} | |
<Toast message={currentError} /> | |
{/if} | |
{#if isSettingsOpen} | |
<SettingsModal | |
on:close={() => (isSettingsOpen = false)} | |
settings={data.settings} | |
models={data.models} | |
/> | |
{/if} | |
{#if requiresLogin && data.messagesBeforeLogin === 0} | |
<LoginModal settings={data.settings} /> | |
{/if} | |
<slot /> | |
</div> | |