mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-05 08:02:18 +00:00
* 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>
39 lines
1.0 KiB
Svelte
39 lines
1.0 KiB
Svelte
<script lang="ts">
|
|
import { untrack } from 'svelte'
|
|
import AiChatLayout from './copilot/chat/AiChatLayout.svelte'
|
|
import type { FlowBuilderProps } from './flow_builder'
|
|
import FlowBuilder from './FlowBuilder.svelte'
|
|
|
|
let {
|
|
flowStore: oldFlowStore,
|
|
flowStateStore: oldFlowStateStore,
|
|
disableAi,
|
|
light,
|
|
...props
|
|
}: FlowBuilderProps & { light?: boolean } = $props()
|
|
|
|
let flowStore = $state(untrack(() => oldFlowStore))
|
|
let flowStateStore = $state(untrack(() => oldFlowStateStore))
|
|
|
|
let trialRender = $state(true)
|
|
|
|
if (untrack(() => light)) {
|
|
setTimeout(() => {
|
|
trialRender = false
|
|
}, 1000 * 300)
|
|
}
|
|
</script>
|
|
|
|
{#if trialRender}
|
|
<AiChatLayout noPadding={true} {disableAi}>
|
|
{#if light}<div class="bg-red-500 absolute z-10">Trial version</div>{/if}
|
|
<FlowBuilder {flowStore} {flowStateStore} {disableAi} {...props} />
|
|
</AiChatLayout>
|
|
{:else}
|
|
<div class="flex flex-col items-center justify-center h-screen">
|
|
<div class="text-2xl font-bold"
|
|
>Windmill Whitelabel SDK is in trial mode and disabled itself after 5 minutes</div
|
|
>
|
|
</div>
|
|
{/if}
|