2020-03-27 13:59:38 -07:00
|
|
|
import React from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
2021-08-30 14:03:42 -07:00
|
|
|
import { Link } from 'react-router-dom';
|
2020-03-27 13:59:38 -07:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2021-09-20 15:53:08 -07:00
|
|
|
import Sticky from 'react-stickynode';
|
2021-09-11 14:49:05 -07:00
|
|
|
import BundleContainer from '../features/ui/containers/bundle_container';
|
2020-03-27 13:59:38 -07:00
|
|
|
import ComposeFormContainer from '../features/compose/containers/compose_form_container';
|
|
|
|
import Avatar from '../components/avatar';
|
2021-09-12 16:16:53 -07:00
|
|
|
import PrimaryNavigation from 'soapbox/components/primary_navigation';
|
2021-09-18 15:48:13 -07:00
|
|
|
import {
|
|
|
|
WhoToFollowPanel,
|
|
|
|
CryptoDonatePanel,
|
2021-09-18 18:52:26 -07:00
|
|
|
// 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';
|
2021-07-01 16:01:50 -07:00
|
|
|
import LinkFooter from 'soapbox/features/ui/components/link_footer';
|
|
|
|
import { getSoapboxConfig } from 'soapbox/actions/soapbox';
|
|
|
|
import { getFeatures } from 'soapbox/utils/features';
|
2020-03-27 13:59:38 -07:00
|
|
|
|
2020-04-01 19:20:47 -07:00
|
|
|
const mapStateToProps = state => {
|
|
|
|
const me = state.get('me');
|
2021-07-01 16:01:50 -07:00
|
|
|
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'));
|
|
|
|
|
2020-04-01 19:20:47 -07:00
|
|
|
return {
|
2020-06-16 05:06:44 -07:00
|
|
|
me,
|
2020-04-01 19:20:47 -07:00
|
|
|
account: state.getIn(['accounts', me]),
|
2021-07-01 16:01:50 -07:00
|
|
|
showFundingPanel: hasPatron,
|
|
|
|
showCryptoDonatePanel: hasCrypto && cryptoLimit > 0,
|
|
|
|
cryptoLimit,
|
|
|
|
showTrendsPanel: features.trends,
|
|
|
|
showWhoToFollowPanel: features.suggestions,
|
2020-04-14 11:44:40 -07:00
|
|
|
};
|
2020-04-01 19:20:47 -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();
|
|
|
|
}
|
|
|
|
|
2020-04-14 14:47:35 -07:00
|
|
|
render() {
|
2021-07-01 16:01:50 -07:00
|
|
|
const { me, children, account, showFundingPanel, showCryptoDonatePanel, cryptoLimit, showTrendsPanel, showWhoToFollowPanel } = this.props;
|
2020-03-27 13:59:38 -07:00
|
|
|
|
2021-08-30 14:03:42 -07:00
|
|
|
const acct = account ? account.get('acct') : '';
|
2021-08-30 13:09:21 -07:00
|
|
|
|
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>
|
|
|
|
|
2021-10-06 13:57:24 -07:00
|
|
|
<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}>
|
2021-08-30 14:03:42 -07:00
|
|
|
<Link className='timeline-compose-block__avatar' to={`/@${acct}`}>
|
2020-03-27 13:59:38 -07:00
|
|
|
<Avatar account={account} size={46} />
|
2021-08-30 14:03:42 -07:00
|
|
|
</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>
|
|
|
|
)}
|
|
|
|
{showTrendsPanel && (
|
|
|
|
<BundleContainer fetchComponent={TrendsPanel}>
|
|
|
|
{Component => <Component key='trends-panel' />}
|
|
|
|
</BundleContainer>
|
|
|
|
)}
|
|
|
|
{showWhoToFollowPanel && (
|
|
|
|
<BundleContainer fetchComponent={WhoToFollowPanel}>
|
|
|
|
{Component => <Component limit={5} key='wtf-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>
|
|
|
|
)}
|
|
|
|
<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
|
|
|
}
|