🐛(frontend) have a suspense fallback

the app crashed on screen changes, I don't quite get why right now… but
at least this goes around the issue…
This commit is contained in:
Emmanuel Pelletier
2024-07-21 17:37:49 +02:00
parent efb5ac5834
commit e04b8d081f
2 changed files with 12 additions and 8 deletions

View File

@@ -1,13 +1,15 @@
import '@livekit/components-styles'
import '@/styles/index.css'
import { Suspense } from 'react'
import { ReactQueryDevtools } from '@tanstack/react-query-devtools'
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
import { useTranslation } from 'react-i18next'
import { useLang } from 'hoofd'
import { Route, Switch } from 'wouter'
import { Screen } from './layout/Screen'
import { HomeRoute } from '@/features/home'
import { NotFound } from './routes/NotFound'
import { RoomRoute, roomIdRegex } from '@/features/rooms'
import { NotFound } from './routes/NotFound'
import './i18n/init'
const queryClient = new QueryClient()
@@ -17,12 +19,14 @@ function App() {
useLang(i18n.language)
return (
<QueryClientProvider client={queryClient}>
<Switch>
<Route path="/" component={HomeRoute} />
<Route path={roomIdRegex} component={RoomRoute} />
<Route component={NotFound} />
</Switch>
<ReactQueryDevtools initialIsOpen={false} />
<Suspense fallback={<Screen />}>
<Switch>
<Route path="/" component={HomeRoute} />
<Route path={roomIdRegex} component={RoomRoute} />
<Route component={NotFound} />
</Switch>
<ReactQueryDevtools initialIsOpen={false} />
</Suspense>
</QueryClientProvider>
)
}

View File

@@ -2,7 +2,7 @@ import type { ReactNode } from 'react'
import { css } from '@/styled-system/css'
import { Header } from './Header'
export const Screen = ({ children }: { children: ReactNode }) => {
export const Screen = ({ children }: { children?: ReactNode }) => {
return (
<div
className={css({