import React from 'react'; export default class ShowMore extends React.PureComponent { constructor(props, context) { super(props, context); this.handleClick = this.handleClick.bind(this); } handleClick(ev) { ev.preventDefault(); this.props.handleClick(); } render() { const { collection, notShown, expanded, hideNumber } = this.props; const showLimitAction = collection && (expanded || notShown > 0); const limitActionText = !hideNumber && !expanded && notShown > 0 ? `+${notShown}` : ''; const limitActionIcon = !expanded && notShown > 0 ? 'fa fa-caret-down' : 'fa fa-caret-up'; if (!showLimitAction) { return ; } return (
{limitActionText}
); } }