57d27420ca
• Updated: - group timelines and sorting
152 lines
3.9 KiB
JavaScript
152 lines
3.9 KiB
JavaScript
import { Fragment } from 'react'
|
|
import ImmutablePureComponent from 'react-immutable-pure-component'
|
|
import ImmutablePropTypes from 'react-immutable-proptypes'
|
|
import { injectIntl, defineMessages } from 'react-intl'
|
|
import { me } from '../initial_state'
|
|
import getSortBy from '../utils/group_sort_by'
|
|
import { connectGroupStream } from '../actions/streaming'
|
|
import {
|
|
clearTimeline,
|
|
expandGroupTimeline,
|
|
} from '../actions/timelines'
|
|
import {
|
|
setGroupTimelineSort,
|
|
} from '../actions/groups'
|
|
import {
|
|
GROUP_TIMELINE_SORTING_TYPE_NEWEST,
|
|
} from '../constants'
|
|
import StatusList from '../components/status_list'
|
|
import ColumnIndicator from '../components/column_indicator'
|
|
import GroupSortBlock from '../components/group_sort_block'
|
|
|
|
const messages = defineMessages({
|
|
empty: { id: 'empty_column.group', defaultMessage: 'There is nothing in this group yet.\nWhen members of this group post new statuses, they will appear here.' },
|
|
})
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
groupId: props.params.id,
|
|
group: state.getIn(['groups', props.params.id]),
|
|
sortByValue: state.getIn(['group_lists', 'sortByValue']),
|
|
sortByTopValue: state.getIn(['group_lists', 'sortByTopValue']),
|
|
})
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
onConnectGroupStream(groupId) {
|
|
dispatch(connectGroupStream(groupId))
|
|
},
|
|
onClearTimeline(timelineId) {
|
|
dispatch(clearTimeline(timelineId))
|
|
},
|
|
onExpandGroupTimeline(groupId, options) {
|
|
dispatch(expandGroupTimeline(groupId, options))
|
|
},
|
|
setMemberNewest() {
|
|
dispatch(setGroupTimelineSort(GROUP_TIMELINE_SORTING_TYPE_NEWEST))
|
|
},
|
|
})
|
|
|
|
export default
|
|
@connect(mapStateToProps, mapDispatchToProps)
|
|
@injectIntl
|
|
class GroupTimeline extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
params: PropTypes.object.isRequired,
|
|
group: PropTypes.oneOfType([
|
|
ImmutablePropTypes.map,
|
|
PropTypes.bool,
|
|
]),
|
|
groupId: PropTypes.string,
|
|
intl: PropTypes.object.isRequired,
|
|
onConnectGroupStream: PropTypes.func.isRequired,
|
|
onClearTimeline: PropTypes.func.isRequired,
|
|
onExpandGroupTimeline: PropTypes.func.isRequired,
|
|
setMemberNewest: PropTypes.func.isRequired,
|
|
sortByValue: PropTypes.string.isRequired,
|
|
sortByTopValue: PropTypes.string,
|
|
onlyMedia: PropTypes.bool,
|
|
}
|
|
|
|
state = {
|
|
//keep track of loads for if no user,
|
|
//only allow 2 loads before showing sign up msg
|
|
loadCount: 0,
|
|
}
|
|
|
|
componentDidMount() {
|
|
const {
|
|
groupId,
|
|
sortByValue,
|
|
sortByTopValue,
|
|
onlyMedia,
|
|
} = this.props
|
|
|
|
if (sortByValue !== GROUP_TIMELINE_SORTING_TYPE_NEWEST) {
|
|
this.props.setMemberNewest()
|
|
} else {
|
|
const sortBy = getSortBy(sortByValue, sortByTopValue, onlyMedia)
|
|
this.props.onExpandGroupTimeline(groupId, { sortBy, onlyMedia })
|
|
|
|
if (!!me) {
|
|
this.disconnect = this.props.onConnectGroupStream(groupId)
|
|
}
|
|
}
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if ((prevProps.sortByValue !== this.props.sortByValue ||
|
|
prevProps.sortByTopValue !== this.props.sortByTopValue ||
|
|
prevProps.onlyMedia !== this.props.onlyMedia) &&
|
|
prevProps.groupId === this.props.groupId) {
|
|
this.handleLoadMore()
|
|
this.props.onClearTimeline(`group:${this.props.groupId}`)
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (this.disconnect && !!me) {
|
|
this.disconnect()
|
|
this.disconnect = null
|
|
}
|
|
}
|
|
|
|
handleLoadMore = (maxId) => {
|
|
const {
|
|
groupId,
|
|
sortByValue,
|
|
sortByTopValue,
|
|
onlyMedia,
|
|
} = this.props
|
|
|
|
const sortBy = getSortBy(sortByValue, sortByTopValue)
|
|
this.props.onExpandGroupTimeline(groupId, { sortBy, maxId, onlyMedia })
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
group,
|
|
groupId,
|
|
intl,
|
|
} = this.props
|
|
|
|
if (typeof group === 'undefined') {
|
|
return <ColumnIndicator type='loading' />
|
|
} else if (group === false) {
|
|
return <ColumnIndicator type='missing' />
|
|
}
|
|
|
|
return (
|
|
<Fragment>
|
|
<GroupSortBlock />
|
|
<StatusList
|
|
scrollKey={`group-timeline-${groupId}`}
|
|
timelineId={`group:${groupId}`}
|
|
onLoadMore={this.handleLoadMore}
|
|
emptyMessage={intl.formatMessage(messages.empty)}
|
|
/>
|
|
</Fragment>
|
|
)
|
|
}
|
|
|
|
}
|