open-webui/src/lib/components/ImportModal.svelte

126 lines
3.1 KiB
Svelte
Raw Normal View History

2025-05-27 03:52:22 +08:00
<script lang="ts">
import { toast } from 'svelte-sonner';
import { getContext, onMount } from 'svelte';
const i18n = getContext('i18n');
2025-06-26 06:44:45 +08:00
import Spinner from '$lib/components/common/Spinner.svelte';
2025-05-27 03:52:22 +08:00
import Modal from '$lib/components/common/Modal.svelte';
2025-06-26 06:44:45 +08:00
import XMark from '$lib/components/icons/XMark.svelte';
2025-05-27 03:52:22 +08:00
import { extractFrontmatter } from '$lib/utils';
export let show = false;
export let onImport = (e) => {};
export let onClose = () => {};
2025-05-29 06:08:54 +08:00
export let loadUrlHandler: Function = () => {};
export let successMessage: string = '';
2025-05-27 03:52:22 +08:00
let loading = false;
let url = '';
const submitHandler = async () => {
loading = true;
if (!url) {
toast.error($i18n.t('Please enter a valid URL'));
loading = false;
return;
}
2025-05-29 06:08:54 +08:00
const res = await loadUrlHandler(url).catch((err) => {
2025-05-27 03:52:22 +08:00
toast.error(`${err}`);
2025-05-29 06:08:54 +08:00
loading = false;
2025-05-27 03:52:22 +08:00
return null;
});
if (res) {
2025-05-29 06:36:33 +08:00
if (!successMessage) {
successMessage = $i18n.t('Function imported successfully');
}
toast.success(successMessage);
2025-05-27 03:52:22 +08:00
let func = res;
func.id = func.id || func.name.replace(/\s+/g, '_').toLowerCase();
const frontmatter = extractFrontmatter(res.content); // Ensure frontmatter is extracted
if (frontmatter?.title) {
func.name = frontmatter.title;
}
2025-05-27 04:40:55 +08:00
func.meta = {
...(func.meta ?? {}),
description: frontmatter?.description ?? func.name
};
2025-05-27 03:52:22 +08:00
onImport(func);
show = false;
}
};
</script>
<Modal size="sm" bind:show>
<div>
<div class=" flex justify-between dark:text-gray-300 px-5 pt-4 pb-2">
<div class=" text-lg font-medium self-center">{$i18n.t('Import')}</div>
<button
class="self-center"
on:click={() => {
show = false;
}}
>
2025-06-27 19:44:26 +08:00
<XMark className={'size-5'} />
2025-05-27 03:52:22 +08:00
</button>
</div>
<div class="flex flex-col md:flex-row w-full px-4 pb-3 md:space-x-4 dark:text-gray-200">
<div class=" flex flex-col w-full sm:flex-row sm:justify-center sm:space-x-6">
<form
class="flex flex-col w-full"
on:submit|preventDefault={() => {
submitHandler();
}}
>
<div class="px-1">
<div class="flex flex-col w-full">
<div class=" mb-1 text-xs text-gray-500">{$i18n.t('URL')}</div>
<div class="flex-1">
<input
class="w-full text-sm bg-transparent disabled:text-gray-500 dark:disabled:text-gray-500 outline-hidden"
type="url"
bind:value={url}
2025-05-29 06:36:33 +08:00
placeholder={$i18n.t('Enter the URL to import')}
2025-05-27 03:52:22 +08:00
required
/>
2025-05-29 06:36:33 +08:00
<!-- $i18n.t('Enter the URL of the function to import') -->
2025-05-27 03:52:22 +08:00
</div>
</div>
</div>
<div class="flex justify-end pt-3 text-sm font-medium">
<button
class="px-3.5 py-1.5 text-sm font-medium bg-black hover:bg-gray-900 text-white dark:bg-white dark:text-black dark:hover:bg-gray-100 transition rounded-full flex flex-row space-x-1 items-center {loading
? ' cursor-not-allowed'
: ''}"
type="submit"
disabled={loading}
>
{$i18n.t('Import')}
{#if loading}
<div class="ml-2 self-center">
2025-06-26 06:44:45 +08:00
<Spinner />
2025-05-27 03:52:22 +08:00
</div>
{/if}
</button>
</div>
</form>
</div>
</div>
</div>
</Modal>