gab-social/app/javascript/gabsocial/pages/home_page.js

131 lines
3.5 KiB
JavaScript
Raw Normal View History

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'
import WrappedBundle from '../features/ui/util/wrapped_bundle'
import {
UserPanel,
GroupsPanel,
LinkFooter,
ListsPanel,
TrendsPanel,
WhoToFollowPanel,
ProPanel,
ShopPanel,
ProgressPanel,
} from '../features/ui/util/async_components'
2020-03-24 04:39:12 +00:00
class HomePage extends PureComponent {
state = {
lazyLoaded: false,
}
2020-04-28 06:33:58 +01:00
componentDidMount() {
this.window = window
this.documentElement = document.scrollingElement || document.documentElement
2020-04-28 06:33:58 +01:00
this.window.addEventListener('scroll', this.handleScroll)
}
2020-04-28 06:33:58 +01:00
componentWillUnmount() {
this.detachScrollListener()
}
detachScrollListener = () => {
this.window.removeEventListener('scroll', this.handleScroll)
}
2020-04-28 06:33:58 +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
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,
intl,
2020-05-14 07:03:22 +01:00
isPro,
totalQueuedItemsCount,
2020-04-16 07:00:43 +01:00
} = this.props
const { lazyLoaded } = this.state
const title = intl.formatMessage(messages.home)
return (
2020-02-17 17:50:29 +00:00
<DefaultLayout
page='home'
title={title}
2020-02-19 23:57:07 +00:00
actions={[
2020-05-07 00:40:54 +01:00
{
icon: 'ellipsis',
onClick: this.onOpenHomePageSettingsModal,
2020-05-07 00:40:54 +01:00
},
2020-02-19 23:57:07 +00:00
]}
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,
]}
>
2020-05-03 06:22:49 +01:00
2020-04-16 07:00:43 +01:00
<PageTitle
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>
)
}
}
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))