Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / toolbar / js / escapeAdmin.es6.js
1 /**
2  * @file
3  * Replaces the home link in toolbar with a back to site link.
4  */
5
6 (function($, Drupal, drupalSettings) {
7   const pathInfo = drupalSettings.path;
8   const escapeAdminPath = sessionStorage.getItem('escapeAdminPath');
9   const windowLocation = window.location;
10
11   // Saves the last non-administrative page in the browser to be able to link
12   // back to it when browsing administrative pages. If there is a destination
13   // parameter there is not need to save the current path because the page is
14   // loaded within an existing "workflow".
15   if (
16     !pathInfo.currentPathIsAdmin &&
17     !/destination=/.test(windowLocation.search)
18   ) {
19     sessionStorage.setItem('escapeAdminPath', windowLocation);
20   }
21
22   /**
23    * Replaces the "Home" link with "Back to site" link.
24    *
25    * Back to site link points to the last non-administrative page the user
26    * visited within the same browser tab.
27    *
28    * @type {Drupal~behavior}
29    *
30    * @prop {Drupal~behaviorAttach} attach
31    *   Attaches the replacement functionality to the toolbar-escape-admin element.
32    */
33   Drupal.behaviors.escapeAdmin = {
34     attach() {
35       const $toolbarEscape = $('[data-toolbar-escape-admin]').once(
36         'escapeAdmin',
37       );
38       if ($toolbarEscape.length && pathInfo.currentPathIsAdmin) {
39         if (escapeAdminPath !== null) {
40           $toolbarEscape.attr('href', escapeAdminPath);
41         } else {
42           $toolbarEscape.text(Drupal.t('Home'));
43         }
44       }
45     },
46   };
47 })(jQuery, Drupal, drupalSettings);