mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00

* refactor: move/rename BanUserButton file * refactor: move/rename Chart file * refactor: update generic component filenames to PascalCase * refactor: update config component filenames to PascalCase * refactor: update AdminLayout component filename to PascalCase * refactor: update/move VideoJS component * chore(eslint): disable bad react/require-default-props rule * refactor: normalize ActionButton component * refactor: normalize ActionButtonRow component * refactor: normalize FollowButton component * refactor: normalize NotifyButton component * refactor: normalize ChatActionMessage component * refactor: normalize ChatContainer component * refactor: normalize ChatJoinMessage component * refactor: normalize ChatModerationActionMenu component * refactor: normalize ChatModerationDetailsModal component * refactor: normalize ChatModeratorNotification component * refactor: normalize ChatSocialMessage component * refactor: normalize ChatSystemMessage component * refactor: normalize ChatTextField component * refactor: normalize ChatUserBadge component * refactor: normalize ChatUserMessage component * refactor: normalize ContentHeader component * refactor: normalize OwncastLogo component * refactor: normalize UserDropdown component * chore(eslint): modify react/function-component-definition rule * refactor: normalize CodecSelector component * refactor: update a bunch of functional components using eslint * refactor: update a bunch of functional components using eslint, pt2 * refactor: update a bunch of functional components using eslint, pt3 * refactor: replace all component->component default imports with named imports * refactor: replace all component-stories->component default imports with named imports * refactor: remove default exports from most components * chore(eslint): add eslint config files for the components and pages dirs * fix: use-before-define error in ChatContainer * Fix ChatContainer import * Only process .tsx files in Next builds Co-authored-by: Gabe Kangas <gabek@real-ity.com>
102 lines
4.6 KiB
TypeScript
102 lines
4.6 KiB
TypeScript
import { Layout } from 'antd';
|
|
import { useRecoilValue } from 'recoil';
|
|
import Head from 'next/head';
|
|
import { FC, useEffect, useRef } from 'react';
|
|
import {
|
|
ClientConfigStore,
|
|
isChatAvailableSelector,
|
|
clientConfigStateAtom,
|
|
fatalErrorStateAtom,
|
|
} from '../stores/ClientConfigStore';
|
|
import { Content } from '../ui/Content/Content';
|
|
import { Header } from '../ui/Header/Header';
|
|
import { ClientConfig } from '../../interfaces/client-config.model';
|
|
import { DisplayableError } from '../../types/displayable-error';
|
|
import { FatalErrorStateModal } from '../modals/FatalErrorStateModal/FatalErrorStateModal';
|
|
import setupNoLinkReferrer from '../../utils/no-link-referrer';
|
|
|
|
export const Main: FC = () => {
|
|
const clientConfig = useRecoilValue<ClientConfig>(clientConfigStateAtom);
|
|
const { name, title, customStyles } = clientConfig;
|
|
const isChatAvailable = useRecoilValue<boolean>(isChatAvailableSelector);
|
|
const fatalError = useRecoilValue<DisplayableError>(fatalErrorStateAtom);
|
|
|
|
const layoutRef = useRef<HTMLDivElement>(null);
|
|
|
|
useEffect(() => {
|
|
setupNoLinkReferrer(layoutRef.current);
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<meta name="description" content="{{.Summary}}" />
|
|
|
|
<meta property="og:title" content="{{.Name}}" />
|
|
<meta property="og:site_name" content="{{.Name}}" />
|
|
<meta property="og:url" content="{{.RequestedURL}}" />
|
|
<meta property="og:description" content="{{.Summary}}" />
|
|
<meta property="og:type" content="video.other" />
|
|
<meta property="video:tag" content="{{.TagsString}}" />
|
|
|
|
<meta property="og:image" content="{{.Thumbnail}}" />
|
|
<meta property="og:image:url" content="{{.Thumbnail}}" />
|
|
<meta property="og:image:alt" content="{{.Image}}" />
|
|
|
|
<meta property="og:video" content="{{.RequestedURL}}embed/video" />
|
|
<meta property="og:video:secure_url" content="{{.RequestedURL}}embed/video" />
|
|
<meta property="og:video:height" content="315" />
|
|
<meta property="og:video:width" content="560" />
|
|
<meta property="og:video:type" content="text/html" />
|
|
<meta property="og:video:actor" content="{{.Name}}" />
|
|
|
|
<meta property="twitter:title" content="{{.Name}}" />
|
|
<meta property="twitter:url" content="{{.RequestedURL}}" />
|
|
<meta property="twitter:description" content="{{.Summary}}" />
|
|
<meta property="twitter:image" content="{{.Image}}" />
|
|
<meta property="twitter:card" content="player" />
|
|
<meta property="twitter:player" content="{{.RequestedURL}}embed/video" />
|
|
<meta property="twitter:player:width" content="560" />
|
|
<meta property="twitter:player:height" content="315" />
|
|
|
|
<link rel="apple-touch-icon" sizes="57x57" href="/img/favicon/apple-icon-57x57.png" />
|
|
<link rel="apple-touch-icon" sizes="60x60" href="/img/favicon/apple-icon-60x60.png" />
|
|
<link rel="apple-touch-icon" sizes="72x72" href="/img/favicon/apple-icon-72x72.png" />
|
|
<link rel="apple-touch-icon" sizes="76x76" href="/img/favicon/apple-icon-76x76.png" />
|
|
<link rel="apple-touch-icon" sizes="114x114" href="/img/favicon/apple-icon-114x114.png" />
|
|
<link rel="apple-touch-icon" sizes="120x120" href="/img/favicon/apple-icon-120x120.png" />
|
|
<link rel="apple-touch-icon" sizes="144x144" href="/img/favicon/apple-icon-144x144.png" />
|
|
<link rel="apple-touch-icon" sizes="152x152" href="/img/favicon/apple-icon-152x152.png" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-icon-180x180.png" />
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="192x192"
|
|
href="/img/favicon/android-icon-192x192.png"
|
|
/>
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="96x96" href="/img/favicon/favicon-96x96.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon/favicon-16x16.png" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
|
|
<link href="/api/auth/provider/indieauth" />
|
|
|
|
<meta name="msapplication-TileColor" content="#ffffff" />
|
|
<meta name="msapplication-TileImage" content="/img/favicon/ms-icon-144x144.png" />
|
|
<meta name="theme-color" content="#ffffff" />
|
|
|
|
<style>{customStyles}</style>
|
|
</Head>
|
|
|
|
<ClientConfigStore />
|
|
<Layout ref={layoutRef}>
|
|
<Header name={title || name} chatAvailable={isChatAvailable} />
|
|
<Content />
|
|
{fatalError && (
|
|
<FatalErrorStateModal title={fatalError.title} message={fatalError.message} />
|
|
)}
|
|
</Layout>
|
|
</>
|
|
);
|
|
};
|