diff --git a/package-lock.json b/package-lock.json index 765cfd27c..50dd570d6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10760,6 +10760,23 @@ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "dev": true }, + "react-router": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.3.0.tgz", + "integrity": "sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==", + "requires": { + "history": "^5.2.0" + } + }, + "react-router-dom": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.3.0.tgz", + "integrity": "sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==", + "requires": { + "history": "^5.2.0", + "react-router": "6.3.0" + } + }, "read-file-stdin": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/read-file-stdin/-/read-file-stdin-0.2.1.tgz", diff --git a/package.json b/package.json index 8c14b329f..022483d23 100644 --- a/package.json +++ b/package.json @@ -96,6 +96,7 @@ "pdfjs-dist": "2.12.313", "react": "17.0.2", "react-dom": "17.0.2", + "react-router-dom": "6.3.0", "resize-observer-polyfill": "1.5.1", "screenfull": "6.0.0", "sortablejs": "1.14.0", diff --git a/src/components/HistoryRouter.tsx b/src/components/HistoryRouter.tsx new file mode 100644 index 000000000..d789944e0 --- /dev/null +++ b/src/components/HistoryRouter.tsx @@ -0,0 +1,22 @@ +import React, { useLayoutEffect } from 'react'; +import { HistoryRouterProps, Router } from 'react-router-dom'; + +export function HistoryRouter({ basename, children, history }: HistoryRouterProps) { + const [state, setState] = React.useState({ + action: history.action, + location: history.location + }); + + useLayoutEffect(() => history.listen(setState), [history]); + + return ( + + ); +} diff --git a/src/components/Page.tsx b/src/components/Page.tsx new file mode 100644 index 000000000..7772e495c --- /dev/null +++ b/src/components/Page.tsx @@ -0,0 +1,50 @@ +import React, { FunctionComponent, useEffect, useRef } from 'react'; + +import viewManager from './viewManager/viewManager'; + +type PageProps = { + title?: string +}; + +/** + * Page component that handles hiding active non-react views, triggering the required events for + * navigation and appRouter state updates, and setting the correct classes and data attributes. + */ +const Page: FunctionComponent = ({ children, title }) => { + const element = useRef(null); + + useEffect(() => { + // hide active non-react views + viewManager.hideView(); + }, []); + + useEffect(() => { + const event = { + bubbles: true, + cancelable: false, + detail: { + isRestored: false + } + }; + // pagebeforeshow - hides tabs on tabless pages in libraryMenu + element.current?.dispatchEvent(new CustomEvent('pagebeforeshow', event)); + // viewshow - updates state of appRouter + element.current?.dispatchEvent(new CustomEvent('viewshow', event)); + // pageshow - updates header/navigation in libraryMenu + element.current?.dispatchEvent(new CustomEvent('pageshow', event)); + }, [ element ]); + + return ( +
+ {children} +
+ ); +}; + +export default Page; diff --git a/src/components/appRouter.js b/src/components/appRouter.js index 3b5f35665..7cad70394 100644 --- a/src/components/appRouter.js +++ b/src/components/appRouter.js @@ -122,7 +122,7 @@ class AppRouter { isBack: action === Action.Pop }); } else { - console.warn('[appRouter] "%s" route not found', normalizedPath, location); + console.info('[appRouter] "%s" route not found', normalizedPath, location); } } @@ -139,7 +139,7 @@ class AppRouter { Events.on(apiClient, 'requestfail', this.onRequestFail); }); - ServerConnections.connect().then(result => { + return ServerConnections.connect().then(result => { this.firstConnectionResult = result; // Handle the initial route diff --git a/src/components/pages/SearchPage.tsx b/src/components/pages/SearchPage.tsx deleted file mode 100644 index a63d450e8..000000000 --- a/src/components/pages/SearchPage.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import React, { FunctionComponent, useState } from 'react'; - -import SearchFields from '../search/SearchFields'; -import SearchResults from '../search/SearchResults'; -import SearchSuggestions from '../search/SearchSuggestions'; -import LiveTVSearchResults from '../search/LiveTVSearchResults'; - -type SearchProps = { - serverId?: string, - parentId?: string, - collectionType?: string -}; - -const SearchPage: FunctionComponent = ({ serverId, parentId, collectionType }: SearchProps) => { - const [ query, setQuery ] = useState(); - - return ( - <> - - {!query && - - } - - - - ); -}; - -export default SearchPage; diff --git a/src/components/search/LiveTVSearchResults.tsx b/src/components/search/LiveTVSearchResults.tsx index 67378bc13..b79a24c3b 100644 --- a/src/components/search/LiveTVSearchResults.tsx +++ b/src/components/search/LiveTVSearchResults.tsx @@ -21,8 +21,8 @@ const CARD_OPTIONS = { type LiveTVSearchResultsProps = { serverId?: string; - parentId?: string; - collectionType?: string; + parentId?: string | null; + collectionType?: string | null; query?: string; } diff --git a/src/components/search/SearchResults.tsx b/src/components/search/SearchResults.tsx index 9f6d30a70..a54e568a3 100644 --- a/src/components/search/SearchResults.tsx +++ b/src/components/search/SearchResults.tsx @@ -9,8 +9,8 @@ import SearchResultsRow from './SearchResultsRow'; type SearchResultsProps = { serverId?: string; - parentId?: string; - collectionType?: string; + parentId?: string | null; + collectionType?: string | null; query?: string; } diff --git a/src/components/search/SearchSuggestions.tsx b/src/components/search/SearchSuggestions.tsx index fee361a16..abc24eb7f 100644 --- a/src/components/search/SearchSuggestions.tsx +++ b/src/components/search/SearchSuggestions.tsx @@ -22,7 +22,7 @@ const createSuggestionLink = ({ name, href }: { name: string, href: string }) => type SearchSuggestionsProps = { serverId?: string; - parentId?: string; + parentId?: string | null; } const SearchSuggestions: FunctionComponent = ({ serverId = window.ApiClient.serverId(), parentId }: SearchSuggestionsProps) => { diff --git a/src/components/viewManager/viewManager.js b/src/components/viewManager/viewManager.js index 501bd928a..5073cccf8 100644 --- a/src/components/viewManager/viewManager.js +++ b/src/components/viewManager/viewManager.js @@ -147,6 +147,15 @@ class ViewManager { }); } + hideView() { + if (currentView) { + dispatchViewEvent(currentView, null, 'viewbeforehide'); + dispatchViewEvent(currentView, null, 'viewhide'); + currentView.classList.add('hide'); + currentView = null; + } + } + tryRestoreView(options, onViewChanging) { if (options.cancel) { return Promise.reject({ cancelled: true }); diff --git a/src/controllers/search.html b/src/controllers/search.html deleted file mode 100644 index e6fa92c0f..000000000 --- a/src/controllers/search.html +++ /dev/null @@ -1,2 +0,0 @@ -
-
diff --git a/src/index.html b/src/index.html index f6a4a956c..d77378d3f 100644 --- a/src/index.html +++ b/src/index.html @@ -158,6 +158,7 @@
+
diff --git a/src/routes/index.tsx b/src/routes/index.tsx new file mode 100644 index 000000000..31cb06b8c --- /dev/null +++ b/src/routes/index.tsx @@ -0,0 +1,16 @@ +import React from 'react'; +import { Route, Routes } from 'react-router-dom'; + +import SearchPage from './search'; + +const AppRoutes = () => ( + + + } /> + {/* Suppress warnings for unhandled routes */} + + + +); + +export default AppRoutes; diff --git a/src/routes/search.tsx b/src/routes/search.tsx new file mode 100644 index 000000000..864af6141 --- /dev/null +++ b/src/routes/search.tsx @@ -0,0 +1,40 @@ +import React, { FunctionComponent, useState } from 'react'; +import { useSearchParams } from 'react-router-dom'; + +import Page from '../components/Page'; +import SearchFields from '../components/search/SearchFields'; +import SearchResults from '../components/search/SearchResults'; +import SearchSuggestions from '../components/search/SearchSuggestions'; +import LiveTVSearchResults from '../components/search/LiveTVSearchResults'; +import globalize from '../scripts/globalize'; + +const SearchPage: FunctionComponent = () => { + const [ query, setQuery ] = useState(); + const [ searchParams ] = useSearchParams(); + + return ( + + + {!query && + + } + + + + ); +}; + +export default SearchPage; diff --git a/src/scripts/routes.js b/src/scripts/routes.js index a96ab7a30..e1f7cd8a3 100644 --- a/src/scripts/routes.js +++ b/src/scripts/routes.js @@ -308,12 +308,6 @@ import { appRouter } from '../components/appRouter'; type: 'home' }); - defineRoute({ - alias: '/search.html', - path: 'search.html', - pageComponent: 'SearchPage' - }); - defineRoute({ alias: '/list.html', path: 'list.html', diff --git a/src/scripts/site.js b/src/scripts/site.js index bfe40d504..edf2dab2c 100644 --- a/src/scripts/site.js +++ b/src/scripts/site.js @@ -7,6 +7,8 @@ import 'classlist.js'; import 'whatwg-fetch'; import 'resize-observer-polyfill'; import '../assets/css/site.scss'; +import React from 'react'; +import * as ReactDOM from 'react-dom'; import { Events } from 'jellyfin-apiclient'; import ServerConnections from '../components/ServerConnections'; import globalize from './globalize'; @@ -18,7 +20,7 @@ import { appHost } from '../components/apphost'; import { getPlugins } from './settings/webSettings'; import { pluginManager } from '../components/pluginManager'; import packageManager from '../components/packageManager'; -import { appRouter } from '../components/appRouter'; +import { appRouter, history } from '../components/appRouter'; import '../elements/emby-button/emby-button'; import './autoThemes'; import './libraryMenu'; @@ -40,6 +42,8 @@ import SyncPlayHtmlVideoPlayer from '../components/syncPlay/ui/players/HtmlVideo import SyncPlayHtmlAudioPlayer from '../components/syncPlay/ui/players/HtmlAudioPlayer'; import { currentSettings } from './settings/userSettings'; import taskButton from './taskbutton'; +import { HistoryRouter } from '../components/HistoryRouter.tsx'; +import AppRoutes from '../routes/index.tsx'; function loadCoreDictionary() { const languages = ['af', 'ar', 'be-by', 'bg-bg', 'bn_bd', 'ca', 'cs', 'cy', 'da', 'de', 'el', 'en-gb', 'en-us', 'eo', 'es', 'es-419', 'es-ar', 'es_do', 'es-mx', 'et', 'fa', 'fi', 'fil', 'fr', 'fr-ca', 'gl', 'gsw', 'he', 'hi-in', 'hr', 'hu', 'id', 'it', 'ja', 'kk', 'ko', 'lt-lt', 'lv', 'mr', 'ms', 'nb', 'nl', 'nn', 'pl', 'pr', 'pt', 'pt-br', 'pt-pt', 'ro', 'ru', 'sk', 'sl-si', 'sq', 'sv', 'ta', 'th', 'tr', 'uk', 'ur_pk', 'vi', 'zh-cn', 'zh-hk', 'zh-tw']; @@ -167,7 +171,14 @@ async function onAppReady() { ServerConnections.currentApiClient()?.ensureWebSocket(); }); - appRouter.start(); + await appRouter.start(); + + ReactDOM.render( + + + , + document.getElementById('reactRoot') + ); if (!browser.tv && !browser.xboxOne && !browser.ps4) { import('../components/nowPlayingBar/nowPlayingBar');