The window.onpopstate code contains undeclared behaviors.

Created on 2 July 2024, 9 months ago

Problem/Motivation

According to the module description, it should prevent displaying pages from the authenticated user's previous session. This is clear. However, only the first if statement is needed to achieve this. The necessary code is:

window.onpopstate = function (event) {
  if (status) {
     window.location.href =  logout_redirect_url;
   }
 }

The else part of this code is buggy, and its purpose is not entirely clear:

   window.onpopstate = function (event) {
      if (status) {
        window.location.href =  logout_redirect_url;
      } else {
        if ((window.location.href.indexOf(logout_redirect_url) > -1)) {
          window.history.pushState('', null, '');
          // do nothing. if condition will use in future to change logic
        } else {
          history.back(1);
        }
      }
    };

The line window.location.href.indexOf(logout_redirect_url) > -1 prevents the user from pressing the back button if they are on the logout_redirect_url page, even if they are logged in. Looks like a bug.

The purpose of the following code is not clear at all, and it may conflict with other JavaScript code that works with the History API:

else {
  history.back(1);
 }

Proposed resolution

Keep only the code needed for the module's functionality.

πŸ› Bug report
Status

Needs review

Version

2.0

Component

Code

Created by

πŸ‡ΊπŸ‡¦Ukraine id.aleks

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024