Spaces:
Build error
Build error
File size: 1,115 Bytes
3b623f5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
<script>
import { toast } from 'svelte-sonner';
import { goto } from '$app/navigation';
import { onMount, getContext } from 'svelte';
const i18n = getContext('i18n');
import { page } from '$app/stores';
import { models } from '$lib/stores';
import { getModelById, updateModelById } from '$lib/apis/models';
import { getModels } from '$lib/apis';
import ModelEditor from '$lib/components/workspace/Models/ModelEditor.svelte';
let model = null;
onMount(async () => {
const _id = $page.url.searchParams.get('id');
if (_id) {
model = await getModelById(localStorage.token, _id).catch((e) => {
return null;
});
if (!model) {
goto('/workspace/models');
}
} else {
goto('/workspace/models');
}
});
const onSubmit = async (modelInfo) => {
const res = await updateModelById(localStorage.token, modelInfo.id, modelInfo);
if (res) {
await models.set(await getModels(localStorage.token));
toast.success($i18n.t('Model updated successfully'));
await goto('/workspace/models');
}
};
</script>
{#if model}
<ModelEditor edit={true} {model} {onSubmit} />
{/if}
|