gab-social/app/javascript/gabsocial/components/input.js

90 lines
2.3 KiB
JavaScript
Raw Normal View History

2020-03-07 04:53:28 +00:00
import { Fragment } from 'react'
2020-02-21 00:57:29 +00:00
import classNames from 'classnames/bind'
import Icon from './icon'
2020-03-05 15:44:17 +00:00
import Text from './text'
2020-02-21 00:57:29 +00:00
const cx = classNames.bind(_s)
2020-02-19 23:57:07 +00:00
export default class Input extends PureComponent {
2020-02-21 00:57:29 +00:00
static propTypes = {
placeholder: PropTypes.string,
prependIcon: PropTypes.string,
value: PropTypes.string,
hasClear: PropTypes.bool,
onChange: PropTypes.func,
onKeyUp: PropTypes.func,
onFocus: PropTypes.func,
onBlur: PropTypes.func,
onClear: PropTypes.func,
2020-03-05 15:44:17 +00:00
title: PropTypes.string,
2020-03-07 04:53:28 +00:00
small: PropTypes.bool,
2020-02-21 00:57:29 +00:00
}
2020-02-19 23:57:07 +00:00
render() {
2020-03-05 15:44:17 +00:00
const {
placeholder,
prependIcon,
value,
hasClear,
onChange,
onKeyUp,
onFocus,
onBlur,
onClear,
2020-03-07 04:53:28 +00:00
title,
small
2020-03-05 15:44:17 +00:00
} = this.props
2020-02-21 00:57:29 +00:00
const inputClasses = cx({
default: 1,
text: 1,
outlineNone: 1,
lineHeight125: 1,
displayBlock: 1,
paddingVertical10PX: 1,
backgroundTransparent: 1,
fontSize15PX: 1,
flexGrow1: 1,
paddingHorizontal5PX: !!prependIcon,
paddingLeft15PX: !prependIcon,
paddingRight15PX: !hasClear,
})
2020-02-19 23:57:07 +00:00
return (
2020-03-07 04:53:28 +00:00
<Fragment>
2020-02-21 00:57:29 +00:00
{
2020-03-05 15:44:17 +00:00
!!title &&
<div className={[_s.default, _s.marginBottom10PX, _s.paddingLeft15PX].join(' ')}>
<Text size='small' weight='medium' color='secondary'>
{title}
</Text>
</div>
2020-02-21 00:57:29 +00:00
}
2020-03-05 15:44:17 +00:00
<div className={[_s.default, _s.backgroundColorPrimary, _s.border1PX, _s.borderColorSecondary, _s.flexRow, _s.circle, _s.alignItemsCenter].join(' ')}>
{
!!prependIcon &&
<Icon id={prependIcon} width='16px' height='16px' className={[_s.marginLeft15PX, _s.marginRight5PX].join(' ')} />
}
2020-02-21 00:57:29 +00:00
2020-03-05 15:44:17 +00:00
<input
className={inputClasses}
type='text'
placeholder={placeholder}
value={value}
onChange={onChange}
onKeyUp={onKeyUp}
onFocus={onFocus}
onBlur={onBlur}
/>
2020-02-21 00:57:29 +00:00
2020-03-05 15:44:17 +00:00
{
hasClear &&
<div role='button' tabIndex='0' className={'btnClasses'} onClick={onClear}>
<Icon id='close' width='10px' height='10px' className={_s.fillColorWhite} aria-label='Clear' />
</div>
}
</div>
2020-03-07 04:53:28 +00:00
</Fragment>
2020-02-19 23:57:07 +00:00
)
}
}