gab-social/app/javascript/gabsocial/components/status_list.js

345 lines
10 KiB
JavaScript
Raw Normal View History

import React from 'react'
import PropTypes from 'prop-types'
import { connect } from 'react-redux'
import { Map as ImmutableMap, List as ImmutableList } from 'immutable'
import ImmutablePropTypes from 'react-immutable-proptypes'
import ImmutablePureComponent from 'react-immutable-pure-component'
import { createSelector } from 'reselect'
2020-04-11 23:29:19 +01:00
import debounce from 'lodash.debounce'
import { me, promotions } from '../initial_state'
import { dequeueTimeline } from '../actions/timelines'
import { scrollTopTimeline } from '../actions/timelines'
import { fetchStatus, fetchContext } from '../actions/statuses'
import StatusContainer from '../containers/status_container'
import StatusPlaceholder from './placeholder/status_placeholder'
import ScrollableList from './scrollable_list'
import TimelineQueueButtonHeader from './timeline_queue_button_header'
2020-04-11 23:29:19 +01:00
const makeGetStatusIds = () => createSelector([
(state, { type, id }) => state.getIn(['settings', type], ImmutableMap()),
(state, { type, id }) => state.getIn(['timelines', id, 'items'], ImmutableList()),
2020-05-07 05:03:34 +01:00
(state) => state.get('statuses'),
2020-04-11 23:29:19 +01:00
], (columnSettings, statusIds, statuses) => {
return statusIds.filter(id => {
if (id === null) return true
2020-04-11 23:29:19 +01:00
const statusForId = statuses.get(id)
let showStatus = true
2020-05-07 00:40:54 +01:00
2020-04-11 23:29:19 +01:00
if (columnSettings.getIn(['shows', 'reblog']) === false) {
showStatus = showStatus && statusForId.get('reblog') === null
2020-04-11 23:29:19 +01:00
}
if (columnSettings.getIn(['shows', 'reply']) === false) {
showStatus = showStatus && (statusForId.get('in_reply_to_id') === null || statusForId.get('in_reply_to_account_id') === me)
2020-04-11 23:29:19 +01:00
}
return showStatus
})
})
2020-04-11 23:29:19 +01:00
2020-04-17 06:35:46 +01:00
const mapStateToProps = (state, { timelineId }) => {
if (!timelineId) return {}
2020-05-07 05:03:34 +01:00
const getStatusIds = makeGetStatusIds()
2020-04-11 23:29:19 +01:00
2020-04-28 06:33:58 +01:00
const statusIds = getStatusIds(state, {
2020-05-07 05:03:34 +01:00
type: timelineId.substring(0, 5) === 'group' ? 'group' : timelineId,
2020-04-28 06:33:58 +01:00
id: timelineId
})
const promotedStatuses = Array.isArray(promotions) ?
promotions.map((block) => {
const s = {}
s[block.status_id] = state.getIn(['statuses', block.status_id])
return s
}) : []
2020-04-11 23:29:19 +01:00
return {
2020-04-28 06:33:58 +01:00
statusIds,
promotedStatuses,
2020-04-11 23:29:19 +01:00
isLoading: state.getIn(['timelines', timelineId, 'isLoading'], true),
isPartial: state.getIn(['timelines', timelineId, 'isPartial'], false),
2020-04-22 06:00:11 +01:00
hasMore: state.getIn(['timelines', timelineId, 'hasMore']),
2020-04-11 23:29:19 +01:00
totalQueuedItemsCount: state.getIn(['timelines', timelineId, 'totalQueuedItemsCount']),
}
}
2020-04-11 23:29:19 +01:00
const mapDispatchToProps = (dispatch, ownProps) => ({
onDequeueTimeline(timelineId) {
dispatch(dequeueTimeline(timelineId, ownProps.onLoadMore))
2020-04-11 23:29:19 +01:00
},
onScrollToTop: debounce(() => {
dispatch(scrollTopTimeline(ownProps.timelineId, true))
2020-04-11 23:29:19 +01:00
}, 100),
onScroll: debounce(() => {
dispatch(scrollTopTimeline(ownProps.timelineId, false))
2020-04-11 23:29:19 +01:00
}, 100),
2020-05-15 03:31:24 +01:00
onFetchContext(statusId) {
dispatch(fetchContext(statusId, true))
},
onFetchStatus(statusId) {
dispatch(fetchStatus(statusId))
},
})
2020-04-11 23:29:19 +01:00
export default
@connect(mapStateToProps, mapDispatchToProps)
class StatusList extends ImmutablePureComponent {
static propTypes = {
scrollKey: PropTypes.string.isRequired,
statusIds: ImmutablePropTypes.list.isRequired,
featuredStatusIds: ImmutablePropTypes.list,
onLoadMore: PropTypes.func,
isLoading: PropTypes.bool,
isPartial: PropTypes.bool,
hasMore: PropTypes.bool,
2020-02-19 23:57:07 +00:00
emptyMessage: PropTypes.string,
timelineId: PropTypes.string,
queuedItemSize: PropTypes.number,
onDequeueTimeline: PropTypes.func.isRequired,
onScrollToTop: PropTypes.func.isRequired,
onScroll: PropTypes.func.isRequired,
onFetchContext: PropTypes.func.isRequired,
onFetchStatus: PropTypes.func.isRequired,
promotedStatuses: PropTypes.object,
2020-05-15 03:31:24 +01:00
}
state = {
refreshing: false,
2020-05-15 03:31:24 +01:00
fetchedContext: false,
}
componentDidMount() {
this.handleDequeueTimeline()
this.fetchPromotedStatus()
}
fetchPromotedStatus() {
const {
onFetchStatus,
promotedStatuses,
timelineId,
statusIds,
} = this.props
if (Array.isArray(promotions)) {
promotions.forEach((promotionBlock) => {
if (promotionBlock.timeline_id === timelineId &&
statusIds.count() >= promotionBlock.position &&
!promotedStatuses[promotionBlock.status_id]) {
onFetchStatus(promotionBlock.status_id)
}
})
}
}
componentDidUpdate(prevProps, prevState) {
if (prevState.refreshing) {
this.setState({ refreshing: false })
}
if (prevProps.statusIds.count() < this.props.statusIds.count()) {
this.fetchPromotedStatus()
}
}
2020-05-15 03:31:24 +01:00
fetchContextsForInitialStatuses = (statusIds) => {
for (let i = 0; i < statusIds.length; i++) {
const statusId = statusIds[i]
2020-05-15 03:31:24 +01:00
this.props.onFetchContext(statusId)
}
this.setState({ fetchedContext: true })
}
getFeaturedStatusCount = () => {
return this.props.featuredStatusIds ? this.props.featuredStatusIds.size : 0
}
getCurrentStatusIndex = (id, featured) => {
if (featured) {
return this.props.featuredStatusIds.indexOf(id)
}
return this.props.statusIds.indexOf(id) + this.getFeaturedStatusCount()
}
handleMoveUp = (id, featured) => {
const elementIndex = this.getCurrentStatusIndex(id, featured) - 1
this._selectChild(elementIndex, true)
}
handleMoveDown = (id, featured) => {
const elementIndex = this.getCurrentStatusIndex(id, featured) + 1
this._selectChild(elementIndex, false)
}
handleLoadOlder = debounce(() => {
2020-05-07 05:03:34 +01:00
this.props.onLoadMore(this.props.statusIds.size > 0 ? this.props.statusIds.last() : undefined)
}, 300, { leading: true })
handleOnReload = debounce(() => {
// Only pull to refresh on home timeline for now
if (this.props.scrollKey === 'home_timeline' && !this.state.refreshing) {
this.props.onLoadMore()
this.setState({ refreshing: true })
}
}, 300, { trailing: true })
2020-05-07 05:03:34 +01:00
_selectChild(index, align_top) {
const container = this.node.node
const element = container.querySelector(`article:nth-of-type(${index + 1}) .focusable`)
if (element) {
if (align_top && container.scrollTop > element.offsetTop) {
element.scrollIntoView(true)
} else if (!align_top && container.scrollTop + container.clientHeight < element.offsetTop + element.offsetHeight) {
element.scrollIntoView(false)
}
element.focus()
}
}
handleDequeueTimeline = () => {
const { onDequeueTimeline, timelineId } = this.props
if (!onDequeueTimeline || !timelineId) return
onDequeueTimeline(timelineId)
}
setRef = c => {
this.node = c
}
2020-05-07 05:03:34 +01:00
render() {
2020-05-07 00:40:54 +01:00
const {
statusIds,
featuredStatusIds,
onLoadMore,
timelineId,
totalQueuedItemsCount,
isLoading,
isPartial,
promotedStatuses,
scrollKey,
hasMore,
emptyMessage,
onScrollToTop,
onScroll,
2020-05-07 05:03:34 +01:00
} = this.props
const { fetchedContext, refreshing } = this.state
if (isPartial || (isLoading && statusIds.size === 0)) {
return (
<React.Fragment>
<StatusPlaceholder />
<StatusPlaceholder />
<StatusPlaceholder />
</React.Fragment>
)
}
2020-05-15 03:31:24 +01:00
// : hack :
// if index is 0 or 1 and is comment, preload context
if (statusIds && !fetchedContext) {
const firstStatusId = statusIds.get(0)
const secondStatusId = statusIds.get(1)
let arr = []
if (!!firstStatusId) arr.push(firstStatusId)
if (!!secondStatusId) arr.push(secondStatusId)
if (arr.length > 0) this.fetchContextsForInitialStatuses(arr)
}
let scrollableContent = []
if (isLoading || statusIds.size > 0) {
for (let i = 0; i < statusIds.count(); i++) {
const statusId = statusIds.get(i)
if (!statusId) {
scrollableContent.push(
<div
key={'gap:' + statusIds.get(i + 1)}
disabled={isLoading}
maxId={i > 0 ? statusIds.get(i - 1) : null}
onClick={onLoadMore}
/>
)
} else {
if (Array.isArray(promotions)) {
const promotionBlock = promotions.find(p => (p.position === i && p.timeline_id === timelineId))
if (promotionBlock) {
scrollableContent.push(
<StatusContainer
key={`promotion-${i}-${promotionBlock.status_id}`}
id={promotionBlock.status_id}
onMoveUp={this.handleMoveUp}
onMoveDown={this.handleMoveDown}
contextType={timelineId}
commentsLimited
isPromoted
/>
)
}
}
scrollableContent.push(
<StatusContainer
key={`${statusId}-${i}`}
id={statusId}
onMoveUp={this.handleMoveUp}
onMoveDown={this.handleMoveDown}
contextType={timelineId}
commentsLimited
/>
)
}
}
}
if (scrollableContent && featuredStatusIds) {
scrollableContent = featuredStatusIds.map((statusId) => (
2020-04-22 06:00:11 +01:00
<StatusContainer
key={`f-${statusId}`}
id={statusId}
2020-04-22 06:00:11 +01:00
isFeatured
onMoveUp={this.handleMoveUp}
onMoveDown={this.handleMoveDown}
contextType={timelineId}
2020-04-17 06:35:46 +01:00
commentsLimited
/>
2020-04-11 23:29:19 +01:00
)).concat(scrollableContent)
}
return (
<React.Fragment>
<TimelineQueueButtonHeader
onClick={this.handleDequeueTimeline}
count={totalQueuedItemsCount}
itemType='gab'
/>
<ScrollableList
ref={this.setRef}
isLoading={isLoading}
showLoading={(isLoading && statusIds.size === 0)}
onLoadMore={onLoadMore && this.handleLoadOlder}
onReload={this.handleOnReload}
placeholderComponent={StatusPlaceholder}
placeholderCount={1}
scrollKey={scrollKey}
hasMore={hasMore}
emptyMessage={emptyMessage}
onScrollToTop={onScrollToTop}
onScroll={onScroll}
>
{scrollableContent}
</ScrollableList>
</React.Fragment>
)
}
}