mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-23 16:00:38 +00:00
a0a36a7d52
* update * update 2 * Update package.json * all * update * update * Update package.json
134 lines
3.2 KiB
Svelte
134 lines
3.2 KiB
Svelte
<script lang="ts">
|
|
import { BROWSER } from 'esm-env'
|
|
import { onMount } from 'svelte'
|
|
|
|
import '@codingame/monaco-vscode-standalone-languages'
|
|
import '@codingame/monaco-vscode-standalone-json-language-features'
|
|
import '@codingame/monaco-vscode-standalone-typescript-language-features'
|
|
import { editor as meditor } from 'monaco-editor'
|
|
|
|
import { initializeVscode } from './vscode'
|
|
import EditorTheme from './EditorTheme.svelte'
|
|
import { buildWorkerDefinition } from '$lib/monaco_workers/build_workers'
|
|
|
|
buildWorkerDefinition()
|
|
|
|
const SIDE_BY_SIDE_MIN_WIDTH = 700
|
|
|
|
export let automaticLayout = true
|
|
export let fixedOverflowWidgets = true
|
|
export let defaultLang: string | undefined = undefined
|
|
export let defaultModifiedLang: string | undefined = undefined
|
|
export let defaultOriginal: string | undefined = undefined
|
|
export let defaultModified: string | undefined = undefined
|
|
export let readOnly = false
|
|
|
|
let diffEditor: meditor.IStandaloneDiffEditor | undefined
|
|
let diffDivEl: HTMLDivElement | null = null
|
|
let editorWidth: number = SIDE_BY_SIDE_MIN_WIDTH
|
|
|
|
export let open = false
|
|
async function loadDiffEditor() {
|
|
await initializeVscode()
|
|
|
|
if (!diffDivEl) {
|
|
return
|
|
}
|
|
|
|
diffEditor = meditor.createDiffEditor(diffDivEl!, {
|
|
automaticLayout,
|
|
renderSideBySide: editorWidth >= SIDE_BY_SIDE_MIN_WIDTH,
|
|
originalEditable: false,
|
|
readOnly,
|
|
minimap: {
|
|
enabled: false
|
|
},
|
|
fixedOverflowWidgets,
|
|
scrollBeyondLastLine: false,
|
|
lineDecorationsWidth: 15,
|
|
lineNumbersMinChars: 2,
|
|
scrollbar: { alwaysConsumeMouseWheel: false }
|
|
})
|
|
if (
|
|
defaultOriginal !== undefined &&
|
|
defaultModified !== undefined &&
|
|
defaultLang !== undefined
|
|
) {
|
|
console.log('SETUP')
|
|
setupModel(defaultLang, defaultOriginal, defaultModified, defaultModifiedLang)
|
|
} else {
|
|
console.log('NO SETUP', defaultOriginal, defaultModified, defaultLang)
|
|
}
|
|
}
|
|
|
|
export function setupModel(
|
|
lang: string,
|
|
original?: string,
|
|
modified?: string,
|
|
modifiedLang?: string
|
|
) {
|
|
diffEditor?.setModel({
|
|
original: meditor.createModel('', lang),
|
|
modified: meditor.createModel('', modifiedLang ?? lang)
|
|
})
|
|
if (original) {
|
|
setOriginal(original)
|
|
}
|
|
if (modified) {
|
|
setModified(modified)
|
|
}
|
|
}
|
|
|
|
export function setOriginal(code: string) {
|
|
console.log('setOriginal', code)
|
|
diffEditor?.getModel()?.original?.setValue(code)
|
|
defaultOriginal = code
|
|
}
|
|
|
|
export function getOriginal(): string {
|
|
return diffEditor?.getModel()?.original.getValue() ?? ''
|
|
}
|
|
|
|
export function setModified(code: string) {
|
|
diffEditor?.getModel()?.modified?.setValue(code)
|
|
defaultModified = code
|
|
}
|
|
|
|
export function getModified(): string {
|
|
return diffEditor?.getModel()?.modified.getValue() ?? ''
|
|
}
|
|
|
|
export function show(): void {
|
|
console.log('show')
|
|
open = true
|
|
}
|
|
export function hide(): void {
|
|
open = false
|
|
}
|
|
|
|
function onWidthChange(editorWidth: number) {
|
|
diffEditor?.updateOptions({ renderSideBySide: editorWidth >= SIDE_BY_SIDE_MIN_WIDTH })
|
|
}
|
|
|
|
$: onWidthChange(editorWidth)
|
|
|
|
$: open && diffDivEl && loadDiffEditor()
|
|
|
|
onMount(() => {
|
|
if (BROWSER) {
|
|
return () => {
|
|
diffEditor?.dispose()
|
|
}
|
|
}
|
|
})
|
|
</script>
|
|
|
|
{#if open}
|
|
<EditorTheme />
|
|
<div
|
|
bind:this={diffDivEl}
|
|
class="{$$props.class} editor nonmain-editor"
|
|
bind:clientWidth={editorWidth}
|
|
/>
|
|
{/if}
|