mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-10 00:05:27 +00:00
* feat: Add back apply code button in CodeDisplay for non-diff-based providers - Added apply button that shows only in script mode for non-diff-based providers - Button allows applying code directly to the current editor - Only shows for providers that don't support diff-based editing (excludes openai, anthropic, googleai, azure_openai) Fixes #6799 Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com> * better * not only for non diff providers --------- Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com> Co-authored-by: centdix <farhadg110@gmail.com>
146 lines
3.6 KiB
Svelte
146 lines
3.6 KiB
Svelte
<script lang="ts">
|
|
import Highlight, { LineNumbers } from 'svelte-highlight'
|
|
import python from 'svelte-highlight/languages/python'
|
|
import typescript from 'svelte-highlight/languages/typescript'
|
|
import go from 'svelte-highlight/languages/go'
|
|
import shell from 'svelte-highlight/languages/shell'
|
|
import graphql from 'svelte-highlight/languages/graphql'
|
|
import javascript from 'svelte-highlight/languages/javascript'
|
|
import sql from 'svelte-highlight/languages/sql'
|
|
import powershell from 'svelte-highlight/languages/powershell'
|
|
import php from 'svelte-highlight/languages/php'
|
|
import rust from 'svelte-highlight/languages/rust'
|
|
import csharp from 'svelte-highlight/languages/csharp'
|
|
import yaml from 'svelte-highlight/languages/yaml'
|
|
import java from 'svelte-highlight/languages/java'
|
|
import ruby from 'svelte-highlight/languages/ruby'
|
|
import type { Script } from '$lib/gen'
|
|
import { Button } from './common'
|
|
import { copyToClipboard } from '$lib/utils'
|
|
import { ClipboardCopy } from 'lucide-svelte'
|
|
import HighlightTheme from './HighlightTheme.svelte'
|
|
import type { LanguageType } from 'svelte-highlight/languages'
|
|
|
|
interface Props {
|
|
code?: string
|
|
language: Script['language'] | 'bunnative' | 'frontend' | undefined
|
|
highlightLanguage?: LanguageType<string> | undefined
|
|
lines?: boolean
|
|
className?: string
|
|
onApplyCode?: () => void
|
|
showApplyButton?: boolean
|
|
applyButtonIcon?: typeof ClipboardCopy
|
|
}
|
|
|
|
let {
|
|
code = '',
|
|
language,
|
|
highlightLanguage = undefined,
|
|
lines = false,
|
|
className = '',
|
|
onApplyCode = undefined,
|
|
showApplyButton = false,
|
|
applyButtonIcon = undefined
|
|
}: Props = $props()
|
|
|
|
function getLang(lang: Script['language'] | 'bunnative' | 'frontend' | undefined) {
|
|
switch (lang) {
|
|
case 'python3':
|
|
return python
|
|
case 'deno':
|
|
return typescript
|
|
case 'nativets':
|
|
return typescript
|
|
case 'bun':
|
|
return typescript
|
|
case 'bunnative':
|
|
return typescript
|
|
case 'go':
|
|
return go
|
|
case 'bash':
|
|
return shell
|
|
case 'frontend':
|
|
return javascript
|
|
case 'graphql':
|
|
return graphql
|
|
case 'mysql':
|
|
return sql
|
|
case 'postgresql':
|
|
return sql
|
|
case 'snowflake':
|
|
return sql
|
|
case 'bigquery':
|
|
return sql
|
|
case 'oracledb':
|
|
return sql
|
|
case 'duckdb':
|
|
return sql
|
|
case 'powershell':
|
|
return powershell
|
|
case 'php':
|
|
return php
|
|
case 'rust':
|
|
return rust
|
|
case 'csharp':
|
|
return csharp
|
|
case 'nu':
|
|
return python
|
|
case 'ansible':
|
|
return yaml
|
|
case 'java':
|
|
return java
|
|
case 'ruby':
|
|
return ruby
|
|
// for related places search: ADD_NEW_LANG
|
|
default:
|
|
return typescript
|
|
}
|
|
}
|
|
|
|
const lang = $derived(highlightLanguage ?? getLang(language))
|
|
</script>
|
|
|
|
<HighlightTheme />
|
|
|
|
<div class="relative">
|
|
<Button
|
|
wrapperClasses="absolute top-2 right-2 z-20"
|
|
onclick={() => copyToClipboard(code)}
|
|
color="light"
|
|
size="xs2"
|
|
startIcon={{
|
|
icon: ClipboardCopy
|
|
}}
|
|
iconOnly
|
|
title="Copy to clipboard"
|
|
/>
|
|
{#if showApplyButton}
|
|
<Button
|
|
wrapperClasses="absolute top-2 right-10 z-20"
|
|
onclick={onApplyCode}
|
|
color="light"
|
|
size="xs2"
|
|
startIcon={{
|
|
icon: applyButtonIcon
|
|
}}
|
|
iconOnly
|
|
title="Apply code"
|
|
/>
|
|
{/if}
|
|
<div class="overflow-x-auto">
|
|
{#if code?.length < 10000}
|
|
{#if !lines}
|
|
<Highlight class="nowrap {className}" language={lang} {code} />
|
|
{:else}
|
|
<Highlight class="nowrap {className}" language={lang} {code} let:highlighted>
|
|
<LineNumbers {highlighted} />
|
|
</Highlight>
|
|
{/if}
|
|
{:else}
|
|
<pre class="overflow-auto max-h-screen text-xs {className}"
|
|
><code class="language-{language}">{code}</code></pre
|
|
>
|
|
{/if}
|
|
</div>
|
|
</div>
|