import React, { useState, useRef } from 'react'; import { SIZES, DISPLAY, COLORS, FLEX_DIRECTION, ALIGN_ITEMS, TEXT, } from '../../../helpers/constants/design-system'; import Box from '../../ui/box/box'; import { Icon, ICON_NAMES } from '../icon'; import { AvatarToken } from '../avatar-token'; import { AvatarAccount } from '../avatar-account'; import { Text } from '../text'; 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...', }, }; 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: '', address: '', amount: 1, accountAddress: '0x514910771af9ca656af840dff83e8264ecf986ca', }); const handleOnChange = (e) => { setValue({ ...value, [e.target.name]: e.target.value }); }; const handleTokenPrice = (tokenAmount, priceUSD) => { return tokenAmount * priceUSD; }; return ( } /> } /> AST } rightAccessory={ = ${handleTokenPrice(value.amount, 0.11)} } /> ) } rightAccessory={ value.accountAddress.length === 42 && ( ) } /> ); }; 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' };