mirror of
https://github.com/open-webui/open-webui
synced 2025-04-06 13:45:41 +00:00
enh: temporary-chat url search param
This commit is contained in:
parent
a93b0ac143
commit
dc4c6b3b14
src
@ -270,9 +270,11 @@
|
|||||||
//////////////////////////
|
//////////////////////////
|
||||||
|
|
||||||
const initNewChat = async () => {
|
const initNewChat = async () => {
|
||||||
window.history.replaceState(history.state, '', `/`);
|
if ($page.url.pathname.includes('/c/')) {
|
||||||
await chatId.set('');
|
window.history.replaceState(history.state, '', `/`);
|
||||||
|
}
|
||||||
|
|
||||||
|
await chatId.set('');
|
||||||
autoScroll = true;
|
autoScroll = true;
|
||||||
|
|
||||||
title = '';
|
title = '';
|
||||||
|
@ -533,6 +533,14 @@
|
|||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
newChatButton?.click();
|
newChatButton?.click();
|
||||||
}, 0);
|
}, 0);
|
||||||
|
|
||||||
|
// add 'temporary-chat=true' to the URL
|
||||||
|
if ($temporaryChatEnabled) {
|
||||||
|
history.replaceState(null, '', '?temporary-chat=true');
|
||||||
|
} else {
|
||||||
|
history.replaceState(null, '', location.pathname);
|
||||||
|
}
|
||||||
|
|
||||||
show = false;
|
show = false;
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
@ -32,7 +32,8 @@
|
|||||||
config,
|
config,
|
||||||
showCallOverlay,
|
showCallOverlay,
|
||||||
tools,
|
tools,
|
||||||
functions
|
functions,
|
||||||
|
temporaryChatEnabled
|
||||||
} from '$lib/stores';
|
} from '$lib/stores';
|
||||||
|
|
||||||
import SettingsModal from '$lib/components/chat/SettingsModal.svelte';
|
import SettingsModal from '$lib/components/chat/SettingsModal.svelte';
|
||||||
@ -40,6 +41,7 @@
|
|||||||
import ChangelogModal from '$lib/components/ChangelogModal.svelte';
|
import ChangelogModal from '$lib/components/ChangelogModal.svelte';
|
||||||
import AccountPending from '$lib/components/layout/Overlay/AccountPending.svelte';
|
import AccountPending from '$lib/components/layout/Overlay/AccountPending.svelte';
|
||||||
import { getFunctions } from '$lib/apis/functions';
|
import { getFunctions } from '$lib/apis/functions';
|
||||||
|
import { page } from '$app/stores';
|
||||||
|
|
||||||
const i18n = getContext('i18n');
|
const i18n = getContext('i18n');
|
||||||
|
|
||||||
@ -177,6 +179,10 @@
|
|||||||
showChangelog.set(localStorage.version !== $config.version);
|
showChangelog.set(localStorage.version !== $config.version);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($page.url.searchParams.get('temporary-chat') === 'true') {
|
||||||
|
temporaryChatEnabled.set(true);
|
||||||
|
}
|
||||||
|
|
||||||
await tick();
|
await tick();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user