forked from defunkt/jquery-pjax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.pjax.js
502 lines (414 loc) · 13.7 KB
/
jquery.pjax.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
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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
// jquery.pjax.js
// copyright chris wanstrath
// https://github.com/defunkt/jquery-pjax
(function($){
// Add the state property to jQuery's event object so we can use it in
// $(window).bind('popstate')
if ( $.inArray('state', $.event.props) < 0 )
$.event.props.push('state');
// Is pjax supported by this browser?
$.support.pjax =
window.history && window.history.pushState && window.history.replaceState
// pushState isn't reliable on iOS until 5.
&& !navigator.userAgent.match(/((iPod|iPhone|iPad).+\bOS\s+[1-4]|WebApps\/.+CFNetwork)/);
//
// wrap window.history calls according to if they are actually supported or not
//
if ( $.support.pjax ) {
$.history = {
replaceState : function(data, title, url) {
window.history.replaceState(data, title, url);
},
pushState : function(data, title, url) {
window.history.pushState(data, title, url);
}
};
}
else if ( typeof(window.History) !== "undefined" && History.enabled ) {
$.history = {
replaceState : function(data, title, url) {
History.replaceState(data, title, url);
},
pushState : function(data, title, url) {
History.pushState(data, title, url);
}
};
}
else {
$.history = {
replaceState : function(data, title, url) {
window.location.hash = url;
},
pushState : function(data, title, url) {
window.location.hash = url;
}
};
}
// When called on a link, fetches the href with ajax into the
// container specified as the first parameter or with the data-pjax
// attribute on the link itself.
//
// Tries to make sure the back button and ctrl+click work the way
// you'd expect.
//
// Accepts a jQuery ajax options object that may include these
// pjax specific options:
//
// container - Where to stick the response body. Usually a String selector.
// $(container).html(xhr.responseBody)
// push - Whether to pushState the URL. Defaults to true (of course).
// replace - Want to use replaceState instead? That's cool.
//
// For convenience the first parameter can be either the container or
// the options object.
//
// Returns the jQuery object
$.fn.pjax = function( container, options ) {
options = optionsFor(container, options);
return this.live('click', function(event){
return handleClick(event, options);
});
};
// Public: pjax on click handler
//
// Exported as $.pjax.click.
//
// event - "click" jQuery.Event
// options - pjax options
//
// Examples
//
// $('a').live('click', $.pjax.click)
// // is the same as
// $('a').pjax()
//
// $(document).on('click', 'a', function(event) {
// var container = $(this).closest('[data-pjax-container]')
// return $.pjax.click(event, container)
// })
//
// Returns false if pjax runs, otherwise nothing.
function handleClick(event, container, options) {
options = optionsFor(container, options);
var link = event.currentTarget;
// Middle click, cmd click, and ctrl click should open
// links in a new tab as normal.
if ( event.which > 1 || event.metaKey )
return;
// Ignore cross origin links
if ( location.protocol !== link.protocol || location.host !== link.host )
return;
// Ignore anchors on the same page
if ( link.hash && link.href.replace(link.hash, '') ===
location.href.replace(location.hash, '') )
return;
var defaults = {
url: link.href,
container: $(link).attr('data-pjax'),
target: link,
clickedElement: $(link), // DEPRECATED: use target
fragment: null
};
$.pjax($.extend({}, defaults, options));
event.preventDefault();
return false;
}
// Internal: Strips _pjax=true param from url
//
// url - String
//
// Returns String.
function stripPjaxParam(url) {
return url
.replace(/\?_pjax=true&?/, '?')
.replace(/_pjax=true&?/, '')
.replace(/\?$/, '');
}
// Internal: Parse URL components and returns a Locationish object.
//
// url - String URL
//
// Returns HTMLAnchorElement that acts like Location.
function parseURL(url) {
var a = document.createElement('a');
a.href = url;
return a;
}
// Loads a URL with ajax, puts the response body inside a container,
// then pushState()'s the loaded URL.
//
// Works just like $.ajax in that it accepts a jQuery ajax
// settings object (with keys like url, type, data, etc).
//
// Accepts these extra keys:
//
// container - Where to stick the response body.
// $(container).html(xhr.responseBody)
// push - Whether to pushState the URL. Defaults to true (of course).
// replace - Want to use replaceState instead? That's cool.
//
// Use it just like $.ajax:
//
// var xhr = $.pjax({ url: this.href, container: '#main' })
// console.log( xhr.readyState )
//
// Returns whatever $.ajax returns.
var pjax = $.pjax = function( options ) {
options = $.extend(true, {}, $.ajaxSettings, pjax.defaults, options);
if ($.isFunction(options.url)) {
options.url = options.url();
}
var target = options.target;
// DEPRECATED: use options.target
if (!target && options.clickedElement) target = options.clickedElement[0];
var url = options.url;
var hash = parseURL(url).hash;
// DEPRECATED: Save references to original event callbacks. However,
// listening for custom pjax:* events is prefered.
var oldBeforeSend = options.beforeSend,
oldComplete = options.complete,
oldSuccess = options.success,
oldError = options.error;
var context = options.context = findContainerFor(options.container);
function fire(type, args) {
var event = $.Event(type, { relatedTarget: target });
context.trigger(event, args);
return !event.isDefaultPrevented();
}
var timeoutTimer;
options.beforeSend = function(xhr, settings) {
url = stripPjaxParam(settings.url);
if (settings.timeout > 0) {
timeoutTimer = setTimeout(function() {
if (fire('pjax:timeout', [xhr, options]))
xhr.abort('timeout');
}, settings.timeout);
// Clear timeout setting so jquerys internal timeout isn't invoked
settings.timeout = 0;
}
xhr.setRequestHeader('X-PJAX', 'true');
var result;
// DEPRECATED: Invoke original `beforeSend` handler
if (oldBeforeSend) {
result = oldBeforeSend.apply(this, arguments);
if (result === false) return false;
}
if (!fire('pjax:beforeSend', [xhr, settings])) return false;
fire('pjax:start', [xhr, options]);
// start.pjax is deprecated
fire('start.pjax', [xhr, options]);
};
options.complete = function(xhr, textStatus) {
if (timeoutTimer)
clearTimeout(timeoutTimer);
// DEPRECATED: Invoke original `complete` handler
if (oldComplete) oldComplete.apply(this, arguments);
fire('pjax:complete', [xhr, textStatus, options]);
fire('pjax:end', [xhr, options]);
// end.pjax is deprecated
fire('end.pjax', [xhr, options]);
};
options.error = function(xhr, textStatus, errorThrown) {
var respUrl = xhr.getResponseHeader('X-PJAX-URL');
if (respUrl) url = stripPjaxParam(respUrl);
// DEPRECATED: Invoke original `error` handler
if (oldError) oldError.apply(this, arguments);
var allowed = fire('pjax:error', [xhr, textStatus, errorThrown, options]);
if (textStatus !== 'abort' && allowed)
window.location = url;
};
options.success = function(data, status, xhr) {
var respUrl = xhr.getResponseHeader('X-PJAX-URL');
if (respUrl) url = stripPjaxParam(respUrl);
var title, oldTitle = document.title;
if ( options.fragment ) {
// If they specified a fragment, look for it in the response
// and pull it out.
var html = $('<html>').html(data);
var $fragment = html.find(options.fragment);
if ( $fragment.length ) {
this.html($fragment.contents());
// If there's a <title> tag in the response, use it as
// the page's title. Otherwise, look for data-title and title attributes.
title = html.find('title').text() || $fragment.attr('title') || $fragment.data('title');
} else {
return window.location = url;
}
} else {
// If we got no data or an entire web page, go directly
// to the page and let normal error handling happen.
if ( !$.trim(data) || /<html/i.test(data) )
return window.location = url;
this.html(data);
// If there's a <title> tag in the response, use it as
// the page's title.
title = this.find('title').remove().text();
}
if ( title ) document.title = $.trim(title);
var state = {
url: url,
pjax: this.selector,
fragment: options.fragment,
timeout: options.timeout
};
if ( options.replace ) {
pjax.active = true;
$.history.replaceState(state, document.title, url);
} else if ( options.push ) {
// this extra replaceState before first push ensures good back
// button behavior
if ( !pjax.active ) {
$.history.replaceState($.extend({}, state, {url:null}), oldTitle);
pjax.active = true;
}
$.history.pushState(state, document.title, url);
}
// Google Analytics support
if ( (options.replace || options.push) && window._gaq )
_gaq.push(['_trackPageview']);
// If the URL has a hash in it, make sure the browser
// knows to navigate to the hash.
if ( hash !== '' ) {
window.location.href = hash;
}
// DEPRECATED: Invoke original `success` handler
if (oldSuccess) oldSuccess.apply(this, arguments);
fire('pjax:success', [data, status, xhr, options]);
};
// Cancel the current request if we're already pjaxing
var xhr = pjax.xhr;
if ( xhr && xhr.readyState < 4) {
xhr.onreadystatechange = $.noop;
xhr.abort();
}
pjax.options = options;
pjax.xhr = $.ajax(options);
$(document).trigger('pjax', [pjax.xhr, options]);
return pjax.xhr;
}
// Internal: Build options Object for arguments.
//
// For convenience the first parameter can be either the container or
// the options object.
//
// Examples
//
// optionsFor('#container')
// // => {container: '#container'}
//
// optionsFor('#container', {push: true})
// // => {container: '#container', push: true}
//
// optionsFor({container: '#container', push: true})
// // => {container: '#container', push: true}
//
// Returns options Object.
function optionsFor(container, options) {
// Both container and options
if ( container && options )
options.container = container;
// First argument is options Object
else if ( $.isPlainObject(container) )
options = container;
// Only container
else
options = {container: container};
// Find and validate container
if (options.container)
options.container = findContainerFor(options.container);
return options;
}
// Internal: Find container element for a variety of inputs.
//
// Because we can't persist elements using the history API, we must be
// able to find a String selector that will consistently find the Element.
//
// container - A selector String, jQuery object, or DOM Element.
//
// Returns a jQuery object whose context is `document` and has a selector.
function findContainerFor(container) {
container = $(container);
if ( !container.length ) {
throw "no pjax container for " + container.selector;
} else if ( container.selector !== '' && container.context === document ) {
return container;
} else if ( container.attr('id') ) {
return $('#' + container.attr('id'));
} else {
throw "cant get selector for pjax container!";
}
}
pjax.defaults = {
timeout: 650,
push: true,
replace: false,
// We want the browser to maintain two separate internal caches: one for
// pjax'd partial page loads and one for normal page loads. Without
// adding this secret parameter, some browsers will often confuse the two.
data: { _pjax: true },
type: 'GET',
dataType: 'html'
}
// Export $.pjax.click
pjax.click = handleClick;
// Used to detect initial (useless) popstate.
// If history.state exists, assume browser isn't going to fire initial popstate.
var popped = ('state' in window.history), initialURL = location.href;
// popstate handler takes care of the back and forward buttons
//
// You probably shouldn't use pjax on pages with other pushState
// stuff yet.
$(window).bind('popstate', function(event){
// Ignore inital popstate that some browsers fire on page load
var initialPop = !popped && location.href == initialURL;
popped = true;
if ( initialPop ) return;
var state = event.state;
if ( state && state.pjax ) {
var container = state.pjax;
if ( $(container+'').length )
$.pjax({
url: state.url || location.href,
fragment: state.fragment,
container: container,
push: false,
timeout: state.timeout
});
else
window.location = location.href;
}
});
// Fall back to normalcy for older browsers.
/*if ( !$.support.pjax ) {
$.pjax = function( options ) {
var url = $.isFunction(options.url) ? options.url() : options.url,
method = options.type ? options.type.toUpperCase() : 'GET';
var form = $('<form>', {
method: method === 'GET' ? 'GET' : 'POST',
action: url,
style: 'display:none'
});
if (method !== 'GET' && method !== 'POST') {
form.append($('<input>', {
type: 'hidden',
name: '_method',
value: method.toLowerCase()
}));
}
var data = options.data;
if (typeof data === 'string') {
$.each(data.split('&'), function(index, value) {
var pair = value.split('=');
form.append($('<input>', {type: 'hidden', name: pair[0], value: pair[1]}));
});
} else if (typeof data === 'object') {
for (key in data)
form.append($('<input>', {type: 'hidden', name: key, value: data[key]}));
}
$(document.body).append(form);
form.submit();
};
$.pjax.click = $.noop;
$.fn.pjax = function() { return this; };
}*/
})(jQuery);