2022-05-26 22:23:43 -07:00
|
|
|
// All these imports are almost exclusively for the Admin.
|
|
|
|
// We should not be loading them for the main frontend UI.
|
|
|
|
|
2021-02-04 09:17:20 -08:00
|
|
|
// order matters!
|
2022-05-06 23:32:33 -07:00
|
|
|
import '../styles/variables.css';
|
2022-04-19 14:33:43 -07:00
|
|
|
import '../styles/global.less';
|
|
|
|
import '../styles/globals.scss';
|
2022-07-01 22:49:42 +02:00
|
|
|
import '../styles/ant-overrides.scss';
|
2020-10-22 01:03:15 -07:00
|
|
|
|
2022-09-07 09:00:28 +02:00
|
|
|
import '../components/video/VideoJS/VideoJS.scss';
|
2022-05-26 21:44:54 -07:00
|
|
|
|
2020-10-22 16:18:18 -07:00
|
|
|
import { AppProps } from 'next/app';
|
2022-05-11 23:31:31 -07:00
|
|
|
import { Router, useRouter } from 'next/router';
|
2021-02-03 23:24:12 -08:00
|
|
|
|
2022-05-25 20:38:40 -07:00
|
|
|
import { RecoilRoot } from 'recoil';
|
2022-05-29 21:51:00 -07:00
|
|
|
import { useEffect } from 'react';
|
2022-09-07 09:00:28 +02:00
|
|
|
import { AdminLayout } from '../components/layouts/AdminLayout';
|
|
|
|
import { SimpleLayout } from '../components/layouts/SimpleLayout';
|
2020-10-22 16:18:18 -07:00
|
|
|
|
2022-09-07 09:00:28 +02:00
|
|
|
const App = ({ Component, pageProps }: AppProps) => {
|
2022-05-29 21:51:00 -07:00
|
|
|
useEffect(() => {
|
|
|
|
if ('serviceWorker' in navigator) {
|
|
|
|
window.addEventListener('load', () => {
|
|
|
|
navigator.serviceWorker.register('/serviceWorker.js').then(
|
|
|
|
registration => {
|
|
|
|
console.debug(
|
|
|
|
'Service Worker registration successful with scope: ',
|
|
|
|
registration.scope,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
err => {
|
|
|
|
console.error('Service Worker registration failed: ', err);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, []);
|
|
|
|
|
2022-05-11 23:31:31 -07:00
|
|
|
const router = useRouter() as Router;
|
2022-04-19 19:57:27 -07:00
|
|
|
if (router.pathname.startsWith('/admin')) {
|
|
|
|
return <AdminLayout pageProps={pageProps} Component={Component} router={router} />;
|
|
|
|
}
|
2022-05-25 20:38:40 -07:00
|
|
|
return (
|
|
|
|
<RecoilRoot>
|
|
|
|
<SimpleLayout pageProps={pageProps} Component={Component} router={router} />
|
|
|
|
</RecoilRoot>
|
|
|
|
);
|
2022-09-07 09:00:28 +02:00
|
|
|
};
|
2020-09-30 15:12:10 -07:00
|
|
|
|
2021-01-31 01:38:20 -08:00
|
|
|
export default App;
|