62 lines
2.3 KiB
JavaScript
62 lines
2.3 KiB
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
import PrimaryNavigation from 'soapbox/components/primary_navigation';
|
|
import WhoToFollowPanel from 'soapbox/features/ui/components/who_to_follow_panel';
|
|
import TrendsPanel from 'soapbox/features/ui/components/trends_panel';
|
|
import PromoPanel from 'soapbox/features/ui/components/promo_panel';
|
|
import FeaturesPanel from 'soapbox/features/ui/components/features_panel';
|
|
import SignUpPanel from 'soapbox/features/ui/components/sign_up_panel';
|
|
import LinkFooter from 'soapbox/features/ui/components/link_footer';
|
|
import { getFeatures } from 'soapbox/utils/features';
|
|
|
|
const mapStateToProps = state => {
|
|
const me = state.get('me');
|
|
const features = getFeatures(state.get('instance'));
|
|
|
|
return {
|
|
me,
|
|
showTrendsPanel: features.trends,
|
|
showWhoToFollowPanel: features.suggestions,
|
|
};
|
|
};
|
|
|
|
export default @connect(mapStateToProps)
|
|
class DefaultPage extends ImmutablePureComponent {
|
|
|
|
render() {
|
|
const { me, children, showTrendsPanel, showWhoToFollowPanel } = this.props;
|
|
|
|
return (
|
|
<div className='page'>
|
|
<div className='page__columns'>
|
|
<div className='columns-area__panels'>
|
|
|
|
<div className='columns-area__panels__pane columns-area__panels__pane--left'>
|
|
<div className='columns-area__panels__pane__inner'>
|
|
<PrimaryNavigation />
|
|
</div>
|
|
</div>
|
|
|
|
<div className='columns-area__panels__main'>
|
|
<div className='columns-area columns-area--mobile'>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
|
|
<div className='columns-area__panels__pane columns-area__panels__pane--right'>
|
|
<div className='columns-area__panels__pane__inner'>
|
|
{me ? <FeaturesPanel key='features-panel' /> : <SignUpPanel key='sign-up-panel' />}
|
|
{showTrendsPanel && <TrendsPanel limit={3} key='trends-panel' />}
|
|
{showWhoToFollowPanel && <WhoToFollowPanel limit={5} key='wtf-panel' />}
|
|
<PromoPanel key='promo-panel' />
|
|
<LinkFooter key='link-footer' />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|