From ba458a612610512e28b65bafcf74177ddc77bbbe Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Sun, 21 Nov 2021 23:56:20 -0800 Subject: Improve menu loading when going back --- app/src/web/ts/menu.ts | 10 ++-------- app/src/web/ts/menu_quick.ts | 24 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 8 deletions(-) create mode 100644 app/src/web/ts/menu_quick.ts (limited to 'app/src/web/ts') diff --git a/app/src/web/ts/menu.ts b/app/src/web/ts/menu.ts index a288ba07..5b3e6fa9 100644 --- a/app/src/web/ts/menu.ts +++ b/app/src/web/ts/menu.ts @@ -1,4 +1,4 @@ -// Click menu and move contents to main view +// Click menu after delay and notify (function () { const viewport = document.querySelector("#viewport"); const root = document.querySelector("#root"); @@ -20,12 +20,6 @@ return } - // menu container - const bookmarkFlyout = document.querySelector('#bookmarks_flyout'); - if (bookmarkFlyout instanceof HTMLElement) { - bookmarkFlyout.style.marginTop = "0"; - } - // Js handling is a bit slow so we need to wait setTimeout(() => { menuA.click(); @@ -34,5 +28,5 @@ setTimeout(() => { Frost.emit(0); }, 100); - }, 200); + }, 500); }).call(undefined); diff --git a/app/src/web/ts/menu_quick.ts b/app/src/web/ts/menu_quick.ts new file mode 100644 index 00000000..f7b117a4 --- /dev/null +++ b/app/src/web/ts/menu_quick.ts @@ -0,0 +1,24 @@ +// Copy of menu.ts without timeouts or notifications +(function () { + const viewport = document.querySelector("#viewport"); + const root = document.querySelector("#root"); + const bookmarkJewel = document.querySelector("#bookmarks_jewel"); + if (!viewport || !root || !bookmarkJewel) { + console.log('Menu.js: main elements not found'); + Frost.emit(0); + return + } + const menuA = bookmarkJewel.querySelector("a"); + if (!menuA) { + console.log('Menu.js: menu links not found'); + Frost.emit(0); + return + } + const jewel = document.querySelector('#mJewelNav'); + if (!jewel) { + console.log('Menu.js: jewel is null'); + return + } + + menuA.click(); +}).call(undefined); -- cgit v1.2.3