import ImmutablePropTypes from 'react-immutable-proptypes' import ImmutablePureComponent from 'react-immutable-pure-component' import throttle from 'lodash.throttle' import Sticky from 'react-stickynode' import { BREAKPOINT_EXTRA_SMALL } from '../constants' import Layout from './layout' import TrendsPanel from '../components/panel/trends_panel' import GroupSidebarPanel from '../components/panel/groups_panel' import SignUpLogInPanel from '../components/panel/sign_up_log_in_panel' import SidebarPanelGroup from '../components/sidebar_panel_group' import Responsive from '../features/ui/util/responsive_component' import Heading from '../components/heading' export default class ExploreLayout extends ImmutablePureComponent { static propTypes = { actions: PropTypes.array, children: PropTypes.node, group: ImmutablePropTypes.map, groupId: PropTypes.string, layout: PropTypes.object, relationships: ImmutablePropTypes.map, title: PropTypes.string, } 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, }) render() { const { children, title } = this.props const { lazyLoaded } = this.state const pageTitleBlock = (
Popular posts across Gab
) return (
{pageTitleBlock} {children}
{pageTitleBlock} {children}
, , , ]} />
) } }