35 lines
830 B
TypeScript
35 lines
830 B
TypeScript
import type { SegmentedProps } from 'antd';
|
|
import { Form, Segmented as AntSegmented } from 'antd';
|
|
import type { FC } from 'react';
|
|
import type { BaseElementProps, BaseOption } from './types';
|
|
|
|
const { Item: FormItem } = Form;
|
|
|
|
type ElementProps = BaseElementProps<string | number> & {
|
|
options: BaseOption[];
|
|
};
|
|
|
|
export default (function Segmented({
|
|
value,
|
|
setValue,
|
|
options,
|
|
status,
|
|
isValid,
|
|
help,
|
|
...props
|
|
}: ElementProps) {
|
|
return (
|
|
<FormItem hasFeedback validateStatus={isValid === false ? 'error' : ''} help={help}>
|
|
<AntSegmented
|
|
onResize={undefined}
|
|
onResizeCapture={undefined}
|
|
value={value}
|
|
onChange={setValue}
|
|
disabled={status === 'Disabled'}
|
|
options={options}
|
|
{...props}
|
|
/>
|
|
</FormItem>
|
|
);
|
|
} as FC<Partial<SegmentedProps>>);
|