mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-13 08:05:23 +00:00
68 lines
1.4 KiB
Svelte
68 lines
1.4 KiB
Svelte
<script lang="ts">
|
|
import AppConnectInner from '$lib/components/AppConnectInner.svelte'
|
|
import DarkModeObserver from '$lib/components/DarkModeObserver.svelte'
|
|
import { Button } from '$lib/components/common'
|
|
import { workspaceStore } from '$lib/stores'
|
|
import { onMount } from 'svelte'
|
|
|
|
interface Props {
|
|
resourceType?: string | undefined
|
|
workspace: string
|
|
express?: boolean
|
|
}
|
|
|
|
let { resourceType = $bindable(undefined), workspace, express = false }: Props = $props()
|
|
|
|
let step = $state(1)
|
|
let disabled = $state(false)
|
|
let manual = $state(true)
|
|
|
|
let appConnect: AppConnectInner | undefined = $state(undefined)
|
|
|
|
let darkMode: boolean = $state(false)
|
|
|
|
if (workspace) {
|
|
$workspaceStore = workspace
|
|
}
|
|
|
|
onMount(async () => {
|
|
if (resourceType) {
|
|
appConnect?.open(resourceType)
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<DarkModeObserver bind:darkMode />
|
|
|
|
<div>
|
|
{#if !express}
|
|
<div class="flex flex-row-reverse w-full pb-2">
|
|
<div class="flex gap-2">
|
|
{#if step > 2}
|
|
<Button variant="border" on:click={appConnect?.back ?? (() => {})}>Back</Button>
|
|
{/if}
|
|
|
|
<Button {disabled} on:click={appConnect?.next ?? (() => {})}>
|
|
{#if step == 2 && !manual}
|
|
Connect
|
|
{:else if step == 1}
|
|
Next
|
|
{:else}
|
|
Save
|
|
{/if}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
<AppConnectInner
|
|
{express}
|
|
bind:this={appConnect}
|
|
bind:step
|
|
bind:resourceType
|
|
bind:disabled
|
|
bind:manual
|
|
on:error
|
|
on:refresh
|
|
/>
|
|
</div>
|