-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathhash.js
101 lines (85 loc) · 2.17 KB
/
hash.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* eslint-env jquery, browser */
/*global EventEmitter: false */
/*!
* jQuery UI helper JavaScript file for History and hash support
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* https://jquery.org/license
*/
( function( exports, $, EventEmitter ) {
"use strict";
var emitter = new EventEmitter(),
// listen to hash changes?
listen = true,
listenDelay = 600,
pollInterval = 500,
poll = null,
storedHash = "";
// start listening again
function startListening() {
setTimeout( function() {
listen = true;
}, listenDelay );
}
// stop listening to hash changes
function stopListening() {
listen = false;
}
function currHash() {
// Can't use window.location.hash, because Firefox automatically decodes it.
return location.href.split( "#" )[ 1 ];
}
// check if hash has changed
function checkHashChange() {
var hash = currHash();
if ( storedHash !== hash ) {
if ( listen === true ) {
// update was made by navigation button
if ( hash ) {
hash = hash.replace( /^!*/, "" );
}
emitter.trigger( "change", [ hash ] );
}
storedHash = hash;
}
if ( !poll ) {
poll = setInterval( checkHashChange, pollInterval );
}
}
function updateHash( hash, options ) {
options = options || {};
if ( ( hash == null || hash.length === 0 ) && !( /#/ ).test( location.href ) ) {
// If setting hash to null, but it has never been set to anything yet, simply do nothing.
return;
}
if ( options.ignoreChange === true ) {
stopListening();
}
window.location.hash = hash.replace( /^!*(.*)/, "!$1" );
if ( options.ignoreChange === true ) {
storedHash = hash;
startListening();
}
}
function clean( hash ) {
return hash.replace( /^[?#]+/g, "" );
}
function currSearch() {
return clean( window.location.search );
}
function init() {
storedHash = "";
checkHashChange();
}
if ( currSearch() ) {
location.href = location.pathname.replace( /\/$/, "" ) + "/#" + currSearch();
}
// Export public interface
exports.Hash = {
init: init,
on: $.proxy( emitter.on, emitter ),
off: $.proxy( emitter.off, emitter ),
update: updateHash
};
} )( this, jQuery, EventEmitter );