* clean plate * npm i * log in e2e * global setup login * set license key * Revert "set license key" This reverts commit86d5db2c48. * create datatable test * fix wrong pg_creds * data table + db manager e2e test * DbManagerPage class * small refactor * create resource test + improvements * text db manager in resources * Factor test logic in classes * refactoring * refacto * alter table test * alter table e2e test * set schema in test * nits * fix wrong schema var * Correct setup and parallelization * reducedMotion * tests passing headless ! * bigger timeout * start e2e docker compose * e2e runs on all databases * nit test uid fix * refactp * stash * Better Workspace Storage settings * minio setup * nit * nit * super nit * Permission settings in modal * badge indicator * Fetch alter table metadata much faster * Upgrade duckdb to 1.4.3 * Ducklake tests * Disable transactional DDL for Ducklake (bug on their side) * git ignore env * bigquery tests passes * getJsonEnv * load coldef in parallel * Make Bigquery schema fetching much faster * makeLoadTableMetaDataQuery for entire db in bigquery * refactor getDbSchemas to avoid assignment side effect * fix col def * Better loading state mgmt * snowflake * fix snowflake primary keys * Test CI * fix setTimeout type * remove type node * test e2e ci * Revert "test e2e ci" This reverts commitbf98a755dc. * remove ci * fix snowflake pk query in alternate schemas * nit wait for coldefs * nit snowflake * Snowflake fk fix * UNPROCESSABLE_ENTITY instead of INTERNAL_ERROR * nits * fix alter pk in snowflake * yet other fixes * snowflake tests pass * nits
325 lines
8.5 KiB
Svelte
325 lines
8.5 KiB
Svelte
<script lang="ts">
|
|
import {
|
|
computeSharableHash as computeSharableHash,
|
|
defaultIfEmptyString,
|
|
emptyString,
|
|
truncateHash
|
|
} from '$lib/utils'
|
|
|
|
import type { Schema } from '$lib/common'
|
|
import { Badge, Button } from './common'
|
|
import SchemaForm from './SchemaForm.svelte'
|
|
import SharedBadge from './SharedBadge.svelte'
|
|
|
|
import TimeAgo from './TimeAgo.svelte'
|
|
import Popover from './meltComponents/Popover.svelte'
|
|
import { Calendar, Check, CornerDownLeft } from 'lucide-svelte'
|
|
import RunFormAdvancedPopup from './RunFormAdvancedPopup.svelte'
|
|
import { page } from '$app/stores'
|
|
import { replaceState } from '$app/navigation'
|
|
import JsonInputs from '$lib/components/JsonInputs.svelte'
|
|
import { triggerableByAI } from '$lib/actions/triggerableByAI.svelte'
|
|
import InputSelectedBadge from './schema/InputSelectedBadge.svelte'
|
|
import { untrack } from 'svelte'
|
|
|
|
let reloadArgs = $state(0)
|
|
let jsonEditor: JsonInputs | undefined = $state(undefined)
|
|
let schemaHeight = $state(0)
|
|
let showInputSelectedBadge = $state(false)
|
|
let savedPreviousArgs: Record<string, any> | undefined = $state(undefined)
|
|
|
|
export async function setArgs(nargs: Record<string, any>) {
|
|
args = nargs
|
|
reloadArgs++
|
|
}
|
|
|
|
export function run() {
|
|
runAction(scheduledForStr, args ?? {}, invisible_to_owner, overrideTag)
|
|
}
|
|
|
|
interface Props {
|
|
runnable:
|
|
| {
|
|
summary?: string
|
|
schema?: Schema | any
|
|
description?: string
|
|
path?: string
|
|
is_template?: boolean
|
|
hash?: string
|
|
kind?: string
|
|
can_write?: boolean
|
|
created_at?: string
|
|
created_by?: string
|
|
extra_perms?: Record<string, boolean>
|
|
}
|
|
| undefined
|
|
runAction: (
|
|
scheduledForStr: string | undefined,
|
|
args: Record<string, any>,
|
|
invisible_to_owner: boolean | undefined,
|
|
overrideTag: string | undefined
|
|
) => void
|
|
buttonText?: string
|
|
schedulable?: boolean
|
|
detailed?: boolean
|
|
autofocus?: boolean
|
|
loading?: boolean
|
|
noVariablePicker?: boolean
|
|
viewKeybinding?: boolean
|
|
scheduledForStr: string | undefined
|
|
invisible_to_owner: boolean | undefined
|
|
overrideTag: string | undefined
|
|
args?: Record<string, any>
|
|
jsonView?: boolean
|
|
isValid?: boolean
|
|
}
|
|
|
|
let {
|
|
runnable,
|
|
runAction,
|
|
buttonText = 'Run',
|
|
schedulable = true,
|
|
detailed = true,
|
|
autofocus = false,
|
|
loading = false,
|
|
noVariablePicker = false,
|
|
viewKeybinding = false,
|
|
scheduledForStr = $bindable(),
|
|
invisible_to_owner = $bindable(),
|
|
overrideTag = $bindable(),
|
|
args = $bindable(),
|
|
jsonView = false,
|
|
isValid = $bindable(true)
|
|
}: Props = $props()
|
|
|
|
$effect.pre(() => {
|
|
if (args == undefined) {
|
|
args = {}
|
|
}
|
|
})
|
|
|
|
let debounced: number | undefined = undefined
|
|
|
|
function onArgsChange(args: any) {
|
|
try {
|
|
debounced && clearTimeout(debounced)
|
|
debounced = setTimeout(() => {
|
|
const nurl = new URL(window.location.href)
|
|
nurl.hash = computeSharableHash(args)
|
|
|
|
try {
|
|
replaceState(nurl.toString(), $page.state)
|
|
} catch (e) {
|
|
console.error(e)
|
|
}
|
|
}, 200)
|
|
} catch (e) {
|
|
console.error('Impossible to set hash in args', e)
|
|
}
|
|
}
|
|
|
|
export function setCode(code: string) {
|
|
jsonEditor?.setCode(code)
|
|
}
|
|
$effect(() => {
|
|
Object.keys(args ?? {}).forEach((key) => {
|
|
args?.[key]
|
|
})
|
|
untrack(() => onArgsChange(args))
|
|
})
|
|
</script>
|
|
|
|
<!-- Standalone triggerable registration for the run form -->
|
|
<div
|
|
style="display: none"
|
|
use:triggerableByAI={{
|
|
id: `run-form-${runnable?.path ?? ''}`,
|
|
description: `Form to fill the inputs to run ${runnable?.summary && runnable?.summary.length > 0 ? runnable?.summary : runnable?.path}.
|
|
## Script description: ${runnable?.description ?? ''}.
|
|
## Schema used: ${JSON.stringify(runnable?.schema)}.
|
|
## Current args: ${JSON.stringify(args)}}`,
|
|
callback: (value) => {
|
|
savedPreviousArgs = args
|
|
setArgs(JSON.parse(value ?? '{}'))
|
|
showInputSelectedBadge = true
|
|
},
|
|
showAnimation: false
|
|
}}
|
|
></div>
|
|
|
|
{#snippet acceptButton()}
|
|
<Button
|
|
startIcon={{
|
|
icon: Check
|
|
}}
|
|
size="xs2"
|
|
btnClasses="border border-gray-200 dark:border-gray-600 !bg-surface text-primary"
|
|
on:click={() => {
|
|
showInputSelectedBadge = false
|
|
savedPreviousArgs = undefined
|
|
}}
|
|
>
|
|
Accept
|
|
</Button>
|
|
{/snippet}
|
|
|
|
{#if showInputSelectedBadge}
|
|
<InputSelectedBadge
|
|
inputSelected="ai"
|
|
labelColor="text-violet-800 dark:text-primary"
|
|
className="dark:!bg-violet-800 !bg-violet-200 !border-violet-200 dark:!border-violet-800"
|
|
{acceptButton}
|
|
onReject={() => {
|
|
setArgs(savedPreviousArgs ?? {})
|
|
savedPreviousArgs = undefined
|
|
showInputSelectedBadge = false
|
|
}}
|
|
/>
|
|
{/if}
|
|
<div class="max-w-3xl">
|
|
{#if detailed}
|
|
{#if runnable}
|
|
<div class="flex flex-row flex-wrap justify-between gap-4">
|
|
<div>
|
|
<div class="flex flex-col mb-2">
|
|
<h1 class="break-words py-2 mr-2">
|
|
{defaultIfEmptyString(runnable.summary, runnable.path ?? '')}
|
|
</h1>
|
|
{#if !emptyString(runnable.summary)}
|
|
<h2 class="font-bold pb-4">{runnable.path}</h2>
|
|
{/if}
|
|
|
|
<div class="flex items-center gap-2">
|
|
<span class="text-sm text-primary">
|
|
{#if runnable}
|
|
Edited <TimeAgo agoOnlyIfRecent date={runnable.created_at || ''} /> by {runnable.created_by ||
|
|
'unknown'}
|
|
{/if}
|
|
</span>
|
|
<Badge color="dark-gray">
|
|
{truncateHash(runnable?.hash ?? '')}
|
|
</Badge>
|
|
{#if runnable?.is_template}
|
|
<Badge color="blue">Template</Badge>
|
|
{/if}
|
|
{#if runnable && runnable.kind !== 'runnable'}
|
|
<Badge color="blue">
|
|
{runnable?.kind}
|
|
</Badge>
|
|
{/if}
|
|
<SharedBadge
|
|
canWrite={runnable.can_write ?? true}
|
|
extraPerms={runnable?.extra_perms ?? {}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{:else}
|
|
<h1
|
|
use:triggerableByAI={{
|
|
id: 'run-form-loading',
|
|
description: 'Run form is loading, should scan the page until this is gone'
|
|
}}>Loading...</h1
|
|
>
|
|
{/if}
|
|
{/if}
|
|
{#if runnable?.schema}
|
|
{#if jsonView}
|
|
<div
|
|
class="py-2"
|
|
style="height: {!schemaHeight || schemaHeight < 600 ? 600 : schemaHeight}px"
|
|
data-schema-picker
|
|
>
|
|
<JsonInputs
|
|
bind:this={jsonEditor}
|
|
on:select={(e) => {
|
|
if (e.detail) {
|
|
args = e.detail
|
|
}
|
|
}}
|
|
updateOnBlur={false}
|
|
placeholder={`Write args as JSON.<br/><br/>Example:<br/><br/>{<br/> "foo": "12"<br/>}`}
|
|
/>
|
|
</div>
|
|
{:else if !runnable.schema.properties || Object.keys(runnable.schema.properties).length === 0}
|
|
<div class="text-sm italic">{`This ${runnable.kind ?? 'runnable'} takes no arguments`}</div>
|
|
{:else}
|
|
{#key reloadArgs}
|
|
<div bind:clientHeight={schemaHeight}>
|
|
<SchemaForm
|
|
helperScript={{
|
|
source: 'deployed',
|
|
path: runnable.path!,
|
|
runnable_kind: runnable.hash ? 'script' : 'flow'
|
|
}}
|
|
prettifyHeader
|
|
{noVariablePicker}
|
|
{autofocus}
|
|
schema={runnable.schema}
|
|
bind:isValid
|
|
bind:args
|
|
/>
|
|
</div>
|
|
{/key}
|
|
{/if}
|
|
{:else}
|
|
<div class="text-xs text-primary">No arguments</div>
|
|
{/if}
|
|
{#if schedulable}
|
|
<div class="flex gap-2 items-start flex-wrap justify-between mt-2 md:mt-6">
|
|
<div class="flex-row-reverse flex-wrap flex w-full gap-4">
|
|
<Button
|
|
id="run-form-run-button"
|
|
{loading}
|
|
variant="accent"
|
|
unifiedSize="md"
|
|
btnClasses="!inline-flex"
|
|
disabled={!isValid && !jsonView}
|
|
on:click={() => runAction(scheduledForStr, args ?? {}, invisible_to_owner, overrideTag)}
|
|
shortCut={{ Icon: CornerDownLeft, hide: !viewKeybinding }}
|
|
>
|
|
{scheduledForStr ? 'Schedule to run later' : buttonText}
|
|
</Button>
|
|
<div>
|
|
<Popover placement="bottom" closeButton usePointerDownOutside>
|
|
{#snippet trigger()}
|
|
<Button nonCaptureEvent startIcon={{ icon: Calendar }} unifiedSize="md" color="light">
|
|
Advanced
|
|
</Button>
|
|
{/snippet}
|
|
{#snippet content()}
|
|
<RunFormAdvancedPopup
|
|
bind:scheduledForStr
|
|
bind:invisible_to_owner
|
|
bind:overrideTag
|
|
{runnable}
|
|
/>
|
|
{/snippet}
|
|
</Popover>
|
|
</div>
|
|
</div>
|
|
{#if overrideTag}
|
|
<div class="flex-row-reverse flex w-full text-primary text-sm">
|
|
tag override: {overrideTag}
|
|
</div>
|
|
{/if}
|
|
{#if invisible_to_owner}
|
|
<div class="flex-row-reverse flex w-full text-primary text-sm">
|
|
Job will be invisible to owner
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{:else}
|
|
<Button
|
|
btnClasses="!px-6 !py-1 w-full"
|
|
variant="accent"
|
|
disabled={!isValid && !jsonView}
|
|
on:click={() => runAction(undefined, args ?? {}, invisible_to_owner, overrideTag)}
|
|
shortCut={{ Icon: CornerDownLeft, hide: !viewKeybinding }}
|
|
>
|
|
{buttonText}
|
|
</Button>
|
|
{/if}
|
|
</div>
|