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

148 lines
3.4 KiB
JavaScript
Raw Normal View History

2020-02-19 23:57:07 +00:00
import classNames from 'classnames/bind'
import Button from './button'
import Icon from './icon'
2020-04-08 02:06:59 +01:00
import Image from './image'
2020-02-19 23:57:07 +00:00
const cx = classNames.bind(_s)
export default class SidebarSectionItem extends PureComponent {
2020-04-08 02:06:59 +01:00
2020-03-31 17:04:50 +01:00
static contextTypes = {
router: PropTypes.object,
}
2020-02-19 23:57:07 +00:00
static propTypes = {
to: PropTypes.string,
2020-03-14 17:31:29 +00:00
href: PropTypes.string,
onClick: PropTypes.func,
2020-02-19 23:57:07 +00:00
active: PropTypes.bool,
icon: PropTypes.string,
image: PropTypes.string,
title: PropTypes.string,
me: PropTypes.bool,
suffix: PropTypes.node,
2020-03-14 17:31:29 +00:00
buttonRef: PropTypes.func,
2020-02-19 23:57:07 +00:00
}
state = {
hovering: false,
}
handleOnMouseEnter = () => {
this.setState({ hovering: true })
}
handleOnMouseLeave = () => {
this.setState({ hovering: false })
}
render() {
2020-03-14 17:31:29 +00:00
const {
to,
active,
icon,
image,
title,
me,
count,
onClick,
href,
2020-04-08 02:06:59 +01:00
buttonRef,
2020-03-14 17:31:29 +00:00
} = this.props
2020-02-19 23:57:07 +00:00
const { hovering } = this.state
const iconSize = '16px'
2020-03-31 17:04:50 +01:00
const currentPathname = this.context.router.route.location.pathname
const shouldShowActive = hovering || active || currentPathname === to || currentPathname === href
2020-02-19 23:57:07 +00:00
const isNotifications = to === '/notifications'
const containerClasses = cx({
default: 1,
maxWidth100PC: 1,
width100PC: 1,
flexRow: 1,
2020-03-11 23:56:18 +00:00
py5: 1,
px10: 1,
2020-02-19 23:57:07 +00:00
alignItemsCenter: 1,
radiusSmall: 1,
2020-03-31 17:04:50 +01:00
border1PX: 1,
2020-04-08 02:06:59 +01:00
outlineNone: 1,
2020-03-31 17:04:50 +01:00
borderColorTransparent: !shouldShowActive,
borderColorSecondary: shouldShowActive,
backgroundTransparent: !shouldShowActive,
backgroundColorPrimary: shouldShowActive,
2020-02-19 23:57:07 +00:00
})
const textClasses = cx({
default: 1,
fontWeightNormal: 1,
fontSize15PX: 1,
text: 1,
textOverflowEllipsis: 1,
2020-04-22 06:00:11 +01:00
colorPrimary: 1,
2020-02-19 23:57:07 +00:00
})
const iconClasses = cx({
2020-04-25 18:00:51 +01:00
fillColorPrimary: 1,
2020-02-19 23:57:07 +00:00
})
const countClasses = cx({
default: 1,
text: 1,
2020-04-24 04:17:27 +01:00
mlAuto: 1,
2020-02-19 23:57:07 +00:00
fontSize12PX: 1,
2020-03-11 23:56:18 +00:00
px5: 1,
mr2: 1,
2020-02-19 23:57:07 +00:00
lineHeight15: 1,
2020-03-11 23:56:18 +00:00
ml5: 1,
2020-02-19 23:57:07 +00:00
colorSecondary: !isNotifications,
colorWhite: isNotifications,
backgroundColorBrand: isNotifications,
radiusSmall: isNotifications,
})
return (
2020-03-14 17:31:29 +00:00
<Button
2020-02-19 23:57:07 +00:00
to={to}
2020-03-14 17:31:29 +00:00
href={href}
onClick={onClick}
noClasses
buttonRef={buttonRef}
2020-02-19 23:57:07 +00:00
onMouseEnter={() => this.handleOnMouseEnter()}
onMouseLeave={() => this.handleOnMouseLeave()}
2020-04-08 02:06:59 +01:00
className={[_s.default, _s.noUnderline, _s.outlineNone, _s.cursorPointer, _s.width100PC, _s.backgroundTransparent].join(' ')}
2020-02-19 23:57:07 +00:00
>
<div className={containerClasses}>
2020-04-29 03:24:35 +01:00
{
icon &&
<Icon id={icon} className={iconClasses} size={iconSize} />
}
{
image &&
<Image
alt={title}
className={_s.circle}
width={iconSize}
height={iconSize}
src={image}
/>
}
2020-04-11 23:29:19 +01:00
2020-03-11 23:56:18 +00:00
<div className={[_s.default, _s.flexNormal, _s.px10, _s.textOverflowEllipsis, _s.overflowWrapBreakWord, _s.flexRow, _s.width100PC].join(' ')}>
2020-02-19 23:57:07 +00:00
<span className={textClasses}>{title}</span>
</div>
2020-04-11 23:29:19 +01:00
{
count > 0 &&
2020-02-19 23:57:07 +00:00
<span className={countClasses}>
{count}
</span>
}
</div>
2020-03-14 17:31:29 +00:00
</Button>
2020-02-19 23:57:07 +00:00
)
}
2020-04-08 02:06:59 +01:00
2020-02-19 23:57:07 +00:00
}