-
Notifications
You must be signed in to change notification settings - Fork 27.4k
refactor($browser): wrap Get(history.state) in try/catch #10369
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -235,10 +235,22 @@ function Browser(window, document, $log, $sniffer) { | |
|
||
// This variable should be used *only* inside the cacheState function. | ||
var lastCachedState = null; | ||
function getCurrentState() { | ||
try { | ||
var state = history.state; | ||
if (state === void 0) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Perhaps we should change There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since function getCurrentState() {
try {
return history.state || null;
} catch(e) {
return null;
}
} There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's not going to be either a valid object, undefined or null, eg https://dxr.mozilla.org/mozilla-central/source/dom/webidl/History.webidl#18 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. could be "false", could be "0", could be the empty string, etc There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. technically, it can legally be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like we are pretending that it will never be |
||
state = null; | ||
} | ||
return state; | ||
} catch (e) { | ||
// MSIE can reportedly throw when there is no state (UNCONFIRMED). | ||
return 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; | ||
cachedState = getCurrentState(); | ||
|
||
// Prevent callbacks fo fire twice if both hashchange & popstate were fired. | ||
if (equals(cachedState, lastCachedState)) { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Curious: Why not use
window
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we cache
history
anyways, might as well use it