gab-social/app/javascript/gabsocial/features/group_members.js

102 lines
2.5 KiB
JavaScript
Raw Normal View History

2020-05-07 06:55:24 +01:00
import ImmutablePureComponent from 'react-immutable-pure-component'
import ImmutablePropTypes from 'react-immutable-proptypes'
2020-04-08 02:06:59 +01:00
import debounce from 'lodash.debounce'
2020-02-29 15:42:47 +00:00
import {
fetchMembers,
expandMembers,
updateRole,
createRemovedAccount,
2020-05-07 06:55:24 +01:00
} from '../actions/groups'
import { FormattedMessage } from 'react-intl'
import Account from '../components/account'
import ScrollableList from '../components/scrollable_list'
2020-02-29 15:42:47 +00:00
2020-05-07 06:55:24 +01:00
const mapStateToProps = (state, { groupId }) => ({
group: state.getIn(['groups', groupId]),
relationships: state.getIn(['group_relationships', groupId]),
accountIds: state.getIn(['user_lists', 'groups', groupId, 'items']),
hasMore: !!state.getIn(['user_lists', 'groups', groupId, 'next']),
})
const mapDispatchToProps = (dispatch) => ({
onFetchMembers(groupId) {
dispatch(fetchMembers(groupId))
},
onExpandMembers(groupId) {
dispatch(expandMembers(groupId))
},
})
2020-02-29 15:42:47 +00:00
export default
2020-05-07 06:55:24 +01:00
@connect(mapStateToProps, mapDispatchToProps)
2020-02-29 15:42:47 +00:00
class GroupMembers extends ImmutablePureComponent {
static propTypes = {
2020-05-07 06:55:24 +01:00
groupId: PropTypes.string.isRequired,
2020-02-29 15:42:47 +00:00
accountIds: ImmutablePropTypes.list,
hasMore: PropTypes.bool,
2020-05-07 06:55:24 +01:00
onExpandMembers: PropTypes.func.isRequired,
onFetchMembers: PropTypes.func.isRequired,
}
2020-02-29 15:42:47 +00:00
componentWillMount() {
2020-05-07 06:55:24 +01:00
const { groupId } = this.props
2020-02-29 15:42:47 +00:00
2020-05-07 06:55:24 +01:00
this.props.onFetchMembers(groupId)
2020-02-29 15:42:47 +00:00
}
componentWillReceiveProps(nextProps) {
2020-05-07 06:55:24 +01:00
if (nextProps.groupId !== this.props.groupId) {
this.props.onFetchMembers(nextProps.groupId)
2020-02-29 15:42:47 +00:00
}
}
handleLoadMore = debounce(() => {
2020-05-07 06:55:24 +01:00
this.props.onExpandMembers(this.props.groupId)
}, 300, { leading: true })
2020-02-29 15:42:47 +00:00
render() {
2020-05-07 06:55:24 +01:00
const {
accountIds,
hasMore,
group,
relationships,
dispatch,
} = this.props
2020-02-29 15:42:47 +00:00
return (
<ScrollableList
2020-05-07 06:55:24 +01:00
scrollKey='group-members'
2020-02-29 15:42:47 +00:00
hasMore={hasMore}
2020-05-07 06:55:24 +01:00
showLoading={(!group || !accountIds || !relationships)}
2020-02-29 15:42:47 +00:00
onLoadMore={this.handleLoadMore}
emptyMessage={<FormattedMessage id='group.members.empty' defaultMessage='This group does not has any members.' />}
>
2020-05-07 06:55:24 +01:00
{
accountIds && accountIds.map((id) => {
let menu = []
2020-02-29 15:42:47 +00:00
2020-05-07 06:55:24 +01:00
if (relationships.get('admin')) {
menu = [
{ text: 'Remove from group', action: () => dispatch(createRemovedAccount(group.get('id'), id)) },
{ text: 'Make administrator', action: () => dispatch(updateRole(group.get('id'), id, 'admin')) },
]
}
2020-02-29 15:42:47 +00:00
2020-05-07 06:55:24 +01:00
return (
<Account
compact
key={id}
id={id}
actionIcon='ellipsis'
onActionClick={() => true}
/>
)
})
}
2020-02-29 15:42:47 +00:00
</ScrollableList>
2020-05-07 06:55:24 +01:00
)
2020-02-29 15:42:47 +00:00
}
}