import type { TemplateFunction } from '@yaakapp-internal/plugins'; import type { FnArg, Tokens } from '@yaakapp-internal/templates'; import classNames from 'classnames'; import { useMemo, useState } from 'react'; import { useDebouncedValue } from '../hooks/useDebouncedValue'; import { useRenderTemplate } from '../hooks/useRenderTemplate'; import { useTemplateTokensToString } from '../hooks/useTemplateTokensToString'; import { Button } from './core/Button'; import { InlineCode } from './core/InlineCode'; import { VStack } from './core/Stacks'; import { DYNAMIC_FORM_NULL_ARG, DynamicForm } from './DynamicForm'; interface Props { templateFunction: TemplateFunction; initialTokens: Tokens; hide: () => void; onChange: (insert: string) => void; } export function TemplateFunctionDialog({ templateFunction, hide, initialTokens, onChange }: Props) { const [argValues, setArgValues] = useState>(() => { const initial: Record = {}; const initialArgs = initialTokens.tokens[0]?.type === 'tag' && initialTokens.tokens[0]?.val.type === 'fn' ? initialTokens.tokens[0]?.val.args : []; for (const arg of templateFunction.args) { if (!('name' in arg)) { // Skip visual-only args continue; } const initialArg = initialArgs.find((a) => a.name === arg.name); const initialArgValue = initialArg?.value.type === 'str' ? initialArg?.value.text : // TODO: Implement variable-based args undefined; initial[arg.name] = initialArgValue ?? arg.defaultValue ?? DYNAMIC_FORM_NULL_ARG; } return initial; }); const tokens: Tokens = useMemo(() => { const argTokens: FnArg[] = Object.keys(argValues).map((name) => ({ name, value: argValues[name] === DYNAMIC_FORM_NULL_ARG ? { type: 'null' } : typeof argValues[name] === 'boolean' ? { type: 'bool', value: argValues[name] === true } : { type: 'str', text: String(argValues[name] ?? '') }, })); return { tokens: [ { type: 'tag', val: { type: 'fn', name: templateFunction.name, args: argTokens, }, }, ], }; }, [argValues, templateFunction.name]); const tagText = useTemplateTokensToString(tokens); const handleDone = () => { if (tagText.data) { onChange(tagText.data); } hide(); }; const debouncedTagText = useDebouncedValue(tagText.data ?? '', 200); const rendered = useRenderTemplate(debouncedTagText); const tooLarge = (rendered.data ?? '').length > 10000; return (

{templateFunction.name}(…)

Preview
{tooLarge ? 'too large to preview' : rendered.data || <> }
); }