mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 05:33:29 +01:00
48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import { useCallback, useMemo } from 'react';
|
|
import type { HttpRequest } from '../lib/models';
|
|
import type { Pair, PairEditorProps } from './core/PairEditor';
|
|
import { PairEditor } from './core/PairEditor';
|
|
|
|
type Props = {
|
|
forceUpdateKey: string;
|
|
body: HttpRequest['body'];
|
|
onChange: (headers: HttpRequest['body']) => void;
|
|
};
|
|
|
|
export function FormMultipartEditor({ body, forceUpdateKey, onChange }: Props) {
|
|
const pairs = useMemo<Pair[]>(
|
|
() =>
|
|
(Array.isArray(body.form) ? body.form : []).map((p) => ({
|
|
enabled: p.enabled,
|
|
name: p.name,
|
|
value: p.file ?? p.value,
|
|
isFile: !!p.file,
|
|
})),
|
|
[body.form],
|
|
);
|
|
|
|
const handleChange = useCallback<PairEditorProps['onChange']>(
|
|
(pairs) =>
|
|
onChange({
|
|
form: pairs.map((p) => ({
|
|
enabled: p.enabled,
|
|
name: p.name,
|
|
file: p.isFile ? p.value : undefined,
|
|
value: p.isFile ? undefined : p.value,
|
|
})),
|
|
}),
|
|
[onChange],
|
|
);
|
|
|
|
return (
|
|
<PairEditor
|
|
valueAutocompleteVariables
|
|
nameAutocompleteVariables
|
|
allowFileValues
|
|
pairs={pairs}
|
|
onChange={handleChange}
|
|
forceUpdateKey={forceUpdateKey}
|
|
/>
|
|
);
|
|
}
|