2022-02-27 20:07:15 +01:00
|
|
|
import { Redirect, Route, Switch } from "react-router-dom";
|
2022-12-13 23:50:13 +01:00
|
|
|
import { BookmarkContextProvider } from "@/state/bookmark";
|
|
|
|
import { WatchedContextProvider } from "@/state/watched";
|
2023-01-07 21:36:18 +01:00
|
|
|
|
2022-12-13 23:50:13 +01:00
|
|
|
import { NotFoundPage } from "@/views/notfound/NotFoundView";
|
2023-01-14 01:37:47 +01:00
|
|
|
import { MediaView } from "@/views/media/MediaView";
|
2023-01-07 21:36:18 +01:00
|
|
|
import { SearchView } from "@/views/search/SearchView";
|
2023-01-12 22:04:28 +01:00
|
|
|
import { MWMediaType } from "@/backend/metadata/types";
|
2023-02-18 22:41:50 +01:00
|
|
|
import { V2MigrationView } from "@/views/other/v2Migration";
|
2022-02-06 20:56:48 +01:00
|
|
|
|
2022-05-03 20:58:34 +02:00
|
|
|
function App() {
|
2022-02-06 20:56:48 +01:00
|
|
|
return (
|
2022-02-18 21:11:23 +01:00
|
|
|
<WatchedContextProvider>
|
2022-02-28 00:08:20 +01:00
|
|
|
<BookmarkContextProvider>
|
|
|
|
<Switch>
|
2023-02-18 22:41:50 +01:00
|
|
|
<Route exact path="/v2-migration" component={V2MigrationView} />
|
2022-12-27 15:12:27 +01:00
|
|
|
<Route exact path="/">
|
2022-02-28 00:28:57 +01:00
|
|
|
<Redirect to={`/search/${MWMediaType.MOVIE}`} />
|
2022-02-28 00:08:20 +01:00
|
|
|
</Route>
|
2023-01-14 00:12:56 +01:00
|
|
|
<Route exact path="/media/:media" component={MediaView} />
|
2023-01-22 19:26:08 +01:00
|
|
|
<Route
|
|
|
|
exact
|
|
|
|
path="/media/:media/:season/:episode"
|
|
|
|
component={MediaView}
|
|
|
|
/>
|
2022-02-28 00:28:57 +01:00
|
|
|
<Route exact path="/search/:type/:query?" component={SearchView} />
|
|
|
|
<Route path="*" component={NotFoundPage} />
|
2022-02-28 00:08:20 +01:00
|
|
|
</Switch>
|
|
|
|
</BookmarkContextProvider>
|
2022-02-18 21:11:23 +01:00
|
|
|
</WatchedContextProvider>
|
2022-02-06 20:56:48 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|