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

66 lines
1.5 KiB
JavaScript
Raw Normal View History

2020-02-28 15:20:47 +00:00
import classNames from 'classnames/bind'
2020-04-02 17:57:04 +01:00
import Button from './button'
2020-02-28 15:20:47 +00:00
import Icon from './icon'
2020-04-02 17:57:04 +01:00
import Text from './text'
2020-02-28 15:20:47 +00:00
const cx = classNames.bind(_s)
export default class StatusActionBarItem extends PureComponent {
static propTypes = {
title: PropTypes.string.isRequired,
2020-04-07 02:53:23 +01:00
altTitle: PropTypes.string,
2020-02-28 15:20:47 +00:00
onClick: PropTypes.func.isRequired,
icon: PropTypes.string.isRequired,
active: PropTypes.bool,
disabled: PropTypes.bool,
2020-04-11 23:29:19 +01:00
buttonRef: PropTypes.oneOf([
PropTypes.func,
PropTypes.node,
]),
2020-02-28 15:20:47 +00:00
}
render() {
2020-03-25 03:08:43 +00:00
const {
title,
onClick,
icon,
active,
disabled,
2020-04-07 02:53:23 +01:00
buttonRef,
altTitle
2020-03-25 03:08:43 +00:00
} = this.props
2020-02-28 15:20:47 +00:00
const btnClasses = cx({
justifyContentCenter: 1,
alignItemsCenter: 1,
2020-03-11 23:56:18 +00:00
px10: 1,
2020-04-25 18:00:51 +01:00
backgroundColorSubtle_onHover: !disabled,
2020-02-28 15:20:47 +00:00
})
2020-04-02 17:57:04 +01:00
const color = active ? 'brand' : 'secondary'
const weight = active ? 'bold' : 'medium'
2020-02-28 15:20:47 +00:00
return (
2020-04-02 17:57:04 +01:00
<div className={[_s.default, _s.flexNormal, _s.px5].join(' ')}>
<Button
2020-04-23 07:13:29 +01:00
isBlock
2020-04-02 17:57:04 +01:00
radiusSmall
backgroundColor='none'
2020-04-07 02:53:23 +01:00
title={altTitle}
2020-04-02 17:57:04 +01:00
color={color}
buttonRef={buttonRef}
2020-02-28 15:20:47 +00:00
className={btnClasses}
onClick={onClick}
2020-04-23 07:13:29 +01:00
isDisabled={disabled}
2020-04-02 17:57:04 +01:00
icon={icon}
2020-04-23 07:13:29 +01:00
iconSize='16px'
2020-04-02 17:57:04 +01:00
iconClassName={[_s.default, _s.mr10, _s.inheritFill].join(' ')}
2020-02-28 15:20:47 +00:00
>
2020-04-02 17:57:04 +01:00
<Text color='inherit' size='small' weight={weight}>
{title}
</Text>
</Button>
2020-02-28 15:20:47 +00:00
</div>
)
}
}