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

113 lines
3.1 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'
import { defineMessages, injectIntl } from 'react-intl'
2020-04-08 02:06:59 +01:00
import debounce from 'lodash.debounce'
import isObject from 'lodash.isobject'
import {
2020-02-24 23:25:55 +00:00
fetchRemovedAccounts,
expandRemovedAccounts,
removeRemovedAccount,
2020-05-07 06:55:24 +01:00
} from '../actions/groups'
import { FormattedMessage } from 'react-intl'
import Account from '../components/account'
import Block from '../components/block'
import BlockHeading from '../components/block_heading'
import ColumnIndicator from '../components/column_indicator'
2020-05-07 06:55:24 +01:00
import ScrollableList from '../components/scrollable_list'
2019-07-16 21:18:23 +01:00
const messages = defineMessages({
2020-02-24 23:25:55 +00:00
remove: { id: 'groups.removed_accounts', defaultMessage: 'Allow joining' },
2020-05-07 06:55:24 +01:00
})
const mapStateToProps = (state, { params }) => {
const groupId = isObject(params) ? params['id'] : -1
const group = groupId === -1 ? null : state.getIn(['groups', groupId])
return {
group,
groupId,
accountIds: state.getIn(['user_lists', 'groups_removed_accounts', groupId, 'items']),
hasMore: !!state.getIn(['user_lists', 'groups_removed_accounts', groupId, 'next']),
}
}
const mapDispatchToProps = (dispatch) => ({
onFetchRemovedAccounts(groupId) {
dispatch(fetchRemovedAccounts(groupId))
},
onExpandRemovedAccounts(groupId) {
dispatch(expandRemovedAccounts(groupId))
},
onRemoveRemovedAccount(groupId, accountId) {
dispatch(removeRemovedAccount(groupId, accountId))
},
2020-05-07 06:55:24 +01:00
})
2020-02-25 16:04:44 +00:00
export default
2019-07-16 21:18:23 +01:00
@injectIntl
@connect(mapStateToProps, mapDispatchToProps)
class GroupRemovedAccounts extends ImmutablePureComponent {
static propTypes = {
2020-05-07 06:55:24 +01:00
groupId: PropTypes.string.isRequired,
2020-02-24 23:25:55 +00:00
accountIds: ImmutablePropTypes.list,
hasMore: PropTypes.bool,
onFetchRemovedAccounts: PropTypes.func.isRequired,
onExpandRemovedAccounts: PropTypes.func.isRequired,
onRemoveRemovedAccount: PropTypes.func.isRequired,
2020-05-07 06:55:24 +01:00
}
2020-02-24 23:25:55 +00:00
componentWillMount() {
2020-05-07 06:55:24 +01:00
const { groupId } = this.props
this.props.onFetchRemovedAccounts(groupId)
}
2020-02-24 23:25:55 +00:00
componentWillReceiveProps(nextProps) {
2020-05-07 06:55:24 +01:00
if (nextProps.groupId !== this.props.groupId) {
this.props.onFetchRemovedAccounts(nextProps.groupId)
2020-02-24 23:25:55 +00:00
}
}
handleLoadMore = debounce(() => {
this.props.onExpandRemovedAccounts(this.props.groupId)
2020-05-07 06:55:24 +01:00
}, 300, { leading: true })
2020-02-24 23:25:55 +00:00
render() {
const {
accountIds,
hasMore,
group,
intl,
} = this.props
if (!group) return <ColumnIndicator type='loading' />
2020-02-24 23:25:55 +00:00
return (
<Block>
<BlockHeading title='Removed Accounts' />
<ScrollableList
scrollKey='removed_accounts'
hasMore={hasMore}
showLoading={(!group || !accountIds)}
onLoadMore={this.handleLoadMore}
emptyMessage={<FormattedMessage id='group.removed_accounts.empty' defaultMessage='This group does not has any removed accounts.' />}
>
{
accountIds && accountIds.map((id) => (
<Account
key={id}
id={id}
actionIcon='subtract'
onActionClick={() => this.props.onRemoveRemovedAccount(group.get('id'), id)}
actionTitle={intl.formatMessage(messages.remove)}
/>
))
}
</ScrollableList>
</Block>
2020-02-24 23:25:55 +00:00
)
}
}