This repository was archived by the owner on Oct 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjquery.cachedAjax.js
50 lines (46 loc) · 1.51 KB
/
jquery.cachedAjax.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
/* jQuery cachedAjax plugin v1.0
* Memoizes Ajax calls.
*
* Written by Ricky Mondello
* https://github.com/rmondello/cachedAjax
* Released under the MIT license
* http://www.opensource.org/licenses/mit-license.php
*
* This plugin was inspired by John Deerhake's cachedAjax. Unlike John's,
* this plugin works as a drop-in replacement for $.ajax.
* https://github.com/jdeerhake/cachedAjax
*
* The key of the cache is the request URL. This assumes that results for
* requests are stable (i.e. won't change during any given session).
*
* $.cachedAjax takes two arguments. The first is a settings object that
* will be given to $.ajax. For more information about this object, read:
* http://api.jquery.com/jQuery.ajax/
*
* The second argument is arbitrary data to pass as a second argument into the
* success callback of the settings object.
*
* Like $.ajax, $.cachedAjax returns an XHR object, but only if the request's
* results weren't cached.
*/
/*global jQuery, window */
jQuery.cachedAjax = (function() {
var cache = {},
x = function(conf, callbackData) {
if (!cache[conf.url]) {
var succ = conf.success;
conf.success = function(data) {
cache[conf.url] = data;
succ(data, callbackData);
};
return jQuery.ajax(conf);
} else {
conf.success(cache[conf.url], callbackData);
return null;
}
};
x.clear = function() {
cache = {};
};
return x;
})();