2023-04-21 14:31:10 -07:00
|
|
|
import clsx from 'clsx';
|
2022-04-28 11:05:00 -07:00
|
|
|
import React, { useRef } from 'react';
|
2023-04-21 14:31:10 -07:00
|
|
|
import { useIntl } from 'react-intl';
|
2022-04-28 11:05:00 -07:00
|
|
|
import { Link } from 'react-router-dom';
|
|
|
|
|
2023-04-21 14:31:10 -07:00
|
|
|
import { uploadCompose } from 'soapbox/actions/compose';
|
2022-06-22 08:20:10 -07:00
|
|
|
import FeedCarousel from 'soapbox/features/feed-filtering/feed-carousel';
|
2022-11-16 05:32:32 -08:00
|
|
|
import LinkFooter from 'soapbox/features/ui/components/link-footer';
|
2022-04-28 11:05:00 -07:00
|
|
|
import {
|
|
|
|
WhoToFollowPanel,
|
|
|
|
TrendsPanel,
|
|
|
|
SignUpPanel,
|
|
|
|
PromoPanel,
|
|
|
|
FundingPanel,
|
|
|
|
CryptoDonatePanel,
|
|
|
|
BirthdayPanel,
|
2022-05-10 03:17:14 -07:00
|
|
|
CtaBanner,
|
2022-07-06 14:25:19 -07:00
|
|
|
AnnouncementsPanel,
|
2022-04-28 11:05:00 -07:00
|
|
|
} from 'soapbox/features/ui/util/async-components';
|
2023-04-21 14:31:10 -07:00
|
|
|
import { useAppSelector, useOwnAccount, useFeatures, useSoapboxConfig, useDraggedFiles, useAppDispatch } from 'soapbox/hooks';
|
2022-04-28 11:05:00 -07:00
|
|
|
|
2022-12-14 09:41:05 -08:00
|
|
|
import { Avatar, Card, CardBody, HStack, Layout } from '../components/ui';
|
2022-09-10 14:52:06 -07:00
|
|
|
import ComposeForm from '../features/compose/components/compose-form';
|
2022-11-16 05:32:32 -08:00
|
|
|
import BundleContainer from '../features/ui/containers/bundle-container';
|
2022-04-28 11:05:00 -07:00
|
|
|
|
2023-01-10 15:03:15 -08:00
|
|
|
interface IHomePage {
|
|
|
|
children: React.ReactNode
|
|
|
|
}
|
|
|
|
|
|
|
|
const HomePage: React.FC<IHomePage> = ({ children }) => {
|
2023-04-21 14:31:10 -07:00
|
|
|
const intl = useIntl();
|
|
|
|
const dispatch = useAppDispatch();
|
|
|
|
|
2022-04-28 11:05:00 -07:00
|
|
|
const me = useAppSelector(state => state.me);
|
2023-06-25 10:35:09 -07:00
|
|
|
const { account } = useOwnAccount();
|
2022-04-28 11:05:00 -07:00
|
|
|
const features = useFeatures();
|
|
|
|
const soapboxConfig = useSoapboxConfig();
|
|
|
|
|
2023-04-21 14:31:10 -07:00
|
|
|
const composeId = 'home';
|
2022-04-28 11:05:00 -07:00
|
|
|
const composeBlock = useRef<HTMLDivElement>(null);
|
|
|
|
|
|
|
|
const hasPatron = soapboxConfig.extensions.getIn(['patron', 'enabled']) === true;
|
|
|
|
const hasCrypto = typeof soapboxConfig.cryptoAddresses.getIn([0, 'ticker']) === 'string';
|
2022-06-26 12:46:39 -07:00
|
|
|
const cryptoLimit = soapboxConfig.cryptoDonatePanel.get('limit', 0);
|
2022-04-28 11:05:00 -07:00
|
|
|
|
2023-04-21 14:31:10 -07:00
|
|
|
const { isDragging, isDraggedOver } = useDraggedFiles(composeBlock, (files) => {
|
|
|
|
dispatch(uploadCompose(composeId, files, intl));
|
|
|
|
});
|
|
|
|
|
2022-04-28 11:05:00 -07:00
|
|
|
const acct = account ? account.acct : '';
|
2022-12-14 09:26:44 -08:00
|
|
|
const avatar = account ? account.avatar : '';
|
2022-04-28 11:05:00 -07:00
|
|
|
|
|
|
|
return (
|
2022-04-28 16:18:55 -07:00
|
|
|
<>
|
2023-02-01 14:13:42 -08:00
|
|
|
<Layout.Main className='space-y-3 pt-3 dark:divide-gray-800 sm:pt-0'>
|
2022-04-28 11:05:00 -07:00
|
|
|
{me && (
|
2023-04-21 14:31:10 -07:00
|
|
|
<Card
|
|
|
|
className={clsx('relative z-[1] transition', {
|
2023-04-21 15:13:40 -07:00
|
|
|
'border-2 border-primary-600 border-dashed z-[99]': isDragging,
|
2023-04-21 14:31:10 -07:00
|
|
|
'ring-2 ring-offset-2 ring-primary-600': isDraggedOver,
|
|
|
|
})}
|
|
|
|
variant='rounded'
|
|
|
|
ref={composeBlock}
|
|
|
|
>
|
2022-04-28 11:05:00 -07:00
|
|
|
<CardBody>
|
2022-11-25 09:04:11 -08:00
|
|
|
<HStack alignItems='start' space={4}>
|
2022-04-28 11:05:00 -07:00
|
|
|
<Link to={`/@${acct}`}>
|
2022-12-14 09:26:44 -08:00
|
|
|
<Avatar src={avatar} size={46} />
|
2022-04-28 11:05:00 -07:00
|
|
|
</Link>
|
|
|
|
|
2023-02-01 14:13:42 -08:00
|
|
|
<div className='w-full translate-y-0.5'>
|
2022-12-14 09:26:44 -08:00
|
|
|
<ComposeForm
|
2023-04-21 14:31:10 -07:00
|
|
|
id={composeId}
|
2022-12-14 09:26:44 -08:00
|
|
|
shouldCondense
|
|
|
|
autoFocus={false}
|
|
|
|
clickableAreaRef={composeBlock}
|
|
|
|
/>
|
|
|
|
</div>
|
2022-11-25 09:04:11 -08:00
|
|
|
</HStack>
|
2022-04-28 11:05:00 -07:00
|
|
|
</CardBody>
|
|
|
|
</Card>
|
|
|
|
)}
|
|
|
|
|
2022-12-14 10:54:42 -08:00
|
|
|
{features.carousel && <FeedCarousel />}
|
2022-06-22 08:20:10 -07:00
|
|
|
|
2022-04-28 11:05:00 -07:00
|
|
|
{children}
|
2022-05-10 03:17:14 -07:00
|
|
|
|
|
|
|
{!me && (
|
|
|
|
<BundleContainer fetchComponent={CtaBanner}>
|
|
|
|
{Component => <Component key='cta-banner' />}
|
|
|
|
</BundleContainer>
|
|
|
|
)}
|
2022-04-28 11:05:00 -07:00
|
|
|
</Layout.Main>
|
|
|
|
|
|
|
|
<Layout.Aside>
|
|
|
|
{!me && (
|
|
|
|
<BundleContainer fetchComponent={SignUpPanel}>
|
|
|
|
{Component => <Component />}
|
|
|
|
</BundleContainer>
|
|
|
|
)}
|
2022-07-06 14:25:19 -07:00
|
|
|
{me && features.announcements && (
|
|
|
|
<BundleContainer fetchComponent={AnnouncementsPanel}>
|
|
|
|
{Component => <Component key='announcements-panel' />}
|
|
|
|
</BundleContainer>
|
|
|
|
)}
|
2022-04-28 11:05:00 -07:00
|
|
|
{features.trends && (
|
|
|
|
<BundleContainer fetchComponent={TrendsPanel}>
|
2022-10-13 09:00:44 -07:00
|
|
|
{Component => <Component limit={5} />}
|
2022-04-28 11:05:00 -07:00
|
|
|
</BundleContainer>
|
|
|
|
)}
|
|
|
|
{hasPatron && (
|
|
|
|
<BundleContainer fetchComponent={FundingPanel}>
|
|
|
|
{Component => <Component />}
|
|
|
|
</BundleContainer>
|
|
|
|
)}
|
2022-06-26 12:46:39 -07:00
|
|
|
{hasCrypto && cryptoLimit > 0 && (
|
2022-04-28 11:05:00 -07:00
|
|
|
<BundleContainer fetchComponent={CryptoDonatePanel}>
|
|
|
|
{Component => <Component limit={cryptoLimit} />}
|
|
|
|
</BundleContainer>
|
|
|
|
)}
|
|
|
|
<BundleContainer fetchComponent={PromoPanel}>
|
|
|
|
{Component => <Component />}
|
|
|
|
</BundleContainer>
|
|
|
|
{features.birthdays && (
|
|
|
|
<BundleContainer fetchComponent={BirthdayPanel}>
|
|
|
|
{Component => <Component limit={10} />}
|
|
|
|
</BundleContainer>
|
|
|
|
)}
|
2022-10-09 15:32:09 -07:00
|
|
|
{me && features.suggestions && (
|
2022-04-28 11:05:00 -07:00
|
|
|
<BundleContainer fetchComponent={WhoToFollowPanel}>
|
2022-09-26 12:22:00 -07:00
|
|
|
{Component => <Component limit={3} />}
|
2022-04-28 11:05:00 -07:00
|
|
|
</BundleContainer>
|
|
|
|
)}
|
|
|
|
<LinkFooter key='link-footer' />
|
|
|
|
</Layout.Aside>
|
2022-04-28 16:18:55 -07:00
|
|
|
</>
|
2022-04-28 11:05:00 -07:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default HomePage;
|