Files
windmill/frontend/src/lib/components/flows/CreateActionsFlow.svelte
T
2024-08-28 09:17:10 +02:00

75 lines
1.9 KiB
Svelte

<script lang="ts">
import { goto } from '$lib/navigation'
import { base } from '$lib/base'
import BarsStaggered from '$lib/components/icons/BarsStaggered.svelte'
import { Button } from '$lib/components/common'
import Drawer from '$lib/components/common/drawer/Drawer.svelte'
import DrawerContent from '$lib/components/common/drawer/DrawerContent.svelte'
import { importFlowStore } from '$lib/components/flows/flowStore'
import { Loader2, Plus } from 'lucide-svelte'
import YAML from 'yaml'
let drawer: Drawer | undefined = undefined
let pendingRaw: string
let importType: 'yaml' | 'json' = 'yaml'
async function importRaw() {
$importFlowStore = importType === 'yaml' ? YAML.parse(pendingRaw) : JSON.parse(pendingRaw)
await goto('/flows/add')
drawer?.closeDrawer?.()
}
</script>
<!-- Buttons -->
<div class="flex flex-row gap-2">
<Button
size="sm"
spacingSize="xl"
startIcon={{ icon: Plus }}
endIcon={{ icon: BarsStaggered }}
href="{base}/flows/add?nodraft=true"
color="marine"
dropdownItems={[
{
label: 'Import from YAML',
onClick: () => {
drawer?.toggleDrawer?.()
importType = 'yaml'
}
},
{
label: 'Import from JSON',
onClick: () => {
drawer?.toggleDrawer?.()
importType = 'json'
}
}
]}
>
Flow
</Button>
</div>
<!-- Raw JSON -->
<Drawer bind:this={drawer} size="800px">
<DrawerContent
title={'Import flow from ' + (importType === 'yaml' ? 'YAML' : 'JSON')}
on:close={() => drawer?.toggleDrawer?.()}
>
{#await import('$lib/components/SimpleEditor.svelte')}
<Loader2 class="animate-spin" />
{:then Module}
<Module.default
bind:code={pendingRaw}
lang={importType}
class="h-full"
fixedOverflowWidgets={false}
/>
{/await}
<svelte:fragment slot="actions">
<Button size="sm" on:click={importRaw}>Import</Button>
</svelte:fragment>
</DrawerContent>
</Drawer>