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

108 lines
3.3 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';
import { getSoapboxConfig } from 'soapbox/actions/soapbox';
2022-03-21 11:09:01 -07:00
import SidebarNavigation from 'soapbox/components/sidebar-navigation';
import LinkFooter from 'soapbox/features/ui/components/link_footer';
2021-09-18 15:48:13 -07:00
import {
WhoToFollowPanel,
TrendsPanel,
SignUpPanel,
CryptoDonatePanel,
2021-09-18 15:48:13 -07:00
} 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';
2022-03-21 11:09:01 -07:00
import { Card, CardBody, Layout } from '../components/ui';
2022-01-10 14:01:24 -08:00
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,
hasCrypto,
cryptoLimit,
features,
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, features, hasCrypto, cryptoLimit } = 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 (
2022-03-21 11:09:01 -07:00
<Layout>
<Layout.Sidebar>
<SidebarNavigation />
</Layout.Sidebar>
2020-03-27 13:59:38 -07:00
2022-03-21 11:09:01 -07:00
<Layout.Main className='divide-y divide-gray-200 divide-solid sm:divide-none'>
{me && <Card variant='rounded' ref={this.composeBlock}>
<CardBody>
<div className='flex items-start space-x-4'>
<Link to={`/@${acct}`}>
<Avatar account={account} size={46} />
</Link>
2020-03-27 13:59:38 -07:00
2022-03-21 11:09:01 -07:00
<ComposeFormContainer
shouldCondense
autoFocus={false}
clickableAreaRef={this.composeBlock}
/>
2020-03-27 13:59:38 -07:00
</div>
2022-03-21 11:09:01 -07:00
</CardBody>
</Card>}
2020-03-27 13:59:38 -07:00
2022-03-21 11:09:01 -07:00
{children}
</Layout.Main>
<Layout.Aside>
{!me && (
<BundleContainer fetchComponent={SignUpPanel}>
{Component => <Component />}
2022-03-21 11:09:01 -07:00
</BundleContainer>
)}
{features.trends && (
2022-03-21 11:09:01 -07:00
<BundleContainer fetchComponent={TrendsPanel}>
{Component => <Component limit={3} />}
2022-03-21 11:09:01 -07:00
</BundleContainer>
)}
{hasCrypto && cryptoLimit > 0 && (
<BundleContainer fetchComponent={CryptoDonatePanel}>
{Component => <Component limit={cryptoLimit} />}
</BundleContainer>
)}
{features.suggestions && (
2022-03-21 11:09:01 -07:00
<BundleContainer fetchComponent={WhoToFollowPanel}>
{Component => <Component limit={5} />}
2022-03-21 11:09:01 -07:00
</BundleContainer>
)}
<LinkFooter key='link-footer' />
</Layout.Aside>
</Layout>
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
}