mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-17 23:13:51 +01:00
711 lines
20 KiB
TypeScript
711 lines
20 KiB
TypeScript
import { formatSize } from '@yaakapp-internal/lib/formatSize';
|
|
import classNames from 'classnames';
|
|
import type { EditorView } from 'codemirror';
|
|
import {
|
|
forwardRef,
|
|
Fragment,
|
|
useCallback,
|
|
useEffect,
|
|
useImperativeHandle,
|
|
useMemo,
|
|
useRef,
|
|
useState,
|
|
} from 'react';
|
|
import type { XYCoord } from 'react-dnd';
|
|
import { useDrag, useDrop } from 'react-dnd';
|
|
import { useToggle } from '../../hooks/useToggle';
|
|
import { languageFromContentType } from '../../lib/contentType';
|
|
import { showDialog } from '../../lib/dialog';
|
|
import { generateId } from '../../lib/generateId';
|
|
import { showPrompt } from '../../lib/prompt';
|
|
import { DropMarker } from '../DropMarker';
|
|
import { SelectFile } from '../SelectFile';
|
|
import { Button } from './Button';
|
|
import { Checkbox } from './Checkbox';
|
|
import type { DropdownItem } from './Dropdown';
|
|
import { Dropdown } from './Dropdown';
|
|
import type { EditorProps } from './Editor/Editor';
|
|
import { Editor } from './Editor/Editor';
|
|
import type { GenericCompletionConfig } from './Editor/genericCompletion';
|
|
import { Icon } from './Icon';
|
|
import { IconButton } from './IconButton';
|
|
import type { InputProps } from './Input';
|
|
import { Input } from './Input';
|
|
import { PlainInput } from './PlainInput';
|
|
import type { RadioDropdownItem } from './RadioDropdown';
|
|
import { RadioDropdown } from './RadioDropdown';
|
|
|
|
export interface PairEditorRef {
|
|
focusValue(index: number): void;
|
|
}
|
|
|
|
export type PairEditorProps = {
|
|
allowFileValues?: boolean;
|
|
className?: string;
|
|
forceUpdateKey?: string;
|
|
nameAutocomplete?: GenericCompletionConfig;
|
|
nameAutocompleteVariables?: boolean;
|
|
namePlaceholder?: string;
|
|
nameValidate?: InputProps['validate'];
|
|
noScroll?: boolean;
|
|
onChange: (pairs: PairWithId[]) => void;
|
|
pairs: Pair[];
|
|
stateKey: InputProps['stateKey'];
|
|
valueAutocomplete?: (name: string) => GenericCompletionConfig | undefined;
|
|
valueAutocompleteVariables?: boolean;
|
|
valuePlaceholder?: string;
|
|
valueType?: 'text' | 'password';
|
|
valueValidate?: InputProps['validate'];
|
|
};
|
|
|
|
export type Pair = {
|
|
id?: string;
|
|
enabled?: boolean;
|
|
name: string;
|
|
value: string;
|
|
contentType?: string;
|
|
isFile?: boolean;
|
|
readOnlyName?: boolean;
|
|
};
|
|
|
|
export type PairWithId = Pair & {
|
|
id: string;
|
|
};
|
|
|
|
/** Max number of pairs to show before prompting the user to reveal the rest */
|
|
const MAX_INITIAL_PAIRS = 50;
|
|
|
|
export const PairEditor = forwardRef<PairEditorRef, PairEditorProps>(function PairEditor(
|
|
{
|
|
stateKey,
|
|
allowFileValues,
|
|
className,
|
|
forceUpdateKey,
|
|
nameAutocomplete,
|
|
nameAutocompleteVariables,
|
|
namePlaceholder,
|
|
nameValidate,
|
|
noScroll,
|
|
onChange,
|
|
pairs: originalPairs,
|
|
valueAutocomplete,
|
|
valueAutocompleteVariables,
|
|
valuePlaceholder,
|
|
valueType,
|
|
valueValidate,
|
|
}: PairEditorProps,
|
|
ref,
|
|
) {
|
|
const [forceFocusNamePairId, setForceFocusNamePairId] = useState<string | null>(null);
|
|
const [forceFocusValuePairId, setForceFocusValuePairId] = useState<string | null>(null);
|
|
const [hoveredIndex, setHoveredIndex] = useState<number | null>(null);
|
|
const [pairs, setPairs] = useState<PairWithId[]>([]);
|
|
const [showAll, toggleShowAll] = useToggle(false);
|
|
|
|
useImperativeHandle(
|
|
ref,
|
|
() => ({
|
|
focusValue(index: number) {
|
|
const id = pairs[index]?.id ?? 'n/a';
|
|
setForceFocusValuePairId(id);
|
|
},
|
|
}),
|
|
[pairs],
|
|
);
|
|
|
|
useEffect(() => {
|
|
// Remove empty headers on initial render and ensure they all have valid ids (pairs didn't use to have IDs)
|
|
const newPairs: PairWithId[] = [];
|
|
for (let i = 0; i < originalPairs.length; i++) {
|
|
const p = originalPairs[i];
|
|
if (!p) continue; // Make TS happy
|
|
if (isPairEmpty(p)) continue;
|
|
newPairs.push({ ...p, id: p.id ?? generateId() });
|
|
}
|
|
|
|
// Add empty last pair if there is none
|
|
const lastPair = newPairs[newPairs.length - 1];
|
|
if (lastPair == null || !isPairEmpty(lastPair)) {
|
|
newPairs.push(emptyPair());
|
|
}
|
|
|
|
setPairs(newPairs);
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [forceUpdateKey]);
|
|
|
|
const setPairsAndSave = useCallback(
|
|
(fn: (pairs: PairWithId[]) => PairWithId[]) => {
|
|
setPairs((oldPairs) => {
|
|
const pairs = fn(oldPairs);
|
|
onChange(pairs);
|
|
return pairs;
|
|
});
|
|
},
|
|
[onChange],
|
|
);
|
|
|
|
const handleMove = useCallback<PairEditorRowProps['onMove']>(
|
|
(id, side) => {
|
|
const dragIndex = pairs.findIndex((r) => r.id === id);
|
|
setHoveredIndex(side === 'above' ? dragIndex : dragIndex + 1);
|
|
},
|
|
[pairs],
|
|
);
|
|
|
|
const handleEnd = useCallback<PairEditorRowProps['onEnd']>(
|
|
(id: string) => {
|
|
if (hoveredIndex === null) return;
|
|
setHoveredIndex(null);
|
|
|
|
setPairsAndSave((pairs) => {
|
|
const index = pairs.findIndex((p) => p.id === id);
|
|
const pair = pairs[index];
|
|
if (pair === undefined) return pairs;
|
|
|
|
const newPairs = pairs.filter((p) => p.id !== id);
|
|
if (hoveredIndex > index) newPairs.splice(hoveredIndex - 1, 0, pair);
|
|
else newPairs.splice(hoveredIndex, 0, pair);
|
|
return newPairs;
|
|
});
|
|
},
|
|
[hoveredIndex, setPairsAndSave],
|
|
);
|
|
|
|
const handleChange = useCallback(
|
|
(pair: PairWithId) =>
|
|
setPairsAndSave((pairs) => pairs.map((p) => (pair.id !== p.id ? p : pair))),
|
|
[setPairsAndSave],
|
|
);
|
|
|
|
const handleDelete = useCallback(
|
|
(pair: Pair, focusPrevious: boolean) => {
|
|
if (focusPrevious) {
|
|
const index = pairs.findIndex((p) => p.id === pair.id);
|
|
const id = pairs[index - 1]?.id ?? null;
|
|
setForceFocusNamePairId(id);
|
|
}
|
|
return setPairsAndSave((oldPairs) => oldPairs.filter((p) => p.id !== pair.id));
|
|
},
|
|
[setPairsAndSave, setForceFocusNamePairId, pairs],
|
|
);
|
|
|
|
const handleFocus = useCallback(
|
|
(pair: Pair) =>
|
|
setPairs((pairs) => {
|
|
setForceFocusNamePairId(null); // Remove focus override when something focused
|
|
setForceFocusValuePairId(null); // Remove focus override when something focused
|
|
const isLast = pair.id === pairs[pairs.length - 1]?.id;
|
|
if (isLast) {
|
|
const prevPair = pairs[pairs.length - 1];
|
|
setForceFocusNamePairId(prevPair?.id ?? null);
|
|
return [...pairs, emptyPair()];
|
|
} else {
|
|
return pairs;
|
|
}
|
|
}),
|
|
[],
|
|
);
|
|
|
|
return (
|
|
<div
|
|
className={classNames(
|
|
className,
|
|
'@container relative',
|
|
'pb-2 mb-auto h-full',
|
|
!noScroll && 'overflow-y-auto max-h-full',
|
|
// Move over the width of the drag handle
|
|
'-ml-3 -mr-2 pr-2',
|
|
// Pad to make room for the drag divider
|
|
'pt-0.5',
|
|
)}
|
|
>
|
|
{pairs.map((p, i) => {
|
|
if (!showAll && i > MAX_INITIAL_PAIRS) return null;
|
|
|
|
const isLast = i === pairs.length - 1;
|
|
return (
|
|
<Fragment key={p.id}>
|
|
{hoveredIndex === i && <DropMarker />}
|
|
<PairEditorRow
|
|
allowFileValues={allowFileValues}
|
|
className="py-1"
|
|
forceFocusNamePairId={forceFocusNamePairId}
|
|
forceFocusValuePairId={forceFocusValuePairId}
|
|
forceUpdateKey={forceUpdateKey}
|
|
index={i}
|
|
isLast={isLast}
|
|
nameAutocomplete={nameAutocomplete}
|
|
nameAutocompleteVariables={nameAutocompleteVariables}
|
|
namePlaceholder={namePlaceholder}
|
|
nameValidate={nameValidate}
|
|
onChange={handleChange}
|
|
onDelete={handleDelete}
|
|
onEnd={handleEnd}
|
|
onFocus={handleFocus}
|
|
onMove={handleMove}
|
|
pair={p}
|
|
stateKey={stateKey}
|
|
valueAutocomplete={valueAutocomplete}
|
|
valueAutocompleteVariables={valueAutocompleteVariables}
|
|
valuePlaceholder={valuePlaceholder}
|
|
valueType={valueType}
|
|
valueValidate={valueValidate}
|
|
/>
|
|
</Fragment>
|
|
);
|
|
})}
|
|
{!showAll && pairs.length > MAX_INITIAL_PAIRS && (
|
|
<Button
|
|
onClick={toggleShowAll}
|
|
variant="border"
|
|
className="m-2"
|
|
size="xs"
|
|
event="pairs.reveal-more"
|
|
>
|
|
Show {pairs.length - MAX_INITIAL_PAIRS} More
|
|
</Button>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|
|
|
|
enum ItemTypes {
|
|
ROW = 'pair-row',
|
|
}
|
|
|
|
type PairEditorRowProps = {
|
|
className?: string;
|
|
pair: PairWithId;
|
|
forceFocusNamePairId?: string | null;
|
|
forceFocusValuePairId?: string | null;
|
|
onMove: (id: string, side: 'above' | 'below') => void;
|
|
onEnd: (id: string) => void;
|
|
onChange: (pair: PairWithId) => void;
|
|
onDelete?: (pair: PairWithId, focusPrevious: boolean) => void;
|
|
onFocus?: (pair: PairWithId) => void;
|
|
onSubmit?: (pair: PairWithId) => void;
|
|
isLast?: boolean;
|
|
index: number;
|
|
} & Pick<
|
|
PairEditorProps,
|
|
| 'allowFileValues'
|
|
| 'forceUpdateKey'
|
|
| 'nameAutocomplete'
|
|
| 'nameAutocompleteVariables'
|
|
| 'namePlaceholder'
|
|
| 'nameValidate'
|
|
| 'stateKey'
|
|
| 'valueAutocomplete'
|
|
| 'valueAutocompleteVariables'
|
|
| 'valuePlaceholder'
|
|
| 'valueType'
|
|
| 'valueValidate'
|
|
>;
|
|
|
|
function PairEditorRow({
|
|
allowFileValues,
|
|
className,
|
|
forceFocusNamePairId,
|
|
forceFocusValuePairId,
|
|
forceUpdateKey,
|
|
index,
|
|
isLast,
|
|
nameAutocomplete,
|
|
nameAutocompleteVariables,
|
|
namePlaceholder,
|
|
nameValidate,
|
|
onChange,
|
|
onDelete,
|
|
onEnd,
|
|
onFocus,
|
|
onMove,
|
|
pair,
|
|
stateKey,
|
|
valueAutocomplete,
|
|
valueAutocompleteVariables,
|
|
valuePlaceholder,
|
|
valueType,
|
|
valueValidate,
|
|
}: PairEditorRowProps) {
|
|
const ref = useRef<HTMLDivElement>(null);
|
|
const nameInputRef = useRef<EditorView>(null);
|
|
const valueInputRef = useRef<EditorView>(null);
|
|
const valueLanguage = languageFromContentType(pair.contentType ?? null);
|
|
|
|
useEffect(() => {
|
|
if (forceFocusNamePairId === pair.id) {
|
|
nameInputRef.current?.focus();
|
|
}
|
|
}, [forceFocusNamePairId, pair.id]);
|
|
|
|
useEffect(() => {
|
|
if (forceFocusValuePairId === pair.id) {
|
|
valueInputRef.current?.focus();
|
|
}
|
|
}, [forceFocusValuePairId, pair.id]);
|
|
|
|
const handleFocus = useCallback(() => onFocus?.(pair), [onFocus, pair]);
|
|
const handleDelete = useCallback(() => onDelete?.(pair, false), [onDelete, pair]);
|
|
|
|
const deleteItems = useMemo(
|
|
(): DropdownItem[] => [
|
|
{
|
|
label: 'Delete',
|
|
onSelect: handleDelete,
|
|
color: 'danger',
|
|
},
|
|
],
|
|
[handleDelete],
|
|
);
|
|
|
|
const handleChangeEnabled = useMemo(
|
|
() => (enabled: boolean) => onChange({ ...pair, enabled }),
|
|
[onChange, pair],
|
|
);
|
|
|
|
const handleChangeName = useMemo(
|
|
() => (name: string) => onChange({ ...pair, name }),
|
|
[onChange, pair],
|
|
);
|
|
|
|
const handleChangeValueText = useMemo(
|
|
() => (value: string) => onChange({ ...pair, value, isFile: false }),
|
|
[onChange, pair],
|
|
);
|
|
|
|
const handleChangeValueFile = useMemo(
|
|
() =>
|
|
({ filePath }: { filePath: string | null }) =>
|
|
onChange({ ...pair, value: filePath ?? '', isFile: true }),
|
|
[onChange, pair],
|
|
);
|
|
|
|
const handleChangeValueContentType = useMemo(
|
|
() => (contentType: string) => onChange({ ...pair, contentType }),
|
|
[onChange, pair],
|
|
);
|
|
|
|
const handleEditMultiLineValue = useCallback(
|
|
() =>
|
|
showDialog({
|
|
id: 'pair-edit-multiline',
|
|
size: 'dynamic',
|
|
title: <>Edit {pair.name}</>,
|
|
render: ({ hide }) => (
|
|
<MultilineEditDialog
|
|
hide={hide}
|
|
onChange={handleChangeValueText}
|
|
defaultValue={pair.value}
|
|
language={valueLanguage}
|
|
/>
|
|
),
|
|
}),
|
|
[handleChangeValueText, pair.name, pair.value, valueLanguage],
|
|
);
|
|
|
|
const [, connectDrop] = useDrop<Pair>(
|
|
{
|
|
accept: ItemTypes.ROW,
|
|
hover: (_, monitor) => {
|
|
if (!ref.current) return;
|
|
const hoverBoundingRect = ref.current?.getBoundingClientRect();
|
|
const hoverMiddleY = (hoverBoundingRect.bottom - hoverBoundingRect.top) / 2;
|
|
const clientOffset = monitor.getClientOffset();
|
|
const hoverClientY = (clientOffset as XYCoord).y - hoverBoundingRect.top;
|
|
onMove(pair.id, hoverClientY < hoverMiddleY ? 'above' : 'below');
|
|
},
|
|
},
|
|
[onMove],
|
|
);
|
|
|
|
const [, connectDrag] = useDrag(
|
|
{
|
|
type: ItemTypes.ROW,
|
|
item: () => pair,
|
|
collect: (m) => ({ isDragging: m.isDragging() }),
|
|
end: () => onEnd(pair.id),
|
|
},
|
|
[pair, onEnd],
|
|
);
|
|
|
|
connectDrag(ref);
|
|
connectDrop(ref);
|
|
|
|
return (
|
|
<div
|
|
ref={ref}
|
|
className={classNames(
|
|
className,
|
|
'group grid grid-cols-[auto_auto_minmax(0,1fr)_auto]',
|
|
'grid-rows-1 items-center',
|
|
!pair.enabled && 'opacity-60',
|
|
)}
|
|
>
|
|
{!isLast ? (
|
|
<div
|
|
className={classNames(
|
|
'py-2 h-7 w-3 flex items-center',
|
|
'justify-center opacity-0 group-hover:opacity-70',
|
|
)}
|
|
>
|
|
<Icon size="sm" icon="grip_vertical" className="pointer-events-none" />
|
|
</div>
|
|
) : (
|
|
<span className="w-3" />
|
|
)}
|
|
<Checkbox
|
|
hideLabel
|
|
title={pair.enabled ? 'Disable item' : 'Enable item'}
|
|
disabled={isLast}
|
|
checked={isLast ? false : !!pair.enabled}
|
|
className={classNames('pr-2', isLast && '!opacity-disabled')}
|
|
onChange={handleChangeEnabled}
|
|
/>
|
|
<div
|
|
className={classNames(
|
|
'grid items-center',
|
|
'@xs:gap-2 @xs:!grid-rows-1 @xs:!grid-cols-[minmax(0,1fr)_minmax(0,1fr)]',
|
|
'gap-0.5 grid-cols-1 grid-rows-2',
|
|
)}
|
|
>
|
|
{isLast ? (
|
|
// Use PlainInput for last ones because there's a unique bug where clicking below
|
|
// the Codemirror input focuses it.
|
|
<PlainInput
|
|
hideLabel
|
|
size="sm"
|
|
containerClassName={classNames(isLast && 'border-dashed')}
|
|
label="Name"
|
|
name={`name[${index}]`}
|
|
onFocus={handleFocus}
|
|
placeholder={namePlaceholder ?? 'name'}
|
|
/>
|
|
) : (
|
|
<Input
|
|
ref={nameInputRef}
|
|
hideLabel
|
|
useTemplating
|
|
stateKey={`name.${pair.id}.${stateKey}`}
|
|
wrapLines={false}
|
|
readOnly={pair.readOnlyName}
|
|
size="sm"
|
|
required={!isLast && !!pair.enabled && !!pair.value}
|
|
validate={nameValidate}
|
|
forceUpdateKey={forceUpdateKey}
|
|
containerClassName={classNames(isLast && 'border-dashed')}
|
|
defaultValue={pair.name}
|
|
label="Name"
|
|
name={`name[${index}]`}
|
|
onChange={handleChangeName}
|
|
onFocus={handleFocus}
|
|
placeholder={namePlaceholder ?? 'name'}
|
|
autocomplete={nameAutocomplete}
|
|
autocompleteVariables={nameAutocompleteVariables}
|
|
/>
|
|
)}
|
|
<div className="w-full grid grid-cols-[minmax(0,1fr)_auto] gap-1 items-center">
|
|
{pair.isFile ? (
|
|
<SelectFile inline size="xs" filePath={pair.value} onChange={handleChangeValueFile} />
|
|
) : isLast ? (
|
|
// Use PlainInput for last ones because there's a unique bug where clicking below
|
|
// the Codemirror input focuses it.
|
|
<PlainInput
|
|
hideLabel
|
|
size="sm"
|
|
containerClassName={classNames(isLast && 'border-dashed')}
|
|
label="Value"
|
|
name={`value[${index}]`}
|
|
onFocus={handleFocus}
|
|
placeholder={valuePlaceholder ?? 'value'}
|
|
/>
|
|
) : pair.value.includes('\n') ? (
|
|
<Button
|
|
color="secondary"
|
|
size="sm"
|
|
onClick={handleEditMultiLineValue}
|
|
title={pair.value}
|
|
>
|
|
Edit {formatSize(pair.value.length)}
|
|
</Button>
|
|
) : (
|
|
<Input
|
|
ref={valueInputRef}
|
|
hideLabel
|
|
useTemplating
|
|
stateKey={`value.${pair.id}.${stateKey}`}
|
|
wrapLines={false}
|
|
size="sm"
|
|
containerClassName={classNames(isLast && 'border-dashed')}
|
|
validate={valueValidate}
|
|
language={valueLanguage}
|
|
forceUpdateKey={forceUpdateKey}
|
|
defaultValue={pair.value}
|
|
label="Value"
|
|
name={`value[${index}]`}
|
|
onChange={handleChangeValueText}
|
|
onFocus={handleFocus}
|
|
type={isLast ? 'text' : valueType}
|
|
placeholder={valuePlaceholder ?? 'value'}
|
|
autocomplete={valueAutocomplete?.(pair.name)}
|
|
autocompleteVariables={valueAutocompleteVariables}
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
{allowFileValues ? (
|
|
<FileActionsDropdown
|
|
pair={pair}
|
|
onChangeFile={handleChangeValueFile}
|
|
onChangeText={handleChangeValueText}
|
|
onChangeContentType={handleChangeValueContentType}
|
|
onDelete={handleDelete}
|
|
editMultiLine={handleEditMultiLineValue}
|
|
/>
|
|
) : (
|
|
<Dropdown items={deleteItems}>
|
|
<IconButton
|
|
iconSize="sm"
|
|
size="xs"
|
|
icon={isLast ? 'empty' : 'chevron_down'}
|
|
title="Select form data type"
|
|
/>
|
|
</Dropdown>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const fileItems: RadioDropdownItem<string>[] = [
|
|
{ label: 'Text', value: 'text' },
|
|
{ label: 'File', value: 'file' },
|
|
];
|
|
|
|
function FileActionsDropdown({
|
|
pair,
|
|
onChangeFile,
|
|
onChangeText,
|
|
onChangeContentType,
|
|
onDelete,
|
|
editMultiLine,
|
|
}: {
|
|
pair: Pair;
|
|
onChangeFile: ({ filePath }: { filePath: string | null }) => void;
|
|
onChangeText: (text: string) => void;
|
|
onChangeContentType: (contentType: string) => void;
|
|
onDelete: () => void;
|
|
editMultiLine: () => void;
|
|
}) {
|
|
const onChange = useCallback(
|
|
(v: string) => {
|
|
if (v === 'file') onChangeFile({ filePath: '' });
|
|
else onChangeText('');
|
|
},
|
|
[onChangeFile, onChangeText],
|
|
);
|
|
|
|
const extraItems = useMemo<DropdownItem[]>(
|
|
() => [
|
|
{
|
|
label: 'Edit Multi-Line',
|
|
leftSlot: <Icon icon="file_code" />,
|
|
hidden: pair.isFile,
|
|
onSelect: editMultiLine,
|
|
},
|
|
{
|
|
label: 'Set Content-Type',
|
|
leftSlot: <Icon icon="pencil" />,
|
|
onSelect: async () => {
|
|
const contentType = await showPrompt({
|
|
id: 'content-type',
|
|
title: 'Override Content-Type',
|
|
label: 'Content-Type',
|
|
placeholder: 'text/plain',
|
|
defaultValue: pair.contentType ?? '',
|
|
confirmText: 'Set',
|
|
description: 'Leave blank to auto-detect',
|
|
});
|
|
if (contentType == null) return;
|
|
onChangeContentType(contentType);
|
|
},
|
|
},
|
|
{
|
|
label: 'Unset File',
|
|
leftSlot: <Icon icon="x" />,
|
|
hidden: pair.isFile,
|
|
onSelect: async () => {
|
|
onChangeFile({ filePath: null });
|
|
},
|
|
},
|
|
{
|
|
label: 'Delete',
|
|
onSelect: onDelete,
|
|
variant: 'danger',
|
|
leftSlot: <Icon icon="trash" />,
|
|
},
|
|
],
|
|
[editMultiLine, onChangeContentType, onChangeFile, onDelete, pair.contentType, pair.isFile],
|
|
);
|
|
|
|
return (
|
|
<RadioDropdown
|
|
value={pair.isFile ? 'file' : 'text'}
|
|
onChange={onChange}
|
|
items={fileItems}
|
|
extraItems={extraItems}
|
|
>
|
|
<IconButton iconSize="sm" size="xs" icon="chevron_down" title="Select form data type" />
|
|
</RadioDropdown>
|
|
);
|
|
}
|
|
|
|
function emptyPair(): PairWithId {
|
|
return {
|
|
enabled: true,
|
|
name: '',
|
|
value: '',
|
|
id: generateId(),
|
|
};
|
|
}
|
|
|
|
function isPairEmpty(pair: Pair): boolean {
|
|
return !pair.name && !pair.value;
|
|
}
|
|
|
|
function MultilineEditDialog({
|
|
defaultValue,
|
|
language,
|
|
onChange,
|
|
hide,
|
|
}: {
|
|
defaultValue: string;
|
|
language: EditorProps['language'];
|
|
onChange: (value: string) => void;
|
|
hide: () => void;
|
|
}) {
|
|
const [value, setValue] = useState<string>(defaultValue);
|
|
return (
|
|
<div className="w-[100vw] max-w-[40rem] h-[50vh] max-h-full grid grid-rows-[minmax(0,1fr)_auto]">
|
|
<Editor
|
|
heightMode="auto"
|
|
defaultValue={defaultValue}
|
|
language={language}
|
|
onChange={setValue}
|
|
stateKey={null}
|
|
/>
|
|
<div>
|
|
<Button
|
|
color="primary"
|
|
className="ml-auto my-2"
|
|
onClick={() => {
|
|
onChange(value);
|
|
hide();
|
|
}}
|
|
>
|
|
Done
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|