014e476b5d
• Updated: - pages, layout component structures
131 lines
3.5 KiB
JavaScript
131 lines
3.5 KiB
JavaScript
import throttle from 'lodash.throttle'
|
|
import { openModal } from '../actions/modal'
|
|
import { defineMessages, injectIntl } from 'react-intl'
|
|
import { MODAL_HOME_TIMELINE_SETTINGS } from '../constants'
|
|
import { me } from '../initial_state'
|
|
import PageTitle from '../features/ui/util/page_title'
|
|
import DefaultLayout from '../layouts/default_layout'
|
|
import TimelineComposeBlock from '../components/timeline_compose_block'
|
|
import Divider from '../components/divider'
|
|
import PullToRefresher from '../components/pull_to_refresher'
|
|
import WrappedBundle from '../features/ui/util/wrapped_bundle'
|
|
import {
|
|
UserPanel,
|
|
GroupsPanel,
|
|
LinkFooter,
|
|
ListsPanel,
|
|
TrendsPanel,
|
|
WhoToFollowPanel,
|
|
ProPanel,
|
|
ShopPanel,
|
|
ProgressPanel,
|
|
} from '../features/ui/util/async_components'
|
|
|
|
class HomePage extends PureComponent {
|
|
|
|
state = {
|
|
lazyLoaded: false,
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.window = window
|
|
this.documentElement = document.scrollingElement || document.documentElement
|
|
|
|
this.window.addEventListener('scroll', this.handleScroll)
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.detachScrollListener()
|
|
}
|
|
|
|
detachScrollListener = () => {
|
|
this.window.removeEventListener('scroll', this.handleScroll)
|
|
}
|
|
|
|
handleScroll = throttle(() => {
|
|
if (this.window) {
|
|
const { scrollTop } = this.documentElement
|
|
|
|
if (scrollTop > 25 && !this.state.lazyLoaded) {
|
|
this.setState({ lazyLoaded: true })
|
|
this.detachScrollListener()
|
|
}
|
|
}
|
|
}, 150, {
|
|
trailing: true,
|
|
})
|
|
|
|
onOpenHomePageSettingsModal = () => {
|
|
this.props.dispatch(openModal(MODAL_HOME_TIMELINE_SETTINGS))
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
children,
|
|
intl,
|
|
isPro,
|
|
totalQueuedItemsCount,
|
|
} = this.props
|
|
const { lazyLoaded } = this.state
|
|
|
|
const title = intl.formatMessage(messages.home)
|
|
|
|
return (
|
|
<DefaultLayout
|
|
page='home'
|
|
title={title}
|
|
actions={[
|
|
{
|
|
icon: 'ellipsis',
|
|
onClick: this.onOpenHomePageSettingsModal,
|
|
},
|
|
]}
|
|
layout={[
|
|
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,
|
|
]}
|
|
>
|
|
|
|
<PageTitle
|
|
path={title}
|
|
badge={totalQueuedItemsCount}
|
|
/>
|
|
|
|
<PullToRefresher />
|
|
|
|
<TimelineComposeBlock autoFocus={false} />
|
|
|
|
<Divider />
|
|
|
|
{children}
|
|
|
|
</DefaultLayout>
|
|
)
|
|
}
|
|
}
|
|
|
|
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)) |