hovercard: cache raw content of the template so we don't have to request it everytime from the server
This commit is contained in:
parent
adefc315f7
commit
8609cc1675
|
@ -85,7 +85,6 @@ $(document).ready(function(){
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// hover cards should be removed very easily, e.g. when any of these events happen
|
// hover cards should be removed very easily, e.g. when any of these events happen
|
||||||
$('body').on("mouseleave touchstart scroll click dblclick mousedown mouseup submit keydown keypress keyup", function(e){
|
$('body').on("mouseleave touchstart scroll click dblclick mousedown mouseup submit keydown keypress keyup", function(e){
|
||||||
var timeNow = new Date().getTime();
|
var timeNow = new Date().getTime();
|
||||||
|
@ -196,6 +195,7 @@ function getHoverCardContent(term, url, callback) {
|
||||||
// });
|
// });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Ajax request to get the raw template content
|
// Ajax request to get the raw template content
|
||||||
function getHoverCardTemplate (url, callback) {
|
function getHoverCardTemplate (url, callback) {
|
||||||
var postdata = {
|
var postdata = {
|
||||||
|
@ -203,14 +203,24 @@ function getHoverCardTemplate (url, callback) {
|
||||||
datatype: 'tpl'
|
datatype: 'tpl'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Look if we have the template already in the cace, so we don't have
|
||||||
|
// request it again
|
||||||
|
if('hovercard' in getHoverCardTemplate.cache) {
|
||||||
|
setTimeout(function() { callback(getHoverCardTemplate.cache['hovercard']); } , 1);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: url,
|
url: url,
|
||||||
data: postdata,
|
data: postdata,
|
||||||
success: function(data, textStatus) {
|
success: function(data, textStatus) {
|
||||||
|
// write the data in the cache
|
||||||
|
getHoverCardTemplate.cache['hovercard'] = data;
|
||||||
callback(data);
|
callback(data);
|
||||||
}
|
}
|
||||||
});
|
}).fail(function () {callback([]); });
|
||||||
}
|
}
|
||||||
|
getHoverCardTemplate.cache = {};
|
||||||
|
|
||||||
// The Variables used for the template
|
// The Variables used for the template
|
||||||
function getHoverCardVariables(object) {
|
function getHoverCardVariables(object) {
|
||||||
|
|
Loading…
Reference in a new issue