### What problem does this PR solve? Feat: The output is derived based on the configuration of the variable aggregation operator. #10427 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
65 lines
1.6 KiB
TypeScript
65 lines
1.6 KiB
TypeScript
import {
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from '@/components/ui/form';
|
|
import { ReactNode } from 'react';
|
|
import { useFormContext } from 'react-hook-form';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { JsonSchemaDataType } from '../../constant';
|
|
import { useFilterQueryVariableOptionsByTypes } from '../../hooks/use-get-begin-query';
|
|
import { GroupedSelectWithSecondaryMenu } from './select-with-secondary-menu';
|
|
|
|
type QueryVariableProps = {
|
|
name?: string;
|
|
types?: JsonSchemaDataType[];
|
|
label?: ReactNode;
|
|
hideLabel?: boolean;
|
|
className?: string;
|
|
onChange?: (value: string) => void;
|
|
};
|
|
|
|
export function QueryVariable({
|
|
name = 'query',
|
|
types = [],
|
|
label,
|
|
hideLabel = false,
|
|
className,
|
|
onChange,
|
|
}: QueryVariableProps) {
|
|
const { t } = useTranslation();
|
|
const form = useFormContext();
|
|
|
|
const finalOptions = useFilterQueryVariableOptionsByTypes(types);
|
|
|
|
return (
|
|
<FormField
|
|
control={form.control}
|
|
name={name}
|
|
render={({ field }) => (
|
|
<FormItem className={className}>
|
|
{hideLabel || label || (
|
|
<FormLabel tooltip={t('flow.queryTip')}>
|
|
{t('flow.query')}
|
|
</FormLabel>
|
|
)}
|
|
<FormControl>
|
|
<GroupedSelectWithSecondaryMenu
|
|
options={finalOptions}
|
|
value={field.value}
|
|
onChange={(val) => {
|
|
field.onChange(val);
|
|
onChange?.(val);
|
|
}}
|
|
// allowClear
|
|
types={types}
|
|
></GroupedSelectWithSecondaryMenu>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
);
|
|
}
|