Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix($browser): account for IE deserializing history.state on each read #9587

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 35 additions & 10 deletions src/ng/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,14 @@ function Browser(window, document, $log, $sniffer) {
// URL API
//////////////////////////////////////////////////////////////

var lastBrowserUrl = location.href,
lastHistoryState = history.state,
var cachedState, lastHistoryState,
lastBrowserUrl = location.href,
baseElement = document.find('base'),
reloadLocation = null;

cacheState();
lastHistoryState = cachedState;

/**
* @name $browser#url
*
Expand Down Expand Up @@ -165,18 +168,20 @@ function Browser(window, document, $log, $sniffer) {
// Don't change anything if previous and current URLs and states match. This also prevents
// IE<10 from getting into redirect loop when in LocationHashbangInHtml5Url mode.
// See https://github.com/angular/angular.js/commit/ffb2701
if (lastBrowserUrl === url && (!$sniffer.history || history.state === state)) {
if (lastBrowserUrl === url && (!$sniffer.history || cachedState === state)) {
return;
}
var sameBase = lastBrowserUrl && stripHash(lastBrowserUrl) === stripHash(url);
lastBrowserUrl = url;
lastHistoryState = state;
// Don't use history API if only the hash changed
// due to a bug in IE10/IE11 which leads
// to not firing a `hashchange` nor `popstate` event
// in some cases (see #9143).
if ($sniffer.history && (!sameBase || history.state !== state)) {
if ($sniffer.history && (!sameBase || cachedState !== state)) {
history[replace ? 'replaceState' : 'pushState'](state, '', url);
lastHistoryState = history.state;
cacheState();
lastHistoryState = cachedState;
} else {
if (!sameBase) {
reloadLocation = url;
Expand Down Expand Up @@ -208,20 +213,40 @@ function Browser(window, document, $log, $sniffer) {
* @returns {object} state
*/
self.state = function() {
return isUndefined(history.state) ? null : history.state;
return cachedState;
};

var urlChangeListeners = [],
urlChangeInit = false;

function cacheStateAndFireUrlChange() {
cacheState();
fireUrlChange();
}

// This variable should be used *only* inside the cacheState function.
var lastCachedState = null;
function cacheState() {
// This should be the only place in $browser where `history.state` is read.
cachedState = window.history.state;
cachedState = isUndefined(cachedState) ? null : cachedState;

// Prevent callbacks fo fire twice if both hashchange & popstate were fired.
if (equals(cachedState, lastCachedState)) {
cachedState = lastCachedState;
}
lastCachedState = cachedState;
}

function fireUrlChange() {
if (lastBrowserUrl === self.url() && lastHistoryState === history.state) {
if (lastBrowserUrl === self.url() && lastHistoryState === cachedState) {
return;
}

lastBrowserUrl = self.url();
lastHistoryState = cachedState;
forEach(urlChangeListeners, function(listener) {
listener(self.url(), history.state);
listener(self.url(), cachedState);
});
}

Expand Down Expand Up @@ -254,9 +279,9 @@ function Browser(window, document, $log, $sniffer) {
// changed by push/replaceState

// html5 history api - popstate event
if ($sniffer.history) jqLite(window).on('popstate', fireUrlChange);
if ($sniffer.history) jqLite(window).on('popstate', cacheStateAndFireUrlChange);
// hashchange event
jqLite(window).on('hashchange', fireUrlChange);
jqLite(window).on('hashchange', cacheStateAndFireUrlChange);

urlChangeInit = true;
}
Expand Down
11 changes: 7 additions & 4 deletions src/ng/location.js
Original file line number Diff line number Diff line change
Expand Up @@ -850,9 +850,10 @@ function $LocationProvider(){
var oldUrl = $browser.url();
var oldState = $browser.state();
var currentReplace = $location.$$replace;
var urlOrStateChanged = oldUrl !== $location.absUrl() ||
($location.$$html5 && $sniffer.history && oldState !== $location.$$state);

if (initializing || oldUrl !== $location.absUrl() ||
($location.$$html5 && $sniffer.history && oldState !== $location.$$state)) {
if (initializing || urlOrStateChanged) {
initializing = false;

$rootScope.$evalAsync(function() {
Expand All @@ -861,8 +862,10 @@ function $LocationProvider(){
$location.$$parse(oldUrl);
$location.$$state = oldState;
} else {
setBrowserUrlWithFallback($location.absUrl(), currentReplace,
oldState === $location.$$state ? null : $location.$$state);
if (urlOrStateChanged) {
setBrowserUrlWithFallback($location.absUrl(), currentReplace,
oldState === $location.$$state ? null : $location.$$state);
}
afterLocationChange(oldUrl, oldState);
}
});
Expand Down
Loading