mirror of
https://github.com/open-webui/open-webui.git
synced 2026-08-28 05:27:35 +00:00
refac
This commit is contained in:
parent
5cecb7dbfa
commit
178ccb30e1
2 changed files with 2 additions and 21 deletions
|
|
@ -96,7 +96,6 @@
|
|||
|
||||
const BREAKPOINT = 768;
|
||||
const DEFAULT_PINNED_ITEMS = ['notes', 'workspace'];
|
||||
const MOBILE_SIDEBAR_SETTLE_MS = 210;
|
||||
const sidebarMountTransition = (node: Element, params: Record<string, unknown>) =>
|
||||
$mobile ? { duration: 0, css: () => '' } : slide(node, params);
|
||||
|
||||
|
|
@ -577,18 +576,9 @@
|
|||
selectedChatId = null;
|
||||
};
|
||||
|
||||
const focusChatInputSoon = () => {
|
||||
setTimeout(() => {
|
||||
document.getElementById('chat-input')?.focus({ preventScroll: true });
|
||||
}, MOBILE_SIDEBAR_SETTLE_MS);
|
||||
};
|
||||
|
||||
const closeMobileSidebar = (focusChatInput = false) => {
|
||||
const closeMobileSidebar = () => {
|
||||
if ($mobile) {
|
||||
showSidebar.set(false);
|
||||
if (focusChatInput) {
|
||||
focusChatInputSoon();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -798,7 +788,7 @@
|
|||
const newChatHandler = async () => {
|
||||
selectedChatId = null;
|
||||
selectedFolder.set(null);
|
||||
closeMobileSidebar(true);
|
||||
closeMobileSidebar();
|
||||
|
||||
if ($user?.role !== 'admin' && $user?.permissions?.chat?.temporary_enforced) {
|
||||
await temporaryChatEnabled.set(true);
|
||||
|
|
|
|||
|
|
@ -58,8 +58,6 @@
|
|||
import { createMessagesList } from '$lib/utils';
|
||||
import { getOutputText } from '$lib/components/chat/Messages/structuredOutput';
|
||||
|
||||
const MOBILE_SIDEBAR_SETTLE_MS = 210;
|
||||
|
||||
const i18n = getContext('i18n');
|
||||
|
||||
const dispatch = createEventDispatcher();
|
||||
|
|
@ -113,12 +111,6 @@
|
|||
}
|
||||
};
|
||||
|
||||
const focusChatInputSoon = () => {
|
||||
setTimeout(() => {
|
||||
document.getElementById('chat-input')?.focus({ preventScroll: true });
|
||||
}, MOBILE_SIDEBAR_SETTLE_MS);
|
||||
};
|
||||
|
||||
$: if (openPreview && closeActiveHoverPreview !== closeHoverPreview) {
|
||||
closeActiveHoverPreview?.();
|
||||
closeActiveHoverPreview = closeHoverPreview;
|
||||
|
|
@ -577,7 +569,6 @@
|
|||
|
||||
if ($mobile) {
|
||||
showSidebar.set(false);
|
||||
focusChatInputSoon();
|
||||
}
|
||||
|
||||
// Optimistically mark as read in UI when clicked
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue