mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-06 08:01:35 +00:00
* runs on svelte 5 * Line component from svelte-chartjs * Replaced all svelte-chartjs occurrences with custom wrapper * Fix props mistake * Fix illegal table structures * self-closing-tags fix * aria labels * Fixed trivial warnings and errors * @tanstack/svelte-table fix * upgrade to vite 6 * svelte-kit sync before running svelte-check * Remove on:clear which is actually on:removeAll and already handled by on:change * fix worker tags not displaying in Autoscaling * Try to fix svelte-kit sync not working during CI * remove warnings * Fix add flow page crashing * access worldStore before assignment fix * fix infinite recursions in App Editor * Replaced JSON.stringify with proper deepEqual * component mount api changed (no longer classes) * fix ci errors * Fix infinite loops in background runnable panel * factored effect on deep equal logic in onObjChange * fix "Add" not working in AgGrid Table * Replaced legacy component.$set api * Fix multiselect infinite value reaction * Fix flow input fields resetting when opening their edit tab * fix date input resetting when typing year * Remove !p-0 affecting subgrid dotted borders * fix missing debounceTemplate causing hundreds of updates * Fix AgGrid action refreshes and disppearing * resolve getItems generating random ids every rerun * fix cannot access items before init * fix sort lambda arguments being undefined * Revert "Remove !p-0 affecting subgrid dotted borders" This reverts commit c62809bb45d682a48376b071680645ed4e1c601b. * fix input not updating in decision tree editor * Update frontend/src/lib/components/schema/EditableSchemaWrapper.svelte Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Re-added padding affecting subgrid dotted borders (#5479) * remove !p-0 in preset components * removed extra padding on accordion tabs subgrid * Fix non-reactive SchemaForm * dirty fix for the oneOf bug * Fix warnings and update svelte-exmarkdown for svelte 5 * fix dnd not working * don't mount component like objects --------- Co-authored-by: Diego Imbert <diegoimbert@protonmail.com> Co-authored-by: Diego Imbert <70353967+diegoimbert@users.noreply.github.com> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
253 lines
7.2 KiB
Svelte
253 lines
7.2 KiB
Svelte
<script lang="ts">
|
|
import { VariableService } from '$lib/gen'
|
|
import Path from './Path.svelte'
|
|
import { createEventDispatcher } from 'svelte'
|
|
import { userStore, workspaceStore } from '$lib/stores'
|
|
import Tooltip from './Tooltip.svelte'
|
|
import { Button } from './common'
|
|
import Drawer from './common/drawer/Drawer.svelte'
|
|
import DrawerContent from './common/drawer/DrawerContent.svelte'
|
|
import Alert from './common/alert/Alert.svelte'
|
|
import Toggle from './Toggle.svelte'
|
|
import type SimpleEditor from './SimpleEditor.svelte'
|
|
import { sendUserToast } from '$lib/toast'
|
|
import { canWrite, isOwner } from '$lib/utils'
|
|
import ToggleButtonGroup from './common/toggleButton-v2/ToggleButtonGroup.svelte'
|
|
import ToggleButton from './common/toggleButton-v2/ToggleButton.svelte'
|
|
import Section from './Section.svelte'
|
|
import { Loader2, Save } from 'lucide-svelte'
|
|
import autosize from '$lib/autosize'
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
let path: string = ''
|
|
|
|
let variable: {
|
|
value: string
|
|
is_secret: boolean
|
|
description: string
|
|
} = {
|
|
value: '',
|
|
is_secret: true,
|
|
description: ''
|
|
}
|
|
let valid = true
|
|
|
|
let drawer: Drawer
|
|
let edit = false
|
|
let initialPath: string
|
|
let pathError = ''
|
|
let can_write = true
|
|
|
|
export function initNew(): void {
|
|
variable = {
|
|
value: '',
|
|
is_secret: true,
|
|
description: ''
|
|
}
|
|
edit = false
|
|
initialPath = ''
|
|
path = ''
|
|
can_write = true
|
|
drawer.openDrawer()
|
|
}
|
|
|
|
export async function editVariable(edit_path: string): Promise<void> {
|
|
edit = true
|
|
const getV = await VariableService.getVariable({
|
|
workspace: $workspaceStore ?? '',
|
|
path: edit_path,
|
|
decryptSecret: false
|
|
})
|
|
can_write =
|
|
getV.workspace_id == $workspaceStore &&
|
|
canWrite(edit_path, getV.extra_perms ?? {}, $userStore)
|
|
|
|
variable = {
|
|
value: getV.value ?? '',
|
|
is_secret: getV.is_secret,
|
|
description: getV.description ?? ''
|
|
}
|
|
initialPath = edit_path
|
|
path = edit_path
|
|
drawer.openDrawer()
|
|
}
|
|
|
|
export async function loadVariable(path: string): Promise<void> {
|
|
const getV = await VariableService.getVariable({
|
|
workspace: $workspaceStore ?? '',
|
|
path,
|
|
decryptSecret: true
|
|
})
|
|
variable.value = getV.value ?? ''
|
|
editor?.setCode(variable.value)
|
|
}
|
|
|
|
const MAX_VARIABLE_LENGTH = 10000
|
|
|
|
$: valid = variable.value.length <= MAX_VARIABLE_LENGTH
|
|
|
|
async function createVariable(): Promise<void> {
|
|
await VariableService.createVariable({
|
|
workspace: $workspaceStore!,
|
|
requestBody: {
|
|
path,
|
|
value: variable.value,
|
|
is_secret: variable.is_secret,
|
|
description: variable.description
|
|
}
|
|
})
|
|
sendUserToast(`Created variable ${path}`)
|
|
dispatch('create')
|
|
drawer.closeDrawer()
|
|
}
|
|
|
|
async function updateVariable(): Promise<void> {
|
|
try {
|
|
const getV = await VariableService.getVariable({
|
|
workspace: $workspaceStore ?? '',
|
|
path: initialPath,
|
|
decryptSecret: false
|
|
})
|
|
|
|
await VariableService.updateVariable({
|
|
workspace: $workspaceStore!,
|
|
path: initialPath,
|
|
requestBody: {
|
|
path: getV.path != path ? path : undefined,
|
|
value: variable.value == '' ? undefined : variable.value,
|
|
is_secret: getV.is_secret != variable.is_secret ? variable.is_secret : undefined,
|
|
description: getV.description != variable.description ? variable.description : undefined
|
|
}
|
|
})
|
|
sendUserToast(`Updated variable ${initialPath}`)
|
|
dispatch('create')
|
|
drawer.closeDrawer()
|
|
} catch (err) {
|
|
sendUserToast(`Could not update variable: ${err.body}`, true)
|
|
}
|
|
}
|
|
let editorKind: 'plain' | 'json' | 'yaml' = 'plain'
|
|
let editor: SimpleEditor | undefined = undefined
|
|
</script>
|
|
|
|
<Drawer bind:this={drawer} size="900px">
|
|
<DrawerContent
|
|
title={edit ? `Update variable at ${initialPath}` : 'Add a variable'}
|
|
on:close={drawer.closeDrawer}
|
|
>
|
|
<div class="flex flex-col gap-8">
|
|
{#if !can_write}
|
|
<Alert type="warning" title="Only read access">
|
|
You only have read access to this resource and cannot edit it
|
|
</Alert>
|
|
{/if}
|
|
<Section label="Path">
|
|
<div class="flex flex-col gap-4">
|
|
<Path
|
|
disabled={initialPath != '' && !isOwner(initialPath, $userStore, $workspaceStore)}
|
|
bind:error={pathError}
|
|
bind:path
|
|
{initialPath}
|
|
namePlaceholder="variable"
|
|
kind="variable"
|
|
/>
|
|
<Toggle
|
|
on:change={() => edit && loadVariable(initialPath)}
|
|
bind:checked={variable.is_secret}
|
|
disabled={edit && $userStore?.operator}
|
|
options={{ right: 'Secret' }}
|
|
/>
|
|
{#if variable.is_secret}
|
|
<Alert type="warning" title="Audit log for each access">
|
|
Every secret is encrypted at rest and in transit with a key specific to this
|
|
workspace. In addition, any read of a secret variable generates an audit log whose
|
|
operation name is: variables.decrypt_secret
|
|
</Alert>
|
|
{/if}
|
|
</div>
|
|
</Section>
|
|
<Section label="Variable value">
|
|
<svelte:fragment slot="header">
|
|
<span class="text-sm text-tertiary mr-4 font-normal">
|
|
({variable.value.length}/{MAX_VARIABLE_LENGTH} characters)
|
|
</span>
|
|
</svelte:fragment>
|
|
<div>
|
|
<div class="mb-1">
|
|
{#if edit && variable.is_secret}{#if $userStore?.operator}
|
|
<div class="p-2 border">Operators cannot load secret value</div>
|
|
{:else}
|
|
<Button variant="border" size="xs" on:click={() => loadVariable(initialPath)}
|
|
>Load secret value<Tooltip>Will generate an audit log</Tooltip></Button
|
|
>{/if}{/if}
|
|
</div>
|
|
<div class="flex flex-col gap-2">
|
|
<ToggleButtonGroup bind:selected={editorKind} let:item>
|
|
<ToggleButton value="plain" label="Plain" {item} />
|
|
<ToggleButton value="json" label="Json" {item} />
|
|
<ToggleButton value="yaml" label="YAML" {item} />
|
|
</ToggleButtonGroup>
|
|
{#if editorKind == 'plain'}
|
|
<textarea
|
|
disabled={!can_write}
|
|
rows="4"
|
|
use:autosize
|
|
bind:value={variable.value}
|
|
placeholder="Update variable value"
|
|
></textarea>
|
|
{:else if editorKind == 'json'}
|
|
<div class="border rounded mb-4 w-full">
|
|
{#await import('$lib/components/SimpleEditor.svelte')}
|
|
<Loader2 class="animate-spin" />
|
|
{:then Module}
|
|
<Module.default
|
|
bind:this={editor}
|
|
autoHeight
|
|
lang="json"
|
|
bind:code={variable.value}
|
|
fixedOverflowWidgets={false}
|
|
/>
|
|
{/await}
|
|
</div>
|
|
{:else if editorKind == 'yaml'}
|
|
<div class="border rounded mb-4 w-full">
|
|
{#await import('$lib/components/SimpleEditor.svelte')}
|
|
<Loader2 class="animate-spin" />
|
|
{:then Module}
|
|
<Module.default
|
|
bind:this={editor}
|
|
autoHeight
|
|
lang="yaml"
|
|
bind:code={variable.value}
|
|
fixedOverflowWidgets={false}
|
|
/>
|
|
{/await}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</Section>
|
|
<Section label="Description">
|
|
<textarea
|
|
rows="4"
|
|
use:autosize
|
|
bind:value={variable.description}
|
|
placeholder="Used for X"
|
|
></textarea>
|
|
</Section>
|
|
</div>
|
|
<svelte:fragment slot="actions">
|
|
<Button
|
|
on:click={() => (edit ? updateVariable() : createVariable())}
|
|
disabled={!can_write || !valid || pathError != ''}
|
|
startIcon={{ icon: Save }}
|
|
color="dark"
|
|
size="sm"
|
|
>
|
|
{edit ? 'Update' : 'Save'}
|
|
</Button>
|
|
</svelte:fragment>
|
|
</DrawerContent>
|
|
</Drawer>
|