2020-06-05 20:28:46 +01:00
|
|
|
import throttle from 'lodash.throttle'
|
2020-03-24 04:39:12 +00:00
|
|
|
import { openModal } from '../actions/modal'
|
2020-04-16 07:00:43 +01:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl'
|
2020-05-03 06:22:49 +01:00
|
|
|
import { MODAL_HOME_TIMELINE_SETTINGS } from '../constants'
|
2020-05-14 07:03:22 +01:00
|
|
|
import { me } from '../initial_state'
|
2020-04-11 23:29:19 +01:00
|
|
|
import PageTitle from '../features/ui/util/page_title'
|
2020-02-24 21:56:07 +00:00
|
|
|
import DefaultLayout from '../layouts/default_layout'
|
2020-02-08 06:12:01 +00:00
|
|
|
import TimelineComposeBlock from '../components/timeline_compose_block'
|
2020-02-19 23:57:07 +00:00
|
|
|
import Divider from '../components/divider'
|
2020-05-07 05:03:34 +01:00
|
|
|
import PullToRefresher from '../components/pull_to_refresher'
|
2020-08-12 23:52:46 +01:00
|
|
|
import WrappedBundle from '../features/ui/util/wrapped_bundle'
|
|
|
|
import {
|
|
|
|
UserPanel,
|
|
|
|
GroupsPanel,
|
|
|
|
LinkFooter,
|
|
|
|
ListsPanel,
|
|
|
|
TrendsPanel,
|
|
|
|
WhoToFollowPanel,
|
|
|
|
ProPanel,
|
|
|
|
ShopPanel,
|
|
|
|
ProgressPanel,
|
|
|
|
} from '../features/ui/util/async_components'
|
2019-07-09 04:49:44 +01:00
|
|
|
|
2020-03-24 04:39:12 +00:00
|
|
|
class HomePage extends PureComponent {
|
|
|
|
|
2020-06-05 20:28:46 +01:00
|
|
|
state = {
|
|
|
|
lazyLoaded: false,
|
|
|
|
}
|
2020-04-28 06:33:58 +01:00
|
|
|
|
2020-06-05 20:28:46 +01:00
|
|
|
componentDidMount() {
|
|
|
|
this.window = window
|
|
|
|
this.documentElement = document.scrollingElement || document.documentElement
|
2020-04-28 06:33:58 +01:00
|
|
|
|
2020-06-05 20:28:46 +01:00
|
|
|
this.window.addEventListener('scroll', this.handleScroll)
|
|
|
|
}
|
2020-04-28 06:33:58 +01:00
|
|
|
|
2020-06-05 20:28:46 +01:00
|
|
|
componentWillUnmount() {
|
|
|
|
this.detachScrollListener()
|
|
|
|
}
|
|
|
|
|
|
|
|
detachScrollListener = () => {
|
|
|
|
this.window.removeEventListener('scroll', this.handleScroll)
|
|
|
|
}
|
2020-04-28 06:33:58 +01:00
|
|
|
|
2020-06-05 20:28:46 +01:00
|
|
|
handleScroll = throttle(() => {
|
|
|
|
if (this.window) {
|
|
|
|
const { scrollTop } = this.documentElement
|
|
|
|
|
|
|
|
if (scrollTop > 25 && !this.state.lazyLoaded) {
|
|
|
|
this.setState({ lazyLoaded: true })
|
|
|
|
this.detachScrollListener()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 150, {
|
|
|
|
trailing: true,
|
|
|
|
})
|
2020-04-28 06:33:58 +01:00
|
|
|
|
2020-08-14 18:45:59 +01:00
|
|
|
onOpenHomePageSettingsModal = () => {
|
|
|
|
this.props.dispatch(openModal(MODAL_HOME_TIMELINE_SETTINGS))
|
|
|
|
}
|
|
|
|
|
2020-02-08 06:12:01 +00:00
|
|
|
render() {
|
2020-04-16 07:00:43 +01:00
|
|
|
const {
|
|
|
|
children,
|
2020-08-14 18:45:59 +01:00
|
|
|
intl,
|
2020-05-14 07:03:22 +01:00
|
|
|
isPro,
|
2020-08-14 18:45:59 +01:00
|
|
|
totalQueuedItemsCount,
|
2020-04-16 07:00:43 +01:00
|
|
|
} = this.props
|
2020-06-05 20:28:46 +01:00
|
|
|
const { lazyLoaded } = this.state
|
2019-07-09 04:49:44 +01:00
|
|
|
|
2020-08-14 18:45:59 +01:00
|
|
|
const title = intl.formatMessage(messages.home)
|
|
|
|
|
2019-07-09 04:49:44 +01:00
|
|
|
return (
|
2020-02-17 17:50:29 +00:00
|
|
|
<DefaultLayout
|
2020-07-16 05:05:08 +01:00
|
|
|
page='home'
|
2020-08-14 18:45:59 +01:00
|
|
|
title={title}
|
2020-02-19 23:57:07 +00:00
|
|
|
actions={[
|
2020-05-07 00:40:54 +01:00
|
|
|
{
|
|
|
|
icon: 'ellipsis',
|
2020-08-14 18:45:59 +01:00
|
|
|
onClick: this.onOpenHomePageSettingsModal,
|
2020-05-07 00:40:54 +01:00
|
|
|
},
|
2020-02-19 23:57:07 +00:00
|
|
|
]}
|
2020-07-16 05:05:08 +01:00
|
|
|
layout={[
|
2020-08-12 23:52:46 +01:00
|
|
|
UserPanel,
|
|
|
|
ProgressPanel,
|
|
|
|
<WrappedBundle component={ProPanel} componentParams={{ isPro: isPro }} />,
|
|
|
|
TrendsPanel,
|
|
|
|
<WrappedBundle component={ShopPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded }} />,
|
|
|
|
<WrappedBundle component={ListsPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded }} />,
|
|
|
|
<WrappedBundle component={WhoToFollowPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded }} />,
|
|
|
|
<WrappedBundle component={GroupsPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded, groupType: 'member' }} />,
|
|
|
|
LinkFooter,
|
2020-07-16 05:05:08 +01:00
|
|
|
]}
|
2019-08-07 06:02:36 +01:00
|
|
|
>
|
2020-05-03 06:22:49 +01:00
|
|
|
|
2020-04-16 07:00:43 +01:00
|
|
|
<PageTitle
|
2020-08-14 18:45:59 +01:00
|
|
|
path={title}
|
2020-04-16 07:00:43 +01:00
|
|
|
badge={totalQueuedItemsCount}
|
|
|
|
/>
|
2020-05-03 06:22:49 +01:00
|
|
|
|
2020-05-07 05:03:34 +01:00
|
|
|
<PullToRefresher />
|
|
|
|
|
2020-02-28 15:20:47 +00:00
|
|
|
<TimelineComposeBlock autoFocus={false} />
|
2020-05-03 06:22:49 +01:00
|
|
|
|
2020-02-19 23:57:07 +00:00
|
|
|
<Divider />
|
2020-05-03 06:22:49 +01:00
|
|
|
|
2020-02-08 06:12:01 +00:00
|
|
|
{children}
|
2020-05-03 06:22:49 +01:00
|
|
|
|
2020-02-17 17:50:29 +00:00
|
|
|
</DefaultLayout>
|
2019-07-09 04:49:44 +01:00
|
|
|
)
|
|
|
|
}
|
2020-08-14 18:45:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
home: { id: 'home', defaultMessage: 'Home' },
|
|
|
|
})
|
|
|
|
|
|
|
|
const mapStateToProps = (state) => ({
|
|
|
|
totalQueuedItemsCount: state.getIn(['timelines', 'home', 'totalQueuedItemsCount']),
|
|
|
|
isPro: state.getIn(['accounts', me, 'is_pro']),
|
|
|
|
})
|
|
|
|
|
|
|
|
HomePage.propTypes = {
|
|
|
|
children: PropTypes.node.isRequired,
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
isPro: PropTypes.bool,
|
|
|
|
totalQueuedItemsCount: PropTypes.number.isRequired,
|
|
|
|
}
|
|
|
|
|
|
|
|
export default injectIntl(connect(mapStateToProps)(HomePage))
|