2020-08-17 21:07:16 +01:00
|
|
|
import React from 'react'
|
2020-08-17 21:59:29 +01:00
|
|
|
import PropTypes from 'prop-types'
|
2020-08-17 21:39:25 +01:00
|
|
|
import { connect } from 'react-redux'
|
2020-02-19 23:57:07 +00:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl'
|
2020-06-10 22:44:38 +01:00
|
|
|
import { withRouter } from 'react-router-dom'
|
|
|
|
import throttle from 'lodash.throttle'
|
|
|
|
import {
|
|
|
|
expandHomeTimeline,
|
|
|
|
forceDequeueTimeline,
|
|
|
|
} from '../actions/timelines'
|
2020-04-11 23:29:19 +01:00
|
|
|
import StatusList from '../components/status_list'
|
2019-07-02 08:10:25 +01:00
|
|
|
|
2020-08-17 21:07:16 +01:00
|
|
|
class HomeTimeline extends React.PureComponent {
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
componentDidMount () {
|
2021-01-05 06:45:26 +00:00
|
|
|
this.props.onExpandHomeTimeline()
|
2019-07-02 08:10:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate (prevProps) {
|
2020-06-10 22:44:38 +01:00
|
|
|
//Check if clicked on "home" button, if so, reload
|
|
|
|
if (prevProps.location.key !== this.props.location.key &&
|
|
|
|
prevProps.location.pathname === '/home' &&
|
|
|
|
this.props.location.pathname === '/home') {
|
|
|
|
this.handleReload()
|
|
|
|
}
|
2019-07-02 08:10:25 +01:00
|
|
|
}
|
|
|
|
|
2020-06-10 22:44:38 +01:00
|
|
|
handleLoadMore = (maxId) => {
|
|
|
|
this.props.onExpandHomeTimeline({ maxId })
|
|
|
|
}
|
|
|
|
|
|
|
|
handleReload = throttle(() => {
|
|
|
|
this.props.onExpandHomeTimeline()
|
|
|
|
}, 5000)
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
render () {
|
2020-02-19 23:57:07 +00:00
|
|
|
const { intl } = this.props
|
|
|
|
|
|
|
|
const emptyMessage = intl.formatMessage(messages.empty)
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
return (
|
2020-04-11 23:29:19 +01:00
|
|
|
<StatusList
|
2020-02-19 23:57:07 +00:00
|
|
|
scrollKey='home_timeline'
|
|
|
|
onLoadMore={this.handleLoadMore}
|
|
|
|
timelineId='home'
|
|
|
|
emptyMessage={emptyMessage}
|
|
|
|
/>
|
|
|
|
)
|
2019-07-02 08:10:25 +01:00
|
|
|
}
|
|
|
|
|
2020-08-19 01:22:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
title: { id: 'column.home', defaultMessage: 'Home' },
|
|
|
|
empty: { id: 'empty_timeline.home', defaultMessage: 'Your home timeline is empty. Start following other users to receive their content here.' },
|
|
|
|
})
|
|
|
|
|
|
|
|
const mapStateToProps = (state) => ({
|
|
|
|
isPartial: state.getIn(['timelines', 'home', 'isPartial']),
|
|
|
|
})
|
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
|
|
onExpandHomeTimeline(options) {
|
|
|
|
if (!options) dispatch(forceDequeueTimeline('home'))
|
|
|
|
dispatch(expandHomeTimeline(options))
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
HomeTimeline.propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
isPartial: PropTypes.bool,
|
|
|
|
onExpandHomeTimeline: PropTypes.func.isRequired,
|
|
|
|
}
|
|
|
|
|
|
|
|
export default injectIntl(withRouter(connect(mapStateToProps, mapDispatchToProps)(HomeTimeline)))
|