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

111 lines
3.3 KiB
JavaScript
Raw Normal View History

import React from 'react'
import PropTypes from 'prop-types'
import { connect } from 'react-redux'
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'
2020-04-28 06:33:58 +01:00
import { fetchGroups } from '../../actions/groups'
2020-02-08 06:12:01 +00:00
import PanelLayout from './panel_layout'
2020-02-19 23:57:07 +00:00
import GroupListItem from '../group_list_item'
2020-04-28 06:33:58 +01:00
import ScrollableList from '../scrollable_list'
import GroupListItemPlaceholder from '../placeholder/group_list_item_placeholder'
2020-02-08 06:12:01 +00:00
class GroupsPanel extends ImmutablePureComponent {
2020-04-29 23:32:49 +01:00
2020-04-28 06:33:58 +01:00
state = {
fetched: false,
}
static getDerivedStateFromProps(nextProps, prevState) {
if (nextProps.shouldLoad && !prevState.fetched) {
return { fetched: true }
2020-04-28 06:33:58 +01:00
}
return null
}
componentDidUpdate(prevProps, prevState, snapshot) {
if (!prevState.fetched && this.state.fetched) {
this.props.onFetchGroups(this.props.groupType)
2020-04-28 06:33:58 +01:00
}
2020-02-08 06:12:01 +00:00
}
componentDidMount() {
if (!this.props.isLazy) {
this.props.onFetchGroups(this.props.groupType)
this.setState({ fetched: true })
}
}
2020-02-08 06:12:01 +00:00
render() {
const {
intl,
groupIds,
groupType,
} = this.props
const { fetched } = this.state
2020-02-08 06:12:01 +00:00
const count = !!groupIds ? groupIds.count() : 0
const maxCount = 12
2020-02-22 23:26:23 +00:00
if (count === 0 && fetched) return null
2020-02-08 06:12:01 +00:00
return (
<PanelLayout
title={intl.formatMessage(groupType === 'member' ? messages.memberTitle : messages.featuredTitle)}
2020-02-21 00:57:29 +00:00
headerButtonTitle={intl.formatMessage(messages.all)}
headerButtonTo={groupType === 'member' ? '/groups/browse/member' : '/groups/browse/featured'}
2020-02-22 23:26:23 +00:00
footerButtonTitle={count > maxCount ? intl.formatMessage(messages.show_all) : undefined}
footerButtonTo={count > maxCount ? '/groups' : undefined}
noPadding
2020-02-08 06:12:01 +00:00
>
<ScrollableList
scrollKey='groups_panel'
showLoading={!fetched}
placeholderComponent={GroupListItemPlaceholder}
placeholderCount={6}
>
2020-04-29 23:32:49 +01:00
{
groupIds && groupIds.slice(0, maxCount).map((groupId, i) => (
2020-04-29 23:32:49 +01:00
<GroupListItem
key={`group-panel-item-${groupId}`}
id={groupId}
isLast={groupIds.count() - 1 === i}
/>
))
}
</ScrollableList>
2020-02-08 06:12:01 +00:00
</PanelLayout>
)
}
2020-04-29 23:32:49 +01:00
}
const messages = defineMessages({
memberTitle: { id: 'groups.sidebar-panel.member_title', defaultMessage: 'Groups you\'re in' },
featuredTitle: { id: 'groups.sidebar-panel.featured_title', defaultMessage: 'Featured Groups' },
show_all: { id: 'groups.sidebar-panel.show_all', defaultMessage: 'Show all' },
all: { id: 'groups.sidebar-panel.all', defaultMessage: 'All' },
})
const mapStateToProps = (state, { groupType }) => ({
groupIds: state.getIn(['group_lists', groupType, 'items']),
})
const mapDispatchToProps = (dispatch) => ({
onFetchGroups: (type) => dispatch(fetchGroups(type))
})
GroupsPanel.propTypes = {
groupIds: ImmutablePropTypes.list,
isLazy: PropTypes.bool,
onFetchGroups: PropTypes.func.isRequired,
shouldLoad: PropTypes.bool,
groupType: PropTypes.string,
}
GroupsPanel.defaultProps = {
groupType: 'member'
}
export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(GroupsPanel))