kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
LandingPage: remove donation widgets from sidebar when logged out
rodzic
def95d2b5c
commit
a131f274b4
|
@ -1,25 +1,14 @@
|
||||||
import clsx from 'clsx';
|
import React from 'react';
|
||||||
import React, { useRef } from 'react';
|
|
||||||
import { useIntl } from 'react-intl';
|
|
||||||
import { Link } from 'react-router-dom';
|
|
||||||
|
|
||||||
import { uploadCompose } from 'soapbox/actions/compose';
|
|
||||||
import LinkFooter from 'soapbox/features/ui/components/link-footer';
|
import LinkFooter from 'soapbox/features/ui/components/link-footer';
|
||||||
import {
|
import {
|
||||||
WhoToFollowPanel,
|
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
SignUpPanel,
|
SignUpPanel,
|
||||||
PromoPanel,
|
|
||||||
FundingPanel,
|
|
||||||
CryptoDonatePanel,
|
|
||||||
BirthdayPanel,
|
|
||||||
CtaBanner,
|
CtaBanner,
|
||||||
AnnouncementsPanel,
|
|
||||||
} from 'soapbox/features/ui/util/async-components';
|
} from 'soapbox/features/ui/util/async-components';
|
||||||
import { useAppSelector, useOwnAccount, useFeatures, useSoapboxConfig, useDraggedFiles, useAppDispatch } from 'soapbox/hooks';
|
import { useAppSelector, useFeatures } from 'soapbox/hooks';
|
||||||
|
|
||||||
import { Avatar, Card, CardBody, HStack, Layout } from '../components/ui';
|
import { Layout } from '../components/ui';
|
||||||
import ComposeForm from '../features/compose/components/compose-form';
|
|
||||||
import BundleContainer from '../features/ui/containers/bundle-container';
|
import BundleContainer from '../features/ui/containers/bundle-container';
|
||||||
|
|
||||||
interface ILandingPage {
|
interface ILandingPage {
|
||||||
|
@ -27,64 +16,17 @@ interface ILandingPage {
|
||||||
}
|
}
|
||||||
|
|
||||||
const LandingPage: React.FC<ILandingPage> = ({ children }) => {
|
const LandingPage: React.FC<ILandingPage> = ({ children }) => {
|
||||||
const intl = useIntl();
|
|
||||||
const dispatch = useAppDispatch();
|
|
||||||
|
|
||||||
const me = useAppSelector(state => state.me);
|
const me = useAppSelector(state => state.me);
|
||||||
const { account } = useOwnAccount();
|
|
||||||
const features = useFeatures();
|
const features = useFeatures();
|
||||||
const soapboxConfig = useSoapboxConfig();
|
|
||||||
|
|
||||||
const composeId = 'home';
|
|
||||||
const composeBlock = useRef<HTMLDivElement>(null);
|
|
||||||
|
|
||||||
const hasPatron = soapboxConfig.extensions.getIn(['patron', 'enabled']) === true;
|
|
||||||
const hasCrypto = typeof soapboxConfig.cryptoAddresses.getIn([0, 'ticker']) === 'string';
|
|
||||||
const cryptoLimit = soapboxConfig.cryptoDonatePanel.get('limit', 0);
|
|
||||||
|
|
||||||
const { isDragging, isDraggedOver } = useDraggedFiles(composeBlock, (files) => {
|
|
||||||
dispatch(uploadCompose(composeId, files, intl));
|
|
||||||
});
|
|
||||||
|
|
||||||
const acct = account ? account.acct : '';
|
|
||||||
const avatar = account ? account.avatar : '';
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Layout.Main className='space-y-3 pt-3 dark:divide-gray-800 sm:pt-0'>
|
<Layout.Main className='space-y-3 pt-3 dark:divide-gray-800 sm:pt-0'>
|
||||||
{me && (
|
|
||||||
<Card
|
|
||||||
className={clsx('relative z-[1] transition', {
|
|
||||||
'border-2 border-primary-600 border-dashed z-[99]': isDragging,
|
|
||||||
'ring-2 ring-offset-2 ring-primary-600': isDraggedOver,
|
|
||||||
})}
|
|
||||||
variant='rounded'
|
|
||||||
ref={composeBlock}
|
|
||||||
>
|
|
||||||
<CardBody>
|
|
||||||
<HStack alignItems='start' space={4}>
|
|
||||||
<Link to={`/@${acct}`}>
|
|
||||||
<Avatar src={avatar} size={46} />
|
|
||||||
</Link>
|
|
||||||
|
|
||||||
<div className='w-full translate-y-0.5'>
|
|
||||||
<ComposeForm
|
|
||||||
id={composeId}
|
|
||||||
shouldCondense
|
|
||||||
autoFocus={false}
|
|
||||||
clickableAreaRef={composeBlock}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</HStack>
|
|
||||||
</CardBody>
|
|
||||||
</Card>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
{!me && (
|
{!me && (
|
||||||
<BundleContainer fetchComponent={CtaBanner}>
|
<BundleContainer fetchComponent={CtaBanner}>
|
||||||
{Component => <Component key='cta-banner' />}
|
{Component => <Component />}
|
||||||
</BundleContainer>
|
</BundleContainer>
|
||||||
)}
|
)}
|
||||||
</Layout.Main>
|
</Layout.Main>
|
||||||
|
@ -95,40 +37,12 @@ const LandingPage: React.FC<ILandingPage> = ({ children }) => {
|
||||||
{Component => <Component />}
|
{Component => <Component />}
|
||||||
</BundleContainer>
|
</BundleContainer>
|
||||||
)}
|
)}
|
||||||
{me && features.announcements && (
|
|
||||||
<BundleContainer fetchComponent={AnnouncementsPanel}>
|
|
||||||
{Component => <Component key='announcements-panel' />}
|
|
||||||
</BundleContainer>
|
|
||||||
)}
|
|
||||||
{features.trends && (
|
{features.trends && (
|
||||||
<BundleContainer fetchComponent={TrendsPanel}>
|
<BundleContainer fetchComponent={TrendsPanel}>
|
||||||
{Component => <Component limit={5} />}
|
{Component => <Component limit={5} />}
|
||||||
</BundleContainer>
|
</BundleContainer>
|
||||||
)}
|
)}
|
||||||
{hasPatron && (
|
<LinkFooter />
|
||||||
<BundleContainer fetchComponent={FundingPanel}>
|
|
||||||
{Component => <Component />}
|
|
||||||
</BundleContainer>
|
|
||||||
)}
|
|
||||||
{hasCrypto && cryptoLimit > 0 && (
|
|
||||||
<BundleContainer fetchComponent={CryptoDonatePanel}>
|
|
||||||
{Component => <Component limit={cryptoLimit} />}
|
|
||||||
</BundleContainer>
|
|
||||||
)}
|
|
||||||
<BundleContainer fetchComponent={PromoPanel}>
|
|
||||||
{Component => <Component />}
|
|
||||||
</BundleContainer>
|
|
||||||
{features.birthdays && (
|
|
||||||
<BundleContainer fetchComponent={BirthdayPanel}>
|
|
||||||
{Component => <Component limit={10} />}
|
|
||||||
</BundleContainer>
|
|
||||||
)}
|
|
||||||
{me && features.suggestions && (
|
|
||||||
<BundleContainer fetchComponent={WhoToFollowPanel}>
|
|
||||||
{Component => <Component limit={3} />}
|
|
||||||
</BundleContainer>
|
|
||||||
)}
|
|
||||||
<LinkFooter key='link-footer' />
|
|
||||||
</Layout.Aside>
|
</Layout.Aside>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
Ładowanie…
Reference in New Issue