mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-27 13:57:46 +00:00
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com> Co-authored-by: 谨欣 <echo.cmy@antgroup.com> Co-authored-by: 严志勇 <yanzhiyong@tiansuixiansheng.com> Co-authored-by: yanzhiyong <932374019@qq.com>
23 lines
701 B
TypeScript
23 lines
701 B
TypeScript
import { IFlowNodeParameter } from '@/types/flow';
|
|
import { convertKeysToCamelCase } from '@/utils/flow';
|
|
import type { DatePickerProps } from 'antd';
|
|
import { DatePicker } from 'antd';
|
|
|
|
type Props = {
|
|
formValuesChange: any;
|
|
data: IFlowNodeParameter;
|
|
onChange?: (value: any) => void;
|
|
};
|
|
export const renderDatePicker = (params: Props) => {
|
|
const { data, formValuesChange } = params;
|
|
const attr = convertKeysToCamelCase(data.ui?.attr || {});
|
|
|
|
const onChange: DatePickerProps['onChange'] = (_, dateString) => {
|
|
formValuesChange({
|
|
[data.name]: dateString,
|
|
});
|
|
};
|
|
|
|
return <DatePicker onChange={onChange} {...attr} className='w-full' placeholder='please select a date' />;
|
|
};
|