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

38 lines
994 B
JavaScript
Raw Normal View History

2020-05-07 00:40:54 +01:00
import ResponsiveClassesComponent from '../features/ui/util/responsive_classes_component'
2020-04-29 23:32:49 +01:00
import PillItem from './pill_item'
/**
* Renders pills components
* @param {array} [props.pills] - tab bar data for creating `TabBarItem`
*/
export default class Pills extends PureComponent {
static propTypes = {
pills: PropTypes.array,
}
render() {
const { pills } = this.props
return (
2020-05-07 00:40:54 +01:00
<ResponsiveClassesComponent
classNames={[_s.default, _s.flexWrap, _s.px5, _s.flexRow].join(' ')}
classNamesXS={[_s.default, _s.overflowYHidden, _s.overflowXScroll, _s.noScrollbar, _s.pl10, _s.pr15, _s.flexRow].join(' ')}
>
2020-04-29 23:32:49 +01:00
{
!!pills &&
pills.map((tab, i) => (
<PillItem
key={`pill-item-${i}`}
title={tab.title}
onClick={tab.onClick}
to={tab.to}
isActive={tab.active}
/>
))
}
2020-05-07 00:40:54 +01:00
</ResponsiveClassesComponent>
2020-04-29 23:32:49 +01:00
)
}
}