1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #6223 from thornbill/strict-mode-strikes-again

This commit is contained in:
Bill Thornton 2024-10-19 07:35:25 -04:00 committed by GitHub
commit a8715d0181
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 77 additions and 81 deletions

View file

@ -4,7 +4,7 @@ import { type Theme } from '@mui/material/styles';
import useMediaQuery from '@mui/material/useMediaQuery'; import useMediaQuery from '@mui/material/useMediaQuery';
import { LocalizationProvider } from '@mui/x-date-pickers'; import { LocalizationProvider } from '@mui/x-date-pickers';
import { AdapterDateFns } from '@mui/x-date-pickers/AdapterDateFns'; import { AdapterDateFns } from '@mui/x-date-pickers/AdapterDateFns';
import React, { FC, useCallback, useEffect, useState } from 'react'; import React, { FC, StrictMode, useCallback, useEffect, useState } from 'react';
import { Outlet, useLocation } from 'react-router-dom'; import { Outlet, useLocation } from 'react-router-dom';
import AppBody from 'components/AppBody'; import AppBody from 'components/AppBody';
@ -49,6 +49,7 @@ export const Component: FC = () => {
return ( return (
<LocalizationProvider dateAdapter={AdapterDateFns} adapterLocale={dateFnsLocale}> <LocalizationProvider dateAdapter={AdapterDateFns} adapterLocale={dateFnsLocale}>
<Box sx={{ display: 'flex' }}> <Box sx={{ display: 'flex' }}>
<StrictMode>
<ElevationScroll elevate={false}> <ElevationScroll elevate={false}>
<AppBar <AppBar
position='fixed' position='fixed'
@ -82,6 +83,7 @@ export const Component: FC = () => {
/> />
) )
} }
</StrictMode>
<Box <Box
component='main' component='main'

View file

@ -1,4 +1,4 @@
import React, { useCallback, useState } from 'react'; import React, { StrictMode, useCallback, useState } from 'react';
import AppBar from '@mui/material/AppBar'; import AppBar from '@mui/material/AppBar';
import Box from '@mui/material/Box'; import Box from '@mui/material/Box';
import { type Theme } from '@mui/material/styles'; import { type Theme } from '@mui/material/styles';
@ -30,6 +30,7 @@ export const Component = () => {
return ( return (
<Box sx={{ position: 'relative', display: 'flex', height: '100%' }}> <Box sx={{ position: 'relative', display: 'flex', height: '100%' }}>
<StrictMode>
<ElevationScroll elevate={false}> <ElevationScroll elevate={false}>
<AppBar <AppBar
position='fixed' position='fixed'
@ -61,6 +62,7 @@ export const Component = () => {
/> />
) )
} }
</StrictMode>
<Box <Box
component='main' component='main'

View file

@ -1,3 +1,4 @@
import React, { StrictMode } from 'react';
import type { RouteObject } from 'react-router-dom'; import type { RouteObject } from 'react-router-dom';
export enum AsyncRouteType { export enum AsyncRouteType {
@ -39,7 +40,11 @@ export const toAsyncPageRoute = ({
lazy: async () => { lazy: async () => {
const { default: Page } = await importPage(page ?? path, type); const { default: Page } = await importPage(page ?? path, type);
return { return {
Component: Page element: (
<StrictMode>
<Page />
</StrictMode>
)
}; };
} }
}; };

View file

@ -1,5 +1,5 @@
import { Action } from 'history'; import { Action } from 'history';
import { FunctionComponent, useEffect, useRef } from 'react'; import { FunctionComponent, useEffect } from 'react';
import { useLocation, useNavigationType } from 'react-router-dom'; import { useLocation, useNavigationType } from 'react-router-dom';
import globalize from 'lib/globalize'; import globalize from 'lib/globalize';
@ -58,13 +58,6 @@ const ViewManagerPage: FunctionComponent<ViewManagerPageProps> = ({
isThemeMediaSupported = false, isThemeMediaSupported = false,
transition transition
}) => { }) => {
/**
* HACK: This is a hack to workaround intentional behavior in React strict mode when running in development.
* Legacy views will break if loaded twice so we need to avoid that. This will likely stop working in React 19.
* refs: https://stackoverflow.com/a/72238236
*/
const isLoaded = useRef(false);
const location = useLocation(); const location = useLocation();
const navigationType = useNavigationType(); const navigationType = useNavigationType();
@ -98,11 +91,7 @@ const ViewManagerPage: FunctionComponent<ViewManagerPageProps> = ({
}); });
}; };
if (!isLoaded.current) loadPage(); loadPage();
return () => {
isLoaded.current = true;
};
}, },
// location.state and navigationType are NOT included as dependencies here since dialogs will update state while the current view stays the same // location.state and navigationType are NOT included as dependencies here since dialogs will update state while the current view stays the same
// eslint-disable-next-line react-hooks/exhaustive-deps // eslint-disable-next-line react-hooks/exhaustive-deps

View file

@ -1,7 +1,7 @@
// Import legacy browser polyfills // Import legacy browser polyfills
import 'lib/legacy'; import 'lib/legacy';
import React, { StrictMode } from 'react'; import React from 'react';
import { createRoot } from 'react-dom/client'; import { createRoot } from 'react-dom/client';
// NOTE: We need to import this first to initialize the connection // NOTE: We need to import this first to initialize the connection
@ -268,9 +268,7 @@ async function renderApp() {
const root = createRoot(container); const root = createRoot(container);
root.render( root.render(
<StrictMode>
<RootApp history={history} /> <RootApp history={history} />
</StrictMode>
); );
} }