import React from 'react'; import { useArgs } from '@storybook/client-api'; import { Size, Color, BorderRadius, } from '../../../helpers/constants/design-system'; import { TEXT_FIELD_SIZES, TEXT_FIELD_TYPES } from '../text-field'; import { TextFieldSearch } from './text-field-search'; import README from './README.mdx'; const marginSizeControlOptions = [ undefined, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 'auto', ]; export default { title: 'Components/ComponentLibrary/TextFieldSearch', component: TextFieldSearch, parameters: { docs: { page: README, }, }, argTypes: { value: { control: 'text', }, onChange: { action: 'onChange', }, clearButtonOnClick: { action: 'clearButtonOnClick', }, clearButtonProps: { control: 'object', }, autoComplete: { control: 'boolean', table: { category: 'text field base props' }, }, autoFocus: { control: 'boolean', table: { category: 'text field base props' }, }, className: { control: 'text', table: { category: 'text field base props' }, }, disabled: { control: 'boolean', table: { category: 'text field base props' }, }, error: { control: 'boolean', table: { category: 'text field base props' }, }, id: { control: 'text', table: { category: 'text field base props' }, }, inputProps: { control: 'object', table: { category: 'text field base props' }, }, startAccessory: { control: 'text', table: { category: 'text field base props' }, }, maxLength: { control: 'number', table: { category: 'text field base props' }, }, name: { control: 'text', table: { category: 'text field base props' }, }, onBlur: { action: 'onBlur', table: { category: 'text field base props' }, }, onClick: { action: 'onClick', table: { category: 'text field base props' }, }, onFocus: { action: 'onFocus', table: { category: 'text field base props' }, }, onKeyDown: { action: 'onKeyDown', table: { category: 'text field base props' }, }, onKeyUp: { action: 'onKeyUp', table: { category: 'text field base props' }, }, placeholder: { control: 'text', table: { category: 'text field base props' }, }, readOnly: { control: 'boolean', table: { category: 'text field base props' }, }, required: { control: 'boolean', table: { category: 'text field base props' }, }, endAccessory: { control: 'text', table: { category: 'text field base props' }, }, size: { control: 'select', options: Object.values(TEXT_FIELD_SIZES), table: { category: 'text field base props' }, }, type: { control: 'select', options: Object.values(TEXT_FIELD_TYPES), table: { category: 'text field base props' }, }, truncate: { control: 'boolean', table: { category: 'text field base props' }, }, marginTop: { options: marginSizeControlOptions, control: 'select', table: { category: 'box props' }, }, marginRight: { options: marginSizeControlOptions, control: 'select', table: { category: 'box props' }, }, marginBottom: { options: marginSizeControlOptions, control: 'select', table: { category: 'box props' }, }, marginLeft: { options: marginSizeControlOptions, control: 'select', table: { category: 'box props' }, }, }, args: { placeholder: 'Search', value: '', }, }; const Template = (args) => { const [{ value }, updateArgs] = useArgs(); const handleOnChange = (e) => { updateArgs({ value: e.target.value }); }; const handleOnClear = () => { updateArgs({ value: '' }); }; return ( ); }; export const DefaultStory = Template.bind({}); DefaultStory.storyName = 'Default'; export const ClearButtonOnClick = Template.bind({}); ClearButtonOnClick.args = { value: 'Text to clear', }; export const ClearButtonProps = Template.bind({}); ClearButtonProps.args = { value: 'clear button props', size: Size.LG, clearButtonProps: { backgroundColor: Color.backgroundAlternative, borderRadius: BorderRadius.XS, }, };