bigbuffet-rw/app/soapbox/pages/home_page.js

135 lines
4.9 KiB
JavaScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
import React from 'react';
import ImmutablePureComponent from 'react-immutable-pure-component';
2020-03-27 13:59:38 -07:00
import { connect } from 'react-redux';
import { Link } from 'react-router-dom';
2021-09-20 15:53:08 -07:00
import Sticky from 'react-stickynode';
import { getSoapboxConfig } from 'soapbox/actions/soapbox';
2021-09-12 16:16:53 -07:00
import PrimaryNavigation from 'soapbox/components/primary_navigation';
import LinkFooter from 'soapbox/features/ui/components/link_footer';
2021-09-18 15:48:13 -07:00
import {
WhoToFollowPanel,
CryptoDonatePanel,
// UserPanel,
2021-09-18 15:48:13 -07:00
TrendsPanel,
PromoPanel,
FundingPanel,
FeaturesPanel,
SignUpPanel,
} from 'soapbox/features/ui/util/async-components';
2020-04-14 13:45:38 -07:00
// import GroupSidebarPanel from '../features/groups/sidebar_panel';
import { getFeatures } from 'soapbox/utils/features';
2022-01-10 14:01:24 -08:00
import Avatar from '../components/avatar';
import ComposeFormContainer from '../features/compose/containers/compose_form_container';
import BundleContainer from '../features/ui/containers/bundle_container';
2020-03-27 13:59:38 -07:00
const mapStateToProps = state => {
const me = state.get('me');
const soapbox = getSoapboxConfig(state);
const hasPatron = soapbox.getIn(['extensions', 'patron', 'enabled']);
const hasCrypto = typeof soapbox.getIn(['cryptoAddresses', 0, 'ticker']) === 'string';
const cryptoLimit = soapbox.getIn(['cryptoDonatePanel', 'limit']);
const features = getFeatures(state.get('instance'));
return {
2020-06-16 05:06:44 -07:00
me,
account: state.getIn(['accounts', me]),
showFundingPanel: hasPatron,
showCryptoDonatePanel: hasCrypto && cryptoLimit > 0,
cryptoLimit,
showTrendsPanel: features.trends,
showWhoToFollowPanel: features.suggestions,
2020-04-14 11:44:40 -07:00
};
};
2020-03-27 13:59:38 -07:00
export default @connect(mapStateToProps)
class HomePage extends ImmutablePureComponent {
2020-04-14 11:44:40 -07:00
2020-04-15 13:21:53 -07:00
constructor(props) {
super(props);
this.composeBlock = React.createRef();
}
render() {
const { me, children, account, showFundingPanel, showCryptoDonatePanel, cryptoLimit, showTrendsPanel, showWhoToFollowPanel } = this.props;
2020-03-27 13:59:38 -07:00
const acct = account ? account.get('acct') : '';
2020-03-27 13:59:38 -07:00
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'>
2021-09-20 15:53:08 -07:00
<Sticky top={65}>
<PrimaryNavigation />
</Sticky>
2020-03-27 13:59:38 -07:00
</div>
</div>
<div className='columns-area__panels__main'>
<div className='columns-area'>
2021-01-27 18:40:30 -08:00
{me && <div className='timeline-compose-block' ref={this.composeBlock}>
<Link className='timeline-compose-block__avatar' to={`/@${acct}`}>
2020-03-27 13:59:38 -07:00
<Avatar account={account} size={46} />
</Link>
2020-04-15 13:21:53 -07:00
<ComposeFormContainer
shouldCondense
autoFocus={false}
clickableAreaRef={this.composeBlock}
/>
2021-01-27 18:40:30 -08:00
</div>}
2020-03-27 13:59:38 -07:00
{children}
</div>
</div>
<div className='columns-area__panels__pane columns-area__panels__pane--right'>
<div className='columns-area__panels__pane__inner'>
2021-09-20 15:53:08 -07:00
<Sticky top={65}>
{me ? (
<BundleContainer fetchComponent={FeaturesPanel}>
{Component => <Component key='features-panel' />}
</BundleContainer>
) : (
<BundleContainer fetchComponent={SignUpPanel}>
{Component => <Component key='sign-up-panel' />}
</BundleContainer>
)}
<BundleContainer fetchComponent={PromoPanel}>
{Component => <Component key='promo-panel' />}
2021-09-18 15:48:13 -07:00
</BundleContainer>
2021-09-20 15:53:08 -07:00
{showFundingPanel && (
<BundleContainer fetchComponent={FundingPanel}>
{Component => <Component key='funding-panel' />}
</BundleContainer>
)}
{showCryptoDonatePanel && (
<BundleContainer fetchComponent={CryptoDonatePanel}>
{Component => <Component limit={cryptoLimit} key='crypto-panel' />}
</BundleContainer>
)}
{showTrendsPanel && (
<BundleContainer fetchComponent={TrendsPanel}>
{Component => <Component limit={3} key='trends-panel' />}
</BundleContainer>
)}
{showWhoToFollowPanel && (
<BundleContainer fetchComponent={WhoToFollowPanel}>
{Component => <Component limit={5} key='wtf-panel' />}
</BundleContainer>
)}
2021-09-20 15:53:08 -07:00
<LinkFooter key='link-footer' />
</Sticky>
2020-03-27 13:59:38 -07:00
</div>
</div>
</div>
</div>
</div>
2020-04-14 11:44:40 -07:00
);
2020-03-27 13:59:38 -07:00
}
2020-04-14 11:44:40 -07:00
2020-03-27 13:59:38 -07:00
}