mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-08 08:04:25 +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>
54 lines
1.1 KiB
Svelte
54 lines
1.1 KiB
Svelte
<script lang="ts">
|
|
import { BROWSER } from 'esm-env'
|
|
|
|
import { editor as meditor, KeyMod, KeyCode } from 'monaco-editor'
|
|
|
|
import { onDestroy, onMount } from 'svelte'
|
|
|
|
let divEl: HTMLDivElement | null = $state(null)
|
|
let editor: meditor.IStandaloneCodeEditor
|
|
|
|
|
|
interface Props {
|
|
code?: string;
|
|
class?: string;
|
|
}
|
|
|
|
let { code = '', class: className = '' }: Props = $props();
|
|
|
|
|
|
async function loadMonaco() {
|
|
editor = meditor.create(divEl as HTMLDivElement, {
|
|
value: code,
|
|
language: 'graphql',
|
|
readOnly: true,
|
|
automaticLayout: true,
|
|
scrollBeyondLastLine: false,
|
|
lineNumbers: 'off',
|
|
minimap: { enabled: false }
|
|
})
|
|
|
|
// In VSCode webview (iframe), clipboard operations need to use execCommand
|
|
// because the webview has restricted clipboard API access
|
|
if (window.parent !== window) {
|
|
editor.addCommand(KeyMod.CtrlCmd | KeyCode.KeyC, function () {
|
|
document.execCommand('copy')
|
|
})
|
|
}
|
|
}
|
|
|
|
onMount(async () => {
|
|
if (BROWSER) {
|
|
await loadMonaco()
|
|
}
|
|
})
|
|
|
|
onDestroy(() => {
|
|
try {
|
|
editor && editor.dispose()
|
|
} catch (err) {}
|
|
})
|
|
</script>
|
|
|
|
<div bind:this={divEl} class="{className} editor"></div>
|