mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-11 20:05:19 +00:00
97 lines
2.3 KiB
Svelte
97 lines
2.3 KiB
Svelte
<script>
|
|
import { goto } from '$app/navigation';
|
|
import { createNewTool, getTools } from '$lib/apis/tools';
|
|
import ToolkitEditor from '$lib/components/workspace/Tools/ToolkitEditor.svelte';
|
|
import { WEBUI_VERSION } from '$lib/constants';
|
|
import { tools } from '$lib/stores';
|
|
import { compareVersion, extractFrontmatter } from '$lib/utils';
|
|
import { onMount, getContext } from 'svelte';
|
|
import { toast } from 'svelte-sonner';
|
|
|
|
const i18n = getContext('i18n');
|
|
|
|
let mounted = false;
|
|
let clone = false;
|
|
let tool = null;
|
|
|
|
const saveHandler = async (data) => {
|
|
console.log(data);
|
|
|
|
const manifest = extractFrontmatter(data.content);
|
|
if (compareVersion(manifest?.required_open_webui_version ?? '0.0.0', WEBUI_VERSION)) {
|
|
console.log('Version is lower than required');
|
|
toast.error(
|
|
$i18n.t(
|
|
'Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})',
|
|
{
|
|
OPEN_WEBUI_VERSION: WEBUI_VERSION,
|
|
REQUIRED_VERSION: manifest?.required_open_webui_version ?? '0.0.0'
|
|
}
|
|
)
|
|
);
|
|
return;
|
|
}
|
|
|
|
const res = await createNewTool(localStorage.token, {
|
|
id: data.id,
|
|
name: data.name,
|
|
meta: data.meta,
|
|
content: data.content,
|
|
access_control: data.access_control
|
|
}).catch((error) => {
|
|
toast.error(`${error}`);
|
|
return null;
|
|
});
|
|
|
|
if (res) {
|
|
toast.success($i18n.t('Tool created successfully'));
|
|
tools.set(await getTools(localStorage.token));
|
|
|
|
await goto('/workspace/tools');
|
|
}
|
|
};
|
|
|
|
onMount(() => {
|
|
window.addEventListener('message', async (event) => {
|
|
if (
|
|
!['https://openwebui.com', 'https://www.openwebui.com', 'http://localhost:9999'].includes(
|
|
event.origin
|
|
)
|
|
)
|
|
return;
|
|
|
|
tool = JSON.parse(event.data);
|
|
console.log(tool);
|
|
});
|
|
|
|
if (window.opener ?? false) {
|
|
window.opener.postMessage('loaded', '*');
|
|
}
|
|
|
|
if (sessionStorage.tool) {
|
|
tool = JSON.parse(sessionStorage.tool);
|
|
sessionStorage.removeItem('tool');
|
|
|
|
console.log(tool);
|
|
clone = true;
|
|
}
|
|
|
|
mounted = true;
|
|
});
|
|
</script>
|
|
|
|
{#if mounted}
|
|
{#key tool?.content}
|
|
<ToolkitEditor
|
|
id={tool?.id ?? ''}
|
|
name={tool?.name ?? ''}
|
|
meta={tool?.meta ?? { description: '' }}
|
|
content={tool?.content ?? ''}
|
|
access_control={null}
|
|
{clone}
|
|
on:save={(e) => {
|
|
saveHandler(e.detail);
|
|
}}
|
|
/>
|
|
{/key}
|
|
{/if}
|