[groups] Change default sorts for groups and groups collection
This commit is contained in:
parent
1c647b0b06
commit
3f6e8a62fd
|
@ -39,8 +39,8 @@ class GroupCollectionTimeline extends React.PureComponent {
|
|||
|
||||
if (this.props.collectionType === 'featured' && sortByValue !== GROUP_TIMELINE_SORTING_TYPE_HOT) {
|
||||
this.props.setFeaturedTop()
|
||||
} else if (!!me && this.props.collectionType === 'member' && sortByValue !== GROUP_TIMELINE_SORTING_TYPE_NEWEST) {
|
||||
this.props.setMemberNewest()
|
||||
} else if (!!me && this.props.collectionType === 'member' && sortByValue !== GROUP_TIMELINE_SORTING_TYPE_HOT) {
|
||||
this.props.setMemberHot()
|
||||
} else {
|
||||
const sortBy = getSortBy(sortByValue, sortByTopValue)
|
||||
this.props.onExpandGroupCollectionTimeline(collectionType, { sortBy })
|
||||
|
@ -141,6 +141,9 @@ const mapDispatchToProps = (dispatch) => ({
|
|||
setMemberNewest() {
|
||||
dispatch(setGroupTimelineSort(GROUP_TIMELINE_SORTING_TYPE_NEWEST))
|
||||
},
|
||||
setMemberHot() {
|
||||
dispatch(setGroupTimelineSort(GROUP_TIMELINE_SORTING_TYPE_HOT))
|
||||
},
|
||||
})
|
||||
|
||||
GroupCollectionTimeline.propTypes = {
|
||||
|
|
|
@ -14,10 +14,12 @@ import {
|
|||
} from '../actions/timelines'
|
||||
import {
|
||||
setGroupTimelineSort,
|
||||
setGroupTimelineTopSort,
|
||||
} from '../actions/groups'
|
||||
import {
|
||||
MIN_UNAUTHENTICATED_PAGES,
|
||||
GROUP_TIMELINE_SORTING_TYPE_NEWEST,
|
||||
GROUP_TIMELINE_SORTING_TYPE_TOP_OPTION_WEEKLY,
|
||||
} from '../constants'
|
||||
import StatusList from '../components/status_list'
|
||||
import ColumnIndicator from '../components/column_indicator'
|
||||
|
@ -40,8 +42,8 @@ class GroupTimeline extends ImmutablePureComponent {
|
|||
isDeckConnected,
|
||||
} = this.props
|
||||
|
||||
if (sortByValue !== GROUP_TIMELINE_SORTING_TYPE_NEWEST) {
|
||||
this.props.setMemberNewest()
|
||||
if (sortByValue !== GROUP_TIMELINE_SORTING_TYPE_TOP_OPTION_WEEKLY) {
|
||||
this.props.setMemberTopWeekly()
|
||||
} else {
|
||||
const sortBy = getSortBy(sortByValue, sortByTopValue, onlyMedia)
|
||||
|
||||
|
@ -146,6 +148,9 @@ const mapDispatchToProps = (dispatch) => ({
|
|||
setMemberNewest() {
|
||||
dispatch(setGroupTimelineSort(GROUP_TIMELINE_SORTING_TYPE_NEWEST))
|
||||
},
|
||||
setMemberTopWeekly() {
|
||||
dispatch(setGroupTimelineTopSort(GROUP_TIMELINE_SORTING_TYPE_TOP_OPTION_WEEKLY))
|
||||
},
|
||||
onExpandGroupFeaturedTimeline(groupId) {
|
||||
dispatch(expandGroupFeaturedTimeline(groupId))
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue