mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 00:02:19 +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>
101 lines
2.1 KiB
Svelte
101 lines
2.1 KiB
Svelte
<script lang="ts">
|
|
import { Loader2, Pipette } from 'lucide-svelte'
|
|
import { createEventDispatcher } from 'svelte'
|
|
// @ts-ignore
|
|
import type SimpleEditor from './SimpleEditor.svelte'
|
|
|
|
import { Button } from './common'
|
|
|
|
import Toggle from './Toggle.svelte'
|
|
|
|
import S3FilePicker from './S3FilePicker.svelte'
|
|
import FileUpload from './common/fileUpload/FileUpload.svelte'
|
|
|
|
interface Props {
|
|
value: any
|
|
editor?: SimpleEditor | undefined
|
|
}
|
|
|
|
let { value = $bindable(), editor = $bindable(undefined) }: Props = $props()
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
let s3FilePicker: S3FilePicker | undefined = $state()
|
|
let s3FileUploadRawMode: boolean | undefined = $state()
|
|
let el: HTMLTextAreaElement | undefined = undefined
|
|
let rawValue: string | undefined = $state(undefined)
|
|
|
|
function evalValueToRaw() {
|
|
rawValue = JSON.stringify(value, null, 2)
|
|
}
|
|
|
|
evalValueToRaw()
|
|
|
|
export function focus() {
|
|
el?.focus()
|
|
if (el) {
|
|
el.style.height = '5px'
|
|
el.style.height = el.scrollHeight + 50 + 'px'
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<S3FilePicker
|
|
bind:this={s3FilePicker}
|
|
bind:selectedFileKey={value}
|
|
onClose={() => {
|
|
rawValue = JSON.stringify(value, null, 2)
|
|
editor?.setCode(rawValue)
|
|
}}
|
|
readOnlyMode={false}
|
|
/>
|
|
|
|
<div class="flex flex-col w-full gap-1">
|
|
<Toggle
|
|
class="flex justify-end"
|
|
bind:checked={s3FileUploadRawMode}
|
|
size="xs"
|
|
options={{ left: 'Raw S3 object input' }}
|
|
/>
|
|
{#if s3FileUploadRawMode}
|
|
{#await import('$lib/components/JsonEditor.svelte')}
|
|
<Loader2 class="animate-spin" />
|
|
{:then Module}
|
|
<Module.default
|
|
bind:editor
|
|
on:focus={(e) => {
|
|
dispatch('focus')
|
|
}}
|
|
code={JSON.stringify(value ?? { s3: '' }, null, 2)}
|
|
bind:value
|
|
/>
|
|
{/await}
|
|
{:else}
|
|
<FileUpload
|
|
allowMultiple={false}
|
|
randomFileKey={true}
|
|
on:addition={(evt) => {
|
|
value = {
|
|
s3: evt.detail?.path ?? ''
|
|
}
|
|
}}
|
|
on:deletion={(evt) => {
|
|
value = {
|
|
s3: ''
|
|
}
|
|
}}
|
|
defaultValue={value?.s3}
|
|
/>
|
|
{/if}
|
|
<Button
|
|
variant="default"
|
|
unifiedSize="sm"
|
|
on:click={() => {
|
|
s3FilePicker?.open?.(value)
|
|
}}
|
|
startIcon={{ icon: Pipette }}
|
|
>
|
|
Choose an object from the catalog
|
|
</Button>
|
|
</div>
|