mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-21 16:02:28 +00:00
5ba0bf5294
* fix: improve display result header * fix: improve code
224 lines
5.5 KiB
Svelte
224 lines
5.5 KiB
Svelte
<script lang="ts">
|
|
import { Button } from '../common'
|
|
|
|
import { SUPPORTED_LANGUAGES, copilot } from './lib'
|
|
import type { SupportedLanguage } from '$lib/common'
|
|
import { sendUserToast } from '$lib/toast'
|
|
import type Editor from '../Editor.svelte'
|
|
import { dbSchemas, copilotInfo, type DBSchema, workspaceStore } from '$lib/stores'
|
|
import type DiffEditor from '../DiffEditor.svelte'
|
|
import { scriptLangToEditorLang } from '$lib/scripts'
|
|
import Popover from '../Popover.svelte'
|
|
import Popup from '../common/popup/Popup.svelte'
|
|
import { writable } from 'svelte/store'
|
|
import { sleep } from '$lib/utils'
|
|
import { WindmillIcon } from '../icons'
|
|
import HighlightCode from '../HighlightCode.svelte'
|
|
import LoadingIcon from '../apps/svelte-select/lib/LoadingIcon.svelte'
|
|
import { autoPlacement } from '@floating-ui/core'
|
|
import { Check, Wand2, X } from 'lucide-svelte'
|
|
|
|
// props
|
|
export let lang: SupportedLanguage
|
|
export let editor: Editor | undefined
|
|
export let diffEditor: DiffEditor | undefined
|
|
export let error: string
|
|
export let args: Record<string, any>
|
|
|
|
// state
|
|
let genLoading: boolean = false
|
|
let generatedCode = writable<string>('')
|
|
let generatedExplanation = writable<string>('')
|
|
let dbSchema: DBSchema | undefined = undefined
|
|
let abortController: AbortController | undefined = undefined
|
|
|
|
async function onFix(closePopup: () => void) {
|
|
if (!error) {
|
|
return
|
|
}
|
|
try {
|
|
genLoading = true
|
|
abortController = new AbortController()
|
|
await copilot(
|
|
{
|
|
language: lang,
|
|
code: editor?.getCode() || '',
|
|
error,
|
|
dbSchema: dbSchema,
|
|
type: 'fix',
|
|
workspace: $workspaceStore!
|
|
},
|
|
generatedCode,
|
|
abortController,
|
|
generatedExplanation
|
|
)
|
|
setupDiff()
|
|
diffEditor?.setModified($generatedCode)
|
|
await sleep(500)
|
|
closePopup()
|
|
await sleep(300)
|
|
showDiff()
|
|
} catch (err) {
|
|
if (!abortController?.signal.aborted) {
|
|
if (err?.message) {
|
|
sendUserToast('Failed to generate code: ' + err.message, true)
|
|
} else {
|
|
sendUserToast('Failed to generate code', true)
|
|
console.error(err)
|
|
}
|
|
}
|
|
closePopup()
|
|
} finally {
|
|
genLoading = false
|
|
}
|
|
}
|
|
|
|
function acceptDiff() {
|
|
editor?.setCode(diffEditor?.getModified() || '')
|
|
editor?.format()
|
|
clear()
|
|
}
|
|
|
|
function rejectDiff() {
|
|
clear()
|
|
}
|
|
|
|
function setupDiff() {
|
|
diffEditor?.setupModel(scriptLangToEditorLang(lang))
|
|
diffEditor?.setOriginal(editor?.getCode() || '')
|
|
}
|
|
|
|
function showDiff() {
|
|
diffEditor?.show()
|
|
editor?.hide()
|
|
}
|
|
|
|
function hideDiff() {
|
|
editor?.show()
|
|
diffEditor?.hide()
|
|
}
|
|
|
|
function clear() {
|
|
$generatedCode = ''
|
|
$generatedExplanation = ''
|
|
}
|
|
|
|
$: lang && clear()
|
|
|
|
$: !$generatedCode && hideDiff()
|
|
|
|
function updateSchema(lang, args) {
|
|
const schemaRes = lang === 'graphql' ? args.api : args.database
|
|
if (typeof schemaRes === 'string') {
|
|
dbSchema = $dbSchemas[schemaRes.replace('$res:', '')]
|
|
}
|
|
}
|
|
$: updateSchema(lang, args)
|
|
</script>
|
|
|
|
{#if SUPPORTED_LANGUAGES.has(lang)}
|
|
<div>
|
|
{#if !genLoading && $generatedCode.length > 0}
|
|
<div class="flex gap-1">
|
|
<Button
|
|
title="Discard generated code"
|
|
size="xs"
|
|
color="red"
|
|
spacingSize="xs2"
|
|
on:click={rejectDiff}
|
|
variant="contained"
|
|
startIcon={{ icon: X }}
|
|
>
|
|
Discard
|
|
</Button><Button
|
|
title="Accept generated code"
|
|
size="xs"
|
|
color="green"
|
|
spacingSize="xs2"
|
|
on:click={acceptDiff}
|
|
startIcon={{ icon: Check }}
|
|
>
|
|
Accept
|
|
</Button>
|
|
{#if $generatedExplanation.length > 0}
|
|
<Popover>
|
|
<svelte:fragment slot="text">{$generatedExplanation}</svelte:fragment>
|
|
<Button size="xs" color="light" variant="contained" spacingSize="xs2">Explain</Button>
|
|
</Popover>
|
|
{/if}
|
|
</div>
|
|
{:else}
|
|
<Popup
|
|
floatingConfig={{
|
|
middleware: [
|
|
autoPlacement({
|
|
allowedPlacements: ['bottom-end', 'top-end']
|
|
})
|
|
]
|
|
}}
|
|
let:close
|
|
>
|
|
<svelte:fragment slot="button">
|
|
<Button
|
|
title="Fix code"
|
|
size="xs"
|
|
color={genLoading ? 'red' : 'light'}
|
|
spacingSize="xs2"
|
|
startIcon={genLoading ? undefined : { icon: Wand2 }}
|
|
nonCaptureEvent={!genLoading}
|
|
on:click={genLoading ? () => abortController?.abort() : undefined}
|
|
btnClasses={genLoading
|
|
? ''
|
|
: 'text-violet-800 dark:text-violet-400 bg-violet-100 dark:bg-gray-700'}
|
|
>{#if genLoading}
|
|
<WindmillIcon
|
|
white
|
|
class="mr-1 text-white"
|
|
height="16px"
|
|
width="20px"
|
|
spin="veryfast"
|
|
/>
|
|
Stop
|
|
{:else}
|
|
AI Fix
|
|
{/if}
|
|
</Button>
|
|
</svelte:fragment>
|
|
{@const fixAction = (_) => {
|
|
if ($copilotInfo.exists_openai_resource_path) {
|
|
onFix(() => close(null))
|
|
}
|
|
}}
|
|
<div use:fixAction>
|
|
{#if $copilotInfo.exists_openai_resource_path}
|
|
<div class="w-[42rem] min-h-[3rem] max-h-[34rem] overflow-y-scroll">
|
|
{#if $generatedCode.length > 0}
|
|
<div class="overflow-x-scroll">
|
|
<HighlightCode language={lang} code={$generatedCode} />
|
|
</div>
|
|
{#if $generatedExplanation.length > 0}
|
|
<p class="text-sm mt-2"
|
|
><span class="font-bold">Explanation:</span> {$generatedExplanation}</p
|
|
>
|
|
{/if}
|
|
{:else}
|
|
<LoadingIcon />
|
|
{/if}
|
|
</div>
|
|
{:else}
|
|
<div class="w-80">
|
|
<p class="text-sm"
|
|
>Enable Windmill AI in the <a
|
|
class="inline-flex flex-row items-center gap-1"
|
|
href="/workspace_settings?tab=openai"
|
|
target="_blank">workspace settings</a
|
|
></p
|
|
></div
|
|
>
|
|
{/if}
|
|
</div>
|
|
</Popup>
|
|
{/if}
|
|
</div>
|
|
{/if}
|