gab-social/app/javascript/gabsocial/components/panel/groups_panel.js

59 lines
1.8 KiB
JavaScript
Raw Normal View History

2020-02-08 06:12:01 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes'
import ImmutablePureComponent from 'react-immutable-pure-component'
import { defineMessages, injectIntl } from 'react-intl'
import PanelLayout from './panel_layout'
2020-02-19 23:57:07 +00:00
import GroupListItem from '../group_list_item'
import Button from '../button'
2020-02-08 06:12:01 +00:00
const messages = defineMessages({
title: { id: 'groups.sidebar-panel.title', defaultMessage: 'Groups you\'re in' },
show_all: { id: 'groups.sidebar-panel.show_all', defaultMessage: 'Show all' },
all: { id: 'groups.sidebar-panel.all', defaultMessage: 'All' },
})
const mapStateToProps = (state) => ({
groupIds: state.getIn(['group_lists', 'member']),
})
2020-02-25 16:04:44 +00:00
export default
@connect(mapStateToProps)
2020-02-08 06:12:01 +00:00
@injectIntl
class GroupSidebarPanel extends ImmutablePureComponent {
static propTypes = {
groupIds: ImmutablePropTypes.list,
2020-02-22 23:26:23 +00:00
slim: PropTypes.bool,
2020-02-08 06:12:01 +00:00
}
render() {
2020-02-22 23:26:23 +00:00
const { intl, groupIds, slim } = this.props
2020-02-08 06:12:01 +00:00
const count = groupIds.count()
if (count === 0) return null
2020-02-22 23:26:23 +00:00
const maxCount = slim ? 12 : 6
2020-02-08 06:12:01 +00:00
return (
<PanelLayout
title={intl.formatMessage(messages.title)}
2020-02-21 00:57:29 +00:00
headerButtonTitle={intl.formatMessage(messages.all)}
headerButtonTo='/groups/browse/member'
2020-02-22 23:26:23 +00:00
footerButtonTitle={count > maxCount ? intl.formatMessage(messages.show_all) : undefined}
footerButtonTo={count > maxCount ? '/groups/browse/member' : undefined}
noPadding={slim}
2020-02-08 06:12:01 +00:00
>
2020-02-19 23:57:07 +00:00
<div className={_s.default}>
2020-02-08 06:12:01 +00:00
{
2020-02-22 23:26:23 +00:00
groupIds.slice(0, maxCount).map((groupId, i) => (
<GroupListItem
key={`group-panel-item-${groupId}`}
id={groupId}
slim={slim}
isLast={groupIds.length - 1 === i}
/>
2020-02-08 06:12:01 +00:00
))
}
</div>
</PanelLayout>
)
}
}