-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhashbang.js
More file actions
445 lines (397 loc) · 14.1 KB
/
hashbang.js
File metadata and controls
445 lines (397 loc) · 14.1 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
/**
* MIT LICENSE
*
* Compatibility: ie8+, other modern browsers
* Note: Include jQuery on the page for ie8 to be able to fire hashbang-parse and hashbang-serialize events.
*
* Read:
* http://googlewebmastercentral.blogspot.cz/2009/10/proposal-for-making-ajax-crawlable.html
* https://developers.google.com/webmasters/ajax-crawling/docs/specification
*
* Supports:
* - Hash syntax: #!/PATH/PART?VARIABLES
* - Hash syntax: #!VARIABLES
* - Arrays: var[]=val&var[]=val or var[0]=val&var[1]=val
* - Objects: var[prop]=val&var[prop2]=val
*
* Use following events to hook on hashbang:
*
* $(window).on('hashbang-init', function()); // upon window.hashbang object initialization
* $(window).on('hashbang-parse', function()); // upon load and URL hash change and window.hashbang object update
* $(window).on('hashbang-serialize', function()); // upon window.hashbang object change and URL hash update
*
* The object window.hashbang is readable/writable and keeps parsed
* representation of URL hashbang hash.
*
* window.hashbang.something={"any": 1, "else": [{"a":1}, {"b":2}]};
*
* If the URL hash conains unescaped question mark then the path component (starting with '/') before
* question mark is stored in window.hashbang["#path"] special read/write property.
*
* Path component must start with '/'.
*
* #!/my/path?var1=1
* #!/my/path
*
*
* If you want to use '#' insead of '#!' then run this code before you include hashbang script:
* window.hashbangSeparator="#";
*
* Two usefull functions are provided for creation and parsing of hashbang hashes:
* window.hashbangParse(hash):object
* window.hashbangSerialize(object):hash
*
* Example:
* $(link).attr('href', window.hashbangSerialize({"a": 1, "b": 2}));
*
* @package Hashbang Object
* @author Daniel Sevcik <sevcik@webdevelopers.cz>
* @version 2.0
* @copyright 2014 Daniel Sevcik
* @since 2014-07-16 22:22:34 UTC
*/
(function() {
'use strict';
// Is it already loaded?
if (window.hashbangPluginLoaded) {
return;
}
window.hashbangPluginLoaded=true;
if ('hashbang' in window) {
console.debug("Hashbang: ERROR: window.hashbang already exists! The Hashbang script was included twice or there is other conflicting app.");
return;
}
window.hashbangSeparator=window.hashbangSeparator || '#!';
var ourHashUpdate;
var hasHashbangFormat=false;
var updateTimeout;
var hashbangInterval;
function setHash(hash) {
if (ourHashUpdate == hash) return; // Already set
ourHashUpdate=hash;
// window.location.hash=ourHashUpdate; - FF unescapes the values
var url = (window.location.href + '#').replace(/#.*$/, hash.replace(/#+$/, ''));
//window.location.href=url; // Setting '#' or '' scrolls the page up in Ch73
history.pushState({"hashbang": true}, document.title || "", url);
// console.debug("Hashbang: Record history, new hash: %s, current url: %s", hash, url);
}
function getHash() {
// window.location.hash - FF unescapes it!
// window.location.href.replace(/^[^#]+/, ''); - FF35 does escape it extra
return window.location.hash;
}
function trigger(name) {
const el=document;
const e=document.createEvent('HTMLEvents');
e.initEvent(name, true, true);
// console.debug("Hashbang: Triggering event '%s' on document object", name);
el.dispatchEvent(e);
}
function listen(obj, name, callback) {
if(obj.addEventListener) {
// console.debug("Hashbang: Using addEventListener for " + name);
obj.addEventListener(name, callback, false);
} else if (obj.attachEvent) {
// console.debug("Hashbang: Using attachEvent for " + name);
obj.attachEvent(name, callback, false);
}
}
function createProxy(obj) {
if (typeof obj != 'object' || obj === null) {
console.debug("Hashbang: Warning: Hashbang data must be of type object, array, string, number! Received `" + (typeof obj) + "`", obj);
obj = {};
}
return new Proxy(obj,{
set: function(target, key, value) {
const oldVal = target[key];
if (value === null || typeof value == "undefined") {
if (typeof target[key] != 'undefined') { // for error: 'deleteProperty' on proxy: trap returned falsish for property XY
delete target[key];
}
} else if (typeof value === 'object') {
target[key] = createProxy(value);
Object.keys(value).forEach(function(k) {target[key][k] = value[k];});
} else {
target[key] = value + ""; // Enforce always a string to be consistent with reading from #hash
}
// console.debug("Hashbang: Set %s:=%o", key, target[key]);
if (oldVal != target[key]) {
console.debug('Hashbang: The "%s" property changed %o => %o', key, oldVal, target[key]);
updateHash();
}
return true;
},
deleteProperty: function(target, prop) {
if (prop in target) {
delete target[prop];
// console.debug('Hashbang: Delete %o', prop);
updateHash();
}
return true; // always true
}
});
}
function updateHash() { // Delay because when extensive window.hashbang modification the handler is called too often
var hash=window.hashbangSerialize(window.hashbang);
setHash(hash);
if (!updateTimeout) {
updateTimeout=setTimeout(function() {
updateTimeout = null;
trigger('hashbang-serialize');
}, 50);
}
}
window.hashbangSerialize=function(what) {
function serialize(keys, val) {
// console.debug('Hashbang: Serializing', keys, val);
var ret=[], i;
if (val === null) { // null is object
val='';
}
var valType=val instanceof Array ? 'array' : typeof val;
switch (val instanceof Array ? 'array' : typeof val) {
case 'boolean':
val=(val ? 1 : '');
case 'number':
case 'string':
var key=(keys.shift() || 'nokey') + (keys.length && '[' + keys.join('][') + ']' || '');
ret.push(key + (('' + val).length ? '=' + encodeURIComponent(val) : ''));
break;
case 'array':
for (i=0; i < val.length; i++) {
keys.push(typeof val[i] == 'object' ? i : '');
ret=ret.concat(serialize(keys.concat([]), val[i]));
keys.pop();
}
break;
case 'object':
for (i in val) {
if (i == '#path') continue;
keys.push(encodeURIComponent(i));
ret=ret.concat(serialize(keys.concat([]), val[i]));
keys.pop();
}
break;
default:
console.debug("Hashbang: The value type %s is not supported.", typeof val);
}
return ret;
}
var path=(what['#path'] || '');
var hash=serialize([], what).join('&');
return hash || path ? window.hashbangSeparator + path + (path && hash ? '?' : '') + hash : '#';
};
function toArray(obj) {
var i;
if (typeof obj == 'object') {
var hb=obj.__isArray__ || 0;
delete obj.__isArray__;
var arr=[];
for (i in obj) {
obj[i]=toArray(obj[i]);
arr.push(obj[i]);
}
if (arr.length == hb) { // convert to plain array
var seq=true;
for (i=0; i < hb; i++) { // make sure the numbers are sequential
if (typeof obj[i] == 'undefined') return obj; // not an array
}
obj=arr;
}
}
return obj;
}
function updateObject() {
if (getHash() == ourHashUpdate) {
return; // triggered by our updateHash()
}
var fireEvent = 'hashbang' in window ? 'hashbang-parse' : 'hashbang-init';
var hash = getHash();
ourHashUpdate = hash;
hasHashbangFormat = isHashbang(hash);
if (!hasHashbangFormat) fireEvent='hashbang-unparsable';
var obj = window.hashbangParse(hash);
window.hashbang = createProxy(obj instanceof Array && !obj.length ? {} : obj); // root must not be an Array
// createProxy(window.hashbang);
// console.debug("Hashbang: Object updated (%s): %o", fireEvent, obj);
trigger(fireEvent);
}
function isHashbang(hash) {
if (!hash || hash == '#' || hash == window.hashbangSeparator) { // empty hashbang
return true;
} else {
return (hash.substr(0, window.hashbangSeparator.length) == window.hashbangSeparator && hash.substr(2));
}
}
window.hashbangParse=function (hash) {
var obj={};
if (isHashbang(hash) || (window.hashbang && Object.keys(window.hashbang).length)) {
var pointer;
var pathRE=/^(\/[\/a-z0-9. %_~!$'()*+,;:@-]*)(\?|$)/i; // no '&=' even though path part allows it
hash=hash.substr(window.hashbangSeparator.length); // remove '#!'
if (hash.match(pathRE)) {
obj["#path"]=hash.match(pathRE)[1];
hash=hash.replace(pathRE, '');
}
var params=hash ? hash.split('&') : [];
for (var i=0; i < params.length; i++) {
var param=params[i].split('=');
var key=param.shift().replace(/]$/, '');
var val=decodeURIComponent(param.join('='));
var keys=key.replace(/\]\[/g, '[').split('[');
pointer=obj;
while (keys.length) {
var prop=decodeURIComponent(keys.shift()) || pointer.__isArray__;
if ((prop + '').match(/^[0-9]+$/) && typeof pointer[prop] == 'undefined') {
pointer.__isArray__++; // hint possible array
}
if (keys.length) {
if (typeof pointer[prop] != 'object') {
pointer[prop]={"__isArray__": 0};
}
pointer=pointer[prop];
} else {
pointer[prop]=val;
}
}
}
obj=toArray(obj);
}
return obj;
};
/**
* List of observers installed by window.hashbangObserve()
* @access private
* @var Array
*/
const observers = [];
listen(window, 'hashbang-parse', observe);
listen(window, 'hashbang-serialize', observe);
function observe(ev) {
observers.forEach(function(observer) {
const current = getObservedPropData(observer.prop);
const currentJSON = JSON.stringify(current);
const lastJSON = observer.lastJSON;
observer.lastJSON = currentJSON; // copy
if (observer.event.indexOf(ev.type) == -1) { // after we update lastJSON
return;
}
if (currentJSON == lastJSON) {
return;
}
const last = lastJSON && JSON.parse(lastJSON);
if (observer.filter(current, last)) {
console.debug('Hashbang: The "%s" observer fired on "%s". Value changed: %o => %o', observer.prop.join('.'), ev.type, last, current);
observer.callback(current, last);
if (observer.once) {
window.hashbangUnobserve(observer.prop, observer.callback);
}
} else {
// console.debug('Hashbang: The "%s" observer was filtered. Value changed: %o => %o', observer.prop.join('.'), last, current);
}
});
}
/**
* Observe hashbang property change.
*
* Examples:
*
* window.hashbangObserve('open', myCallback);
* window.hashbang.open=123; // will trigger
* location.hash="#!open=345"; // will trigger
*
* window.hashbangObserve(["module", "id"], myCallback, /\d/, 'hashbang-serialize');
* window.hashbang.module.id=123; // will trigger myCallback
* location.hash="#!module[id]=345"; // will NOT trigger (hashbang-parse event not specified)
*
* window.hashbangObserve(["module", "id"], myCallback, false, 'hashbang-serialize');
*
* // Run immediatelly (hashbang-init) and everytime URL changes (hashbang-parse)
* window.hashbangObserve("open", myCallback, false, ['hashbang-parse', 'hashbang-init']);
*
*
* @access private
* @param mixed string or array of window.hashbang object nested keys or false to don't match property name
* @param function callback(newValue, oldValue)
* @param mixed filter callback, or RegExp object or string or number to match new value to. undefined or false: always call callback. To test empty/undefined value use: /^$/
* @param mixed event string 'hashbang-parse': to listen only when URL hashbang changes, 'hashbang-serialize': listen when window.hashbang is changed, 'hashbang-init': run immediatelly, undefined: listen to hashbang-serialize & hashbang-parse, or array of select events
* @param bool once remove callback after first use, default: false
* @return Window object
*/
window.hashbangObserve = function(prop, callback, filter, event, once) {
if (!event) {
event = ['hashbang-serialize', 'hashbang-parse'];
} else if (typeof event == 'string') {
event = event.split(/\s+/);
}
prop = typeof prop == 'object' ? prop : [prop];
const propVal = getObservedPropData(prop);
const observer = {
"prop": prop,
"event": event,
"lastJSON": JSON.stringify(propVal),
"callback": callback,
"filter": typeof filter == 'function' ? filter : function(v, o) {return !filter || ((v || '') + '').match(filter);},
"once": !!once || (event.indexOf('hashbang-init') != -1 && event.length == 1)
};
observers.push(observer);
if (event.indexOf('hashbang-init') != -1 && observer.filter(propVal)) {
observer.callback(propVal);
if (observer.once) {
window.hashbangUnobserve(observer.prop, observer.callback);
}
}
// console.debug('Hashbang: New "%s" observer on event %s.', observer.prop.join('.'), observer.event.join(', '));
return this;
};
/**
* Unobserve hashbang property.
*
* Example:
*
* window.hashbangObserve(["module", "id"], myCallback, /\d/, 'hashbang-parse');
*
* window.hashbangUnobserve(["module", "id"], myCallback);
* or
* window.hashbangUnobserve(false, myCallback);
*
* @access private
* @param mixed string or array of window.hashbang object nested keys or false to don't match property name
* @param function callback to match
* @return Window object
*/
window.hashbangUnobserve = function(prop, callback) {
prop = typeof prop == 'string' ? [prop] : prop;
const idx = observers.findIndex(function(observer) {
if (prop && JSON.stringify(observer.prop) != JSON.stringify(prop)) {
return false;
} else if (callback != observer.callback) {
return false;
}
return true;
});
if (idx != -1) {
// console.debug('Hashbang: The "%s" observer was removed: %o', prop.join('.'), callback);
observers.splice(idx, 1);
}
return this;
};
function getObservedPropData(prop) {
var val = window.hashbang;
prop.forEach(function(p) {
if (p) {
val = typeof val == 'undefined' ? undefined : val[p];
}
});
return val;
}
// First run
updateObject(); // before Object.observe
// window.hashbang = createProxy(window.hashbang);
// Observe Hash
if ("onhashchange" in window) {
listen(window, "hashchange", updateObject);
} else {
throw ("The event hashchange is not supported!");
}
})(window);