From 4db4f4b4b48dc145d1ca2b1a1b27d457f1d3e4e1 Mon Sep 17 00:00:00 2001 From: nod_ <nod_@598310.no-reply.drupal.org> Date: Fri, 10 May 2024 20:33:05 +0900 Subject: [PATCH] Issue #3443461 by Gauravvvv, Mithun S, finnsky, ckrina: escapeAdmin.js functionality should be removed(it not used anymore) (cherry picked from commit 799802965eed7deb13876e243826cf9642db9091) --- core/modules/navigation/js/escapeAdmin.js | 67 ------------------- .../navigation/navigation.libraries.yml | 13 ---- 2 files changed, 80 deletions(-) delete mode 100644 core/modules/navigation/js/escapeAdmin.js diff --git a/core/modules/navigation/js/escapeAdmin.js b/core/modules/navigation/js/escapeAdmin.js deleted file mode 100644 index 5fa2b89e6c62..000000000000 --- a/core/modules/navigation/js/escapeAdmin.js +++ /dev/null @@ -1,67 +0,0 @@ -/** - * @file - * Replaces the home link in toolbar with a back to site link. - */ - -((Drupal, drupalSettings, once) => { - /** - * Information about the current page path. - * - * @type {object} - */ - const pathInfo = drupalSettings.path; - - /** - * The last non-administrative page visited in the current browser tab. - * - * @type {string} - */ - const escapeAdminPath = sessionStorage.getItem('escapeAdminPath'); - - /** - * The window object representing the current browser tab. - * - * @type {Window} - */ - const windowLocation = window.location; - - // Saves the last non-administrative page in the browser to be able to link - // back to it when browsing administrative pages. If there is a destination - // parameter there is not need to save the current path because the page is - // loaded within an existing "workflow". - if ( - !pathInfo.currentPathIsAdmin && - !/destination=/.test(windowLocation.search) - ) { - sessionStorage.setItem('escapeAdminPath', windowLocation); - } - - /** - * Replaces "Back to site" link url when appropriate. - * - * Back to site link points to the last non-administrative page the user - * visited within the same browser tab. - * - * @type {Drupal~behavior} - * - * @prop {Drupal~behaviorAttach} attach - * Attaches the replacement functionality to the toolbar-escape-admin element. - */ - Drupal.behaviors.escapeAdmin = { - attach() { - /** - * Element with the data-toolbar-escape-admin attribute. - * - * @type {HTMLElement} - */ - const toolbarEscape = once('escapeAdmin', '[data-toolbar-escape-admin]'); - if ( - toolbarEscape.length && - pathInfo.currentPathIsAdmin && - escapeAdminPath !== null - ) { - toolbarEscape[0].setAttribute('href', escapeAdminPath); - } - }, - }; -})(Drupal, drupalSettings, once); diff --git a/core/modules/navigation/navigation.libraries.yml b/core/modules/navigation/navigation.libraries.yml index c20ab9e71bfd..7c0b513199f5 100644 --- a/core/modules/navigation/navigation.libraries.yml +++ b/core/modules/navigation/navigation.libraries.yml @@ -33,22 +33,9 @@ admin-reset-styles: base: css/base/admin-reset-styles.css: {} -internal.navigation.escapeAdmin: - # Internal library. Do not depend on it outside core nor add core usage - # beyond the Navigation module. - version: VERSION - js: - js/escapeAdmin.js: {} - dependencies: - - core/drupal - - core/drupalSettings - - core/once - - core/drupal.displace - navigation.layout: dependencies: - navigation/internal.navigation - - navigation/internal.navigation.escapeAdmin body-scroll-lock: version: VERSION -- GitLab