mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Update import order
This commit is contained in:
parent
b4b57f5e55
commit
187cefdcb1
5 changed files with 7 additions and 7 deletions
|
@ -1,18 +1,18 @@
|
||||||
import loadable from '@loadable/component';
|
import loadable from '@loadable/component';
|
||||||
import { ThemeProvider } from '@mui/material/styles';
|
import { ThemeProvider } from '@mui/material/styles';
|
||||||
import { History } from '@remix-run/router';
|
import { History } from '@remix-run/router';
|
||||||
import React from 'react';
|
|
||||||
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
||||||
import { ReactQueryDevtools } from '@tanstack/react-query-devtools';
|
import { ReactQueryDevtools } from '@tanstack/react-query-devtools';
|
||||||
|
import React from 'react';
|
||||||
|
import { useLocation } from 'react-router-dom';
|
||||||
|
|
||||||
|
import { DASHBOARD_APP_PATHS } from 'apps/dashboard/App';
|
||||||
import AppHeader from 'components/AppHeader';
|
import AppHeader from 'components/AppHeader';
|
||||||
import Backdrop from 'components/Backdrop';
|
import Backdrop from 'components/Backdrop';
|
||||||
import { HistoryRouter } from 'components/router/HistoryRouter';
|
import { HistoryRouter } from 'components/router/HistoryRouter';
|
||||||
import { ApiProvider } from 'hooks/useApi';
|
import { ApiProvider } from 'hooks/useApi';
|
||||||
import { WebConfigProvider } from 'hooks/useWebConfig';
|
import { WebConfigProvider } from 'hooks/useWebConfig';
|
||||||
import theme from 'themes/theme';
|
import theme from 'themes/theme';
|
||||||
import { useLocation } from 'react-router-dom';
|
|
||||||
import { DASHBOARD_APP_PATHS } from './apps/dashboard/App';
|
|
||||||
|
|
||||||
const DashboardApp = loadable(() => import('./apps/dashboard/App'));
|
const DashboardApp = loadable(() => import('./apps/dashboard/App'));
|
||||||
const ExperimentalApp = loadable(() => import('./apps/experimental/App'));
|
const ExperimentalApp = loadable(() => import('./apps/experimental/App'));
|
||||||
|
|
|
@ -8,10 +8,10 @@ import { AsyncPageProps, AsyncRoute, toAsyncPageRoute } from 'components/router/
|
||||||
import { toRedirectRoute } from 'components/router/Redirect';
|
import { toRedirectRoute } from 'components/router/Redirect';
|
||||||
import ServerContentPage from 'components/ServerContentPage';
|
import ServerContentPage from 'components/ServerContentPage';
|
||||||
|
|
||||||
|
import AppLayout from './AppLayout';
|
||||||
import { REDIRECTS } from './routes/_redirects';
|
import { REDIRECTS } from './routes/_redirects';
|
||||||
import { ASYNC_ADMIN_ROUTES } from './routes/_asyncRoutes';
|
import { ASYNC_ADMIN_ROUTES } from './routes/_asyncRoutes';
|
||||||
import { LEGACY_ADMIN_ROUTES } from './routes/_legacyRoutes';
|
import { LEGACY_ADMIN_ROUTES } from './routes/_legacyRoutes';
|
||||||
import AppLayout from './AppLayout';
|
|
||||||
|
|
||||||
const DashboardAsyncPage = loadable(
|
const DashboardAsyncPage = loadable(
|
||||||
(props: { page: string }) => import(/* webpackChunkName: "[request]" */ `./routes/${props.page}`),
|
(props: { page: string }) => import(/* webpackChunkName: "[request]" */ `./routes/${props.page}`),
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { Navigate, Route, Routes } from 'react-router-dom';
|
import { Navigate, Route, Routes } from 'react-router-dom';
|
||||||
|
|
||||||
|
import { DASHBOARD_APP_PATHS } from 'apps/dashboard/App';
|
||||||
import { REDIRECTS } from 'apps/stable/routes/_redirects';
|
import { REDIRECTS } from 'apps/stable/routes/_redirects';
|
||||||
import ConnectionRequired from 'components/ConnectionRequired';
|
import ConnectionRequired from 'components/ConnectionRequired';
|
||||||
import { toAsyncPageRoute } from 'components/router/AsyncRoute';
|
import { toAsyncPageRoute } from 'components/router/AsyncRoute';
|
||||||
|
@ -10,7 +11,6 @@ import { toRedirectRoute } from 'components/router/Redirect';
|
||||||
import AppLayout from './AppLayout';
|
import AppLayout from './AppLayout';
|
||||||
import { ASYNC_USER_ROUTES } from './routes/asyncRoutes';
|
import { ASYNC_USER_ROUTES } from './routes/asyncRoutes';
|
||||||
import { LEGACY_PUBLIC_ROUTES, LEGACY_USER_ROUTES } from './routes/legacyRoutes';
|
import { LEGACY_PUBLIC_ROUTES, LEGACY_USER_ROUTES } from './routes/legacyRoutes';
|
||||||
import { DASHBOARD_APP_PATHS } from 'apps/dashboard/App';
|
|
||||||
|
|
||||||
const ExperimentalApp = () => {
|
const ExperimentalApp = () => {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -5,9 +5,9 @@ import ResponsiveDrawer, { ResponsiveDrawerProps } from 'components/ResponsiveDr
|
||||||
|
|
||||||
import { ASYNC_USER_ROUTES } from '../../routes/asyncRoutes';
|
import { ASYNC_USER_ROUTES } from '../../routes/asyncRoutes';
|
||||||
import { LEGACY_USER_ROUTES } from '../../routes/legacyRoutes';
|
import { LEGACY_USER_ROUTES } from '../../routes/legacyRoutes';
|
||||||
|
import { isTabPath } from '../tabs/tabRoutes';
|
||||||
|
|
||||||
import MainDrawerContent from './MainDrawerContent';
|
import MainDrawerContent from './MainDrawerContent';
|
||||||
import { isTabPath } from '../tabs/tabRoutes';
|
|
||||||
|
|
||||||
const DRAWERLESS_ROUTES = [
|
const DRAWERLESS_ROUTES = [
|
||||||
'video' // video player
|
'video' // video player
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { Navigate, Outlet, Route, Routes } from 'react-router-dom';
|
import { Navigate, Outlet, Route, Routes } from 'react-router-dom';
|
||||||
|
|
||||||
|
import { DASHBOARD_APP_PATHS } from 'apps/dashboard/App';
|
||||||
import AppBody from 'components/AppBody';
|
import AppBody from 'components/AppBody';
|
||||||
import ConnectionRequired from 'components/ConnectionRequired';
|
import ConnectionRequired from 'components/ConnectionRequired';
|
||||||
import { toAsyncPageRoute } from 'components/router/AsyncRoute';
|
import { toAsyncPageRoute } from 'components/router/AsyncRoute';
|
||||||
|
@ -10,7 +11,6 @@ import { toRedirectRoute } from 'components/router/Redirect';
|
||||||
import { ASYNC_USER_ROUTES } from './routes/asyncRoutes';
|
import { ASYNC_USER_ROUTES } from './routes/asyncRoutes';
|
||||||
import { LEGACY_PUBLIC_ROUTES, LEGACY_USER_ROUTES } from './routes/legacyRoutes';
|
import { LEGACY_PUBLIC_ROUTES, LEGACY_USER_ROUTES } from './routes/legacyRoutes';
|
||||||
import { REDIRECTS } from './routes/_redirects';
|
import { REDIRECTS } from './routes/_redirects';
|
||||||
import { DASHBOARD_APP_PATHS } from 'apps/dashboard/App';
|
|
||||||
|
|
||||||
const Layout = () => (
|
const Layout = () => (
|
||||||
<AppBody>
|
<AppBody>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue