mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-26 00:01:37 +00:00
5d79f33590
* Remove $$props.field usage * Rename slots to ensure no hyphen * _props * _trigger * OnSelectedIteration type correct capitalization * rename _content * Remove afterUpdate * Migrate everything to svelte 5 * array bind * Fix popover * type never * nit fixes * Fixed many trivial errors * onClick * Fix errors * use let: * nit typing * fix: wrap state_referenced_locally vars with untrack() Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Add untrack import * Fix all syntax errors due to untrack migration * Fix undefined errors * Fix more undefined errors * untrack(() => initialOpen) * svelte-ignore * Fix state_descriptors_fixed error in Chart.svelte Use $state.snapshot() to pass plain copies of data/options to Chart.js instead of $state proxies. Chart.js's listenArrayEvents tries to define property descriptors on data arrays, which Svelte 5 proxies reject. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * nit typing * Merge issue * Fix "path is not set" error in resource picker / editor * Fix InputTransformForm error when rerunning some flows * fix npm run check --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
68 lines
1.5 KiB
Svelte
68 lines
1.5 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, untrack } 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 (untrack(() => workspace)) {
|
|
$workspaceStore = untrack(() => 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="default" on:click={appConnect?.back ?? (() => {})}>Back</Button>
|
|
{/if}
|
|
|
|
<Button variant="accent" {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>
|