mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 23:24:29 +03:00
32c3f6a9b6
* fix: #2668 Page Vertical Spacing Issues * Update test to reflect mobile work * chore: refactor action buttons --------- Co-authored-by: thisProjects <wibbet@wobbet.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com>
143 lines
3.9 KiB
TypeScript
143 lines
3.9 KiB
TypeScript
import React, { ComponentType, FC } from 'react';
|
|
import dynamic from 'next/dynamic';
|
|
import { Skeleton, TabsProps } from 'antd';
|
|
import { ErrorBoundary } from 'react-error-boundary';
|
|
import { SocialLink } from '../../../interfaces/social-link.model';
|
|
import styles from './Content.module.scss';
|
|
import { CustomPageContent } from '../CustomPageContent/CustomPageContent';
|
|
import { ContentHeader } from '../../common/ContentHeader/ContentHeader';
|
|
import { ChatMessage } from '../../../interfaces/chat-message.model';
|
|
import { CurrentUser } from '../../../interfaces/current-user';
|
|
import { ComponentError } from '../ComponentError/ComponentError';
|
|
|
|
export type MobileContentProps = {
|
|
name: string;
|
|
summary: string;
|
|
tags: string[];
|
|
socialHandles: SocialLink[];
|
|
extraPageContent: string;
|
|
setShowFollowModal: (show: boolean) => void;
|
|
supportFediverseFeatures: boolean;
|
|
messages: ChatMessage[];
|
|
currentUser: CurrentUser;
|
|
showChat: boolean;
|
|
chatEnabled: boolean;
|
|
};
|
|
|
|
// lazy loaded components
|
|
|
|
const Tabs: ComponentType<TabsProps> = dynamic(() => import('antd').then(mod => mod.Tabs), {
|
|
ssr: false,
|
|
});
|
|
|
|
const FollowerCollection = dynamic(
|
|
() =>
|
|
import('../followers/FollowerCollection/FollowerCollection').then(
|
|
mod => mod.FollowerCollection,
|
|
),
|
|
{
|
|
ssr: false,
|
|
},
|
|
);
|
|
|
|
const ChatContainer = dynamic(
|
|
() => import('../../chat/ChatContainer/ChatContainer').then(mod => mod.ChatContainer),
|
|
{
|
|
ssr: false,
|
|
},
|
|
);
|
|
|
|
type ChatContentProps = {
|
|
showChat: boolean;
|
|
chatEnabled: boolean;
|
|
messages: ChatMessage[];
|
|
currentUser: CurrentUser;
|
|
};
|
|
|
|
const ComponentErrorFallback = ({ error, resetErrorBoundary }) => (
|
|
<ComponentError
|
|
message={error}
|
|
componentName="MobileContent"
|
|
retryFunction={resetErrorBoundary}
|
|
/>
|
|
);
|
|
|
|
const ChatContent: FC<ChatContentProps> = ({ showChat, chatEnabled, messages, currentUser }) => {
|
|
const { id, displayName } = currentUser;
|
|
|
|
return showChat && !!currentUser ? (
|
|
<ChatContainer
|
|
messages={messages}
|
|
usernameToHighlight={displayName}
|
|
chatUserId={id}
|
|
isModerator={false}
|
|
chatAvailable={chatEnabled}
|
|
/>
|
|
) : (
|
|
<Skeleton loading active paragraph={{ rows: 7 }} />
|
|
);
|
|
};
|
|
|
|
export const MobileContent: FC<MobileContentProps> = ({
|
|
name,
|
|
summary,
|
|
tags,
|
|
socialHandles,
|
|
extraPageContent,
|
|
messages,
|
|
currentUser,
|
|
showChat,
|
|
chatEnabled,
|
|
setShowFollowModal,
|
|
supportFediverseFeatures,
|
|
}) => {
|
|
const aboutTabContent = (
|
|
<>
|
|
<ContentHeader name={name} summary={summary} tags={tags} links={socialHandles} logo="/logo" />
|
|
{!!extraPageContent && (
|
|
<div className={styles.bottomPageContentContainer}>
|
|
<CustomPageContent content={extraPageContent} />
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
const followersTabContent = (
|
|
<div className={styles.bottomPageContentContainer}>
|
|
<FollowerCollection name={name} onFollowButtonClick={() => setShowFollowModal(true)} />
|
|
</div>
|
|
);
|
|
|
|
const items = [];
|
|
if (showChat && currentUser) {
|
|
items.push({
|
|
label: 'Chat',
|
|
key: '0',
|
|
children: (
|
|
<ChatContent
|
|
showChat={showChat}
|
|
chatEnabled={chatEnabled}
|
|
messages={messages}
|
|
currentUser={currentUser}
|
|
/>
|
|
),
|
|
});
|
|
}
|
|
items.push({ label: 'About', key: '2', children: aboutTabContent });
|
|
if (supportFediverseFeatures) {
|
|
items.push({ label: 'Followers', key: '3', children: followersTabContent });
|
|
}
|
|
|
|
return (
|
|
<ErrorBoundary
|
|
// eslint-disable-next-line react/no-unstable-nested-components
|
|
fallbackRender={({ error, resetErrorBoundary }) => (
|
|
<ComponentErrorFallback error={error} resetErrorBoundary={resetErrorBoundary} />
|
|
)}
|
|
>
|
|
<div className={styles.lowerSectionMobile}>
|
|
{items.length > 1 && <Tabs defaultActiveKey="0" items={items} />}
|
|
</div>
|
|
<div className={styles.mobileNoTabs}>{items.length <= 1 && aboutTabContent}</div>
|
|
</ErrorBoundary>
|
|
);
|
|
};
|