import React, { useState, useRef } from 'react'; import { SIZES, DISPLAY, COLORS, FLEX_DIRECTION, } from '../../../helpers/constants/design-system'; import Box from '../../ui/box/box'; import { Icon, ICON_NAMES } from '../icon'; import { AvatarToken } from '../avatar-token'; import { TEXT_FIELD_BASE_SIZES, TEXT_FIELD_BASE_TYPES, } from './text-field-base.constants'; import { TextFieldBase } from './text-field-base'; 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/TextFieldBase', id: __filename, component: TextFieldBase, parameters: { docs: { page: README, }, }, argTypes: { autoComplete: { control: 'boolean', }, autoFocus: { control: 'boolean', }, className: { control: 'text', }, defaultValue: { control: 'text', }, disabled: { control: 'boolean', }, error: { control: 'boolean', }, id: { control: 'text', }, inputProps: { control: 'object', }, leftAccessory: { control: 'text', }, maxLength: { control: 'number', }, name: { control: 'text', }, onBlur: { action: 'onBlur', }, onChange: { action: 'onChange', }, onClick: { action: 'onClick', }, onFocus: { action: 'onFocus', }, placeholder: { control: 'text', }, readOnly: { control: 'boolean', }, required: { control: 'boolean', }, rightAccessory: { control: 'text', }, size: { control: 'select', options: Object.values(TEXT_FIELD_BASE_SIZES), }, type: { control: 'select', options: Object.values(TEXT_FIELD_BASE_TYPES), }, value: { control: 'text', }, 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: 'Placeholder...', autoFocus: false, defaultValue: '', disabled: false, error: false, id: '', readOnly: false, required: false, size: SIZES.MD, type: 'text', truncate: false, }, }; const Template = (args) => ; export const DefaultStory = Template.bind({}); DefaultStory.storyName = 'Default'; export const Size = (args) => { return ( ); }; export const Type = (args) => ( ); export const Truncate = Template.bind({}); Truncate.args = { placeholder: 'Truncate', value: 'Truncated text when truncate and width is set', truncate: true, style: { width: 240 }, }; export const LeftAccessoryRightAccessory = (args) => { const [value, setValue] = useState({ search: '', metaMask: '', address: '0x514910771af9ca656af840dff83e8264ecf986ca', amount: 1, }); return ( setValue({ ...value, search: e.target.value })} leftAccessory={ } /> setValue({ ...value, metaMask: e.target.value })} placeholder="MetaMask" rightAccessory={ } /> setValue({ ...value, address: e.target.value })} truncate leftAccessory={} rightAccessory={ } /> setValue({ ...value, amount: e.target.value })} type="number" leftAccessory={ } rightAccessory={ } /> ); }; export const InputRef = (args) => { const inputRef = useRef(null); const [value, setValue] = useState(''); const handleOnClick = () => { inputRef.current.focus(); }; const handleOnChange = (e) => { setValue(e.target.value); }; return ( <> Edit ); }; export const AutoComplete = Template.bind({}); AutoComplete.args = { autoComplete: true, type: 'password', placeholder: 'Enter password', }; export const AutoFocus = Template.bind({}); AutoFocus.args = { autoFocus: true }; export const DefaultValue = Template.bind({}); DefaultValue.args = { defaultValue: 'Default value' }; export const Disabled = Template.bind({}); Disabled.args = { disabled: true }; export const ErrorStory = Template.bind({}); ErrorStory.args = { error: true }; ErrorStory.storyName = 'Error'; export const MaxLength = Template.bind({}); MaxLength.args = { maxLength: 10, placeholder: 'Max length 10' }; export const ReadOnly = Template.bind({}); ReadOnly.args = { readOnly: true, value: 'Read only' }; export const Required = Template.bind({}); Required.args = { required: true, placeholder: 'Required' };