From e0ec2cdeb021cbfcc75cf10eb6cc1fba28fe5b11 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Mon, 31 Mar 2025 20:32:12 -0700 Subject: [PATCH] refac: $user --- .../components/admin/Settings/Connections.svelte | 2 +- .../components/admin/Settings/Evaluations.svelte | 2 +- src/lib/components/admin/Settings/Images.svelte | 2 +- src/lib/components/admin/Settings/Interface.svelte | 2 +- .../admin/Settings/Models/ManageModelsModal.svelte | 2 +- src/lib/components/channel/Channel.svelte | 2 +- src/lib/components/channel/Messages.svelte | 8 ++++---- src/lib/components/channel/Messages/Message.svelte | 4 ++-- src/lib/components/channel/Navbar.svelte | 4 ++-- src/lib/components/channel/Thread.svelte | 2 +- src/lib/components/chat/Chat.svelte | 10 +++++----- src/lib/components/chat/ChatPlaceholder.svelte | 2 +- src/lib/components/chat/Controls/Controls.svelte | 2 +- .../chat/MessageInput/Commands/Prompts.svelte | 2 +- .../components/chat/MessageInput/InputMenu.svelte | 2 +- .../chat/Messages/ResponseMessage.svelte | 4 ++-- src/lib/components/chat/ModelSelector.svelte | 2 +- .../components/chat/ModelSelector/Selector.svelte | 2 +- src/lib/components/chat/Navbar.svelte | 6 +++--- src/lib/components/chat/Placeholder.svelte | 2 +- src/lib/components/chat/Settings/Account.svelte | 10 +++++----- src/lib/components/chat/Settings/General.svelte | 2 +- src/lib/components/chat/Settings/Interface.svelte | 2 +- src/lib/components/chat/SettingsModal.svelte | 6 +++--- src/lib/components/layout/Navbar.svelte | 4 ++-- src/lib/components/layout/Sidebar.svelte | 14 +++++++------- src/routes/(app)/+layout.svelte | 12 ++++++------ 27 files changed, 57 insertions(+), 57 deletions(-) diff --git a/src/lib/components/admin/Settings/Connections.svelte b/src/lib/components/admin/Settings/Connections.svelte index 2fcfadaec..ac0566f22 100644 --- a/src/lib/components/admin/Settings/Connections.svelte +++ b/src/lib/components/admin/Settings/Connections.svelte @@ -136,7 +136,7 @@ }; onMount(async () => { - if ($user.role === 'admin') { + if ($user?.role === 'admin') { let ollamaConfig = {}; let openaiConfig = {}; diff --git a/src/lib/components/admin/Settings/Evaluations.svelte b/src/lib/components/admin/Settings/Evaluations.svelte index cf003504c..b46669b52 100644 --- a/src/lib/components/admin/Settings/Evaluations.svelte +++ b/src/lib/components/admin/Settings/Evaluations.svelte @@ -77,7 +77,7 @@ }; onMount(async () => { - if ($user.role === 'admin') { + if ($user?.role === 'admin') { evaluationConfig = await getConfig(localStorage.token).catch((err) => { toast.error(err); return null; diff --git a/src/lib/components/admin/Settings/Images.svelte b/src/lib/components/admin/Settings/Images.svelte index 88039a0e3..64fa249dc 100644 --- a/src/lib/components/admin/Settings/Images.svelte +++ b/src/lib/components/admin/Settings/Images.svelte @@ -176,7 +176,7 @@ }; onMount(async () => { - if ($user.role === 'admin') { + if ($user?.role === 'admin') { const res = await getConfig(localStorage.token).catch((error) => { toast.error(`${error}`); return null; diff --git a/src/lib/components/admin/Settings/Interface.svelte b/src/lib/components/admin/Settings/Interface.svelte index e3542475e..adb4fbdf9 100644 --- a/src/lib/components/admin/Settings/Interface.svelte +++ b/src/lib/components/admin/Settings/Interface.svelte @@ -380,7 +380,7 @@ - {#if $user.role === 'admin'} + {#if $user?.role === 'admin'}
diff --git a/src/lib/components/admin/Settings/Models/ManageModelsModal.svelte b/src/lib/components/admin/Settings/Models/ManageModelsModal.svelte index 6b53952e1..117009dda 100644 --- a/src/lib/components/admin/Settings/Models/ManageModelsModal.svelte +++ b/src/lib/components/admin/Settings/Models/ManageModelsModal.svelte @@ -19,7 +19,7 @@ let ollamaConfig = null; onMount(async () => { - if ($user.role === 'admin') { + if ($user?.role === 'admin') { await Promise.all([ (async () => { ollamaConfig = await getOllamaConfig(localStorage.token); diff --git a/src/lib/components/channel/Channel.svelte b/src/lib/components/channel/Channel.svelte index 275f76d29..ce2aa54f1 100644 --- a/src/lib/components/channel/Channel.svelte +++ b/src/lib/components/channel/Channel.svelte @@ -106,7 +106,7 @@ messages[idx] = data; } } else if (type === 'typing' && event.message_id === null) { - if (event.user.id === $user.id) { + if (event.user.id === $user?.id) { return; } diff --git a/src/lib/components/channel/Messages.svelte b/src/lib/components/channel/Messages.svelte index f8ff2f229..e1bc326b3 100644 --- a/src/lib/components/channel/Messages.svelte +++ b/src/lib/components/channel/Messages.svelte @@ -132,7 +132,7 @@ if ( (message?.reactions ?? []) .find((reaction) => reaction.name === name) - ?.user_ids?.includes($user.id) ?? + ?.user_ids?.includes($user?.id) ?? false ) { messages = messages.map((m) => { @@ -140,7 +140,7 @@ const reaction = m.reactions.find((reaction) => reaction.name === name); if (reaction) { - reaction.user_ids = reaction.user_ids.filter((id) => id !== $user.id); + reaction.user_ids = reaction.user_ids.filter((id) => id !== $user?.id); reaction.count = reaction.user_ids.length; if (reaction.count === 0) { @@ -167,12 +167,12 @@ const reaction = m.reactions.find((reaction) => reaction.name === name); if (reaction) { - reaction.user_ids.push($user.id); + reaction.user_ids.push($user?.id); reaction.count = reaction.user_ids.length; } else { m.reactions.push({ name: name, - user_ids: [$user.id], + user_ids: [$user?.id], count: 1 }); } diff --git a/src/lib/components/channel/Messages/Message.svelte b/src/lib/components/channel/Messages/Message.svelte index 0736a2512..998938806 100644 --- a/src/lib/components/channel/Messages/Message.svelte +++ b/src/lib/components/channel/Messages/Message.svelte @@ -106,7 +106,7 @@ {/if} - {#if message.user_id === $user.id || $user.role === 'admin'} + {#if message.user_id === $user?.id || $user?.role === 'admin'}
- {#if $user.role === 'admin' || $user?.permissions.chat?.controls} + {#if $user?.role === 'admin' || $user?.permissions.chat?.controls}
diff --git a/src/lib/components/chat/MessageInput/Commands/Prompts.svelte b/src/lib/components/chat/MessageInput/Commands/Prompts.svelte index 0e7a601e4..26cf1d368 100644 --- a/src/lib/components/chat/MessageInput/Commands/Prompts.svelte +++ b/src/lib/components/chat/MessageInput/Commands/Prompts.svelte @@ -86,7 +86,7 @@ if (command.content.includes('{{USER_NAME}}')) { console.log($user); - const name = $user.name || 'User'; + const name = $user?.name || 'User'; text = text.replaceAll('{{USER_NAME}}', name); } diff --git a/src/lib/components/chat/MessageInput/InputMenu.svelte b/src/lib/components/chat/MessageInput/InputMenu.svelte index 07f337dcb..27fe2cde2 100644 --- a/src/lib/components/chat/MessageInput/InputMenu.svelte +++ b/src/lib/components/chat/MessageInput/InputMenu.svelte @@ -39,7 +39,7 @@ } let fileUploadEnabled = true; - $: fileUploadEnabled = $user.role === 'admin' || $user?.permissions?.chat?.file_upload; + $: fileUploadEnabled = $user?.role === 'admin' || $user?.permissions?.chat?.file_upload; const init = async () => { if ($_tools === null) { diff --git a/src/lib/components/chat/Messages/ResponseMessage.svelte b/src/lib/components/chat/Messages/ResponseMessage.svelte index a8c2e7c9f..04a454a0e 100644 --- a/src/lib/components/chat/Messages/ResponseMessage.svelte +++ b/src/lib/components/chat/Messages/ResponseMessage.svelte @@ -920,7 +920,7 @@ {#if message.done} {#if !readOnly} - {#if $user.role === 'user' ? ($user?.permissions?.chat?.edit ?? true) : true} + {#if $user?.role === 'user' ? ($user?.permissions?.chat?.edit ?? true) : true}
- {#if $user.role === 'admin' || $user?.permissions.chat?.controls} + {#if $user?.role === 'admin' || $user?.permissions.chat?.controls}
diff --git a/src/lib/components/chat/Settings/Interface.svelte b/src/lib/components/chat/Settings/Interface.svelte index b0a0b7970..171cfe27a 100644 --- a/src/lib/components/chat/Settings/Interface.svelte +++ b/src/lib/components/chat/Settings/Interface.svelte @@ -441,7 +441,7 @@
- {#if $user.role === 'admin'} + {#if $user?.role === 'admin'}
diff --git a/src/lib/components/chat/SettingsModal.svelte b/src/lib/components/chat/SettingsModal.svelte index e3b20c2db..15bf9c0ba 100644 --- a/src/lib/components/chat/SettingsModal.svelte +++ b/src/lib/components/chat/SettingsModal.svelte @@ -462,7 +462,7 @@
{$i18n.t('Interface')}
{:else if tabId === 'connections'} - {#if $user.role === 'admin' || ($user.role === 'user' && $config?.features?.enable_direct_connections)} + {#if $user?.role === 'admin' || ($user?.role === 'user' && $config?.features?.enable_direct_connections)}
{:else if tabId === 'admin'} - {#if $user.role === 'admin'} + {#if $user?.role === 'admin'} {/if} diff --git a/src/routes/(app)/+layout.svelte b/src/routes/(app)/+layout.svelte index b68cc67a0..709813ef1 100644 --- a/src/routes/(app)/+layout.svelte +++ b/src/routes/(app)/+layout.svelte @@ -55,9 +55,9 @@ let version; onMount(async () => { - if ($user === undefined) { + if ($user === undefined || $user === null) { await goto('/auth'); - } else if (['user', 'admin'].includes($user.role)) { + } else if (['user', 'admin'].includes($user?.role)) { try { // Check if IndexedDB exists DB = await openDB('Chats', 1); @@ -191,7 +191,7 @@ } }); - if ($user.role === 'admin' && ($settings?.showChangelog ?? true)) { + if ($user?.role === 'admin' && ($settings?.showChangelog ?? true)) { showChangelog.set($settings?.version !== $config.version); } @@ -199,14 +199,14 @@ temporaryChatEnabled.set(true); } - console.log($user.permissions); + console.log($user?.permissions); if ($user?.permissions?.chat?.temporary_enforced) { temporaryChatEnabled.set(true); } // Check for version updates - if ($user.role === 'admin') { + if ($user?.role === 'admin') { // Check if the user has dismissed the update toast in the last 24 hours if (localStorage.dismissedUpdateToast) { const dismissedUpdateToast = new Date(Number(localStorage.dismissedUpdateToast)); @@ -255,7 +255,7 @@ class=" text-gray-700 dark:text-gray-100 bg-white dark:bg-gray-900 h-screen max-h-[100dvh] overflow-auto flex flex-row justify-end" > {#if loaded} - {#if !['user', 'admin'].includes($user.role)} + {#if !['user', 'admin'].includes($user?.role)} {:else if localDBChats.length > 0}