mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Remove setTitle function in app router
This commit is contained in:
parent
3a14418e47
commit
1085034c18
7 changed files with 14 additions and 15 deletions
|
@ -3,7 +3,7 @@ import globalize from '../scripts/globalize';
|
|||
import '../elements/emby-tabs/emby-tabs';
|
||||
import '../elements/emby-button/emby-button';
|
||||
import '../elements/emby-scroller/emby-scroller';
|
||||
import { appRouter } from '../components/appRouter';
|
||||
import LibraryMenu from '../scripts/libraryMenu';
|
||||
|
||||
class HomeView extends TabbedView {
|
||||
constructor(view, params) {
|
||||
|
@ -11,7 +11,7 @@ class HomeView extends TabbedView {
|
|||
}
|
||||
|
||||
setTitle() {
|
||||
appRouter.setTitle(null);
|
||||
LibraryMenu.setTitle(null);
|
||||
}
|
||||
|
||||
onPause() {
|
||||
|
|
|
@ -33,6 +33,7 @@ import Dashboard from '../../scripts/clientUtils';
|
|||
import ServerConnections from '../../components/ServerConnections';
|
||||
import confirm from '../../components/confirm/confirm';
|
||||
import { download } from '../../scripts/fileDownloader';
|
||||
import LibraryMenu from '../../scripts/libraryMenu';
|
||||
|
||||
function autoFocus(container) {
|
||||
import('../../components/autoFocuser').then(({ default: autoFocuser }) => {
|
||||
|
@ -571,7 +572,7 @@ function renderDetailPageBackdrop(page, item, apiClient) {
|
|||
function reloadFromItem(instance, page, params, item, user) {
|
||||
const apiClient = ServerConnections.getApiClient(item.ServerId);
|
||||
|
||||
appRouter.setTitle('');
|
||||
LibraryMenu.setTitle('');
|
||||
|
||||
// Start rendering the artwork first
|
||||
renderImage(page, item);
|
||||
|
@ -2042,7 +2043,7 @@ export default function (view, params) {
|
|||
|
||||
if (e.detail.isRestored) {
|
||||
if (currentItem) {
|
||||
appRouter.setTitle('');
|
||||
LibraryMenu.setTitle('');
|
||||
renderTrackSelections(page, self, currentItem, true);
|
||||
renderBackdrop(currentItem);
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@ import AlphaPicker from '../components/alphaPicker/alphaPicker';
|
|||
import '../elements/emby-itemscontainer/emby-itemscontainer';
|
||||
import '../elements/emby-scroller/emby-scroller';
|
||||
import ServerConnections from '../components/ServerConnections';
|
||||
import { appRouter } from '../components/appRouter';
|
||||
import LibraryMenu from '../scripts/libraryMenu';
|
||||
|
||||
/* eslint-disable indent */
|
||||
|
||||
|
@ -635,7 +635,7 @@ class ItemsView {
|
|||
}
|
||||
|
||||
function setTitle(item) {
|
||||
appRouter.setTitle(getTitle(item) || '');
|
||||
LibraryMenu.setTitle(getTitle(item) || '');
|
||||
|
||||
if (item && item.CollectionType === 'playlists') {
|
||||
hideOrShowAll(view.querySelectorAll('.btnNewItem'), false);
|
||||
|
|
|
@ -23,6 +23,7 @@ import ServerConnections from '../../../components/ServerConnections';
|
|||
import shell from '../../../scripts/shell';
|
||||
import SubtitleSync from '../../../components/subtitlesync/subtitlesync';
|
||||
import { appRouter } from '../../../components/appRouter';
|
||||
import LibraryMenu from '../../../scripts/libraryMenu';
|
||||
|
||||
/* eslint-disable indent */
|
||||
|
||||
|
@ -150,7 +151,7 @@ import { appRouter } from '../../../components/appRouter';
|
|||
currentItem = item;
|
||||
if (!item) {
|
||||
updateRecordingButton(null);
|
||||
appRouter.setTitle('');
|
||||
LibraryMenu.setTitle('');
|
||||
nowPlayingVolumeSlider.disabled = true;
|
||||
nowPlayingPositionSlider.disabled = true;
|
||||
btnFastForward.disabled = true;
|
||||
|
@ -206,7 +207,7 @@ import { appRouter } from '../../../components/appRouter';
|
|||
itemName = parentName || '';
|
||||
}
|
||||
|
||||
appRouter.setTitle(itemName);
|
||||
LibraryMenu.setTitle(itemName);
|
||||
|
||||
const documentTitle = parentName || (item ? item.Name : null);
|
||||
|
||||
|
|
|
@ -196,7 +196,7 @@ import cardBuilder from '../../../components/cardbuilder/cardBuilder';
|
|||
updatePageStyle(view, params);
|
||||
view.addEventListener('viewshow', function (e) {
|
||||
const isRestored = e.detail.isRestored;
|
||||
appRouter.setTitle(null);
|
||||
libraryMenu.setTitle(null);
|
||||
libraryMenu.setTransparentMenu(true);
|
||||
|
||||
if (!isRestored) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue