Skip to content
Snippets Groups Projects
Commit 672c645a authored by Demian Katz's avatar Demian Katz
Browse files

Made refreshTagList smarter (no need to make AJAX request for tags if there is...

Made refreshTagList smarter (no need to make AJAX request for tags if there is no element on screen to hold the resulting list).
Progress on style fixes.
parent 8253d8d7
No related merge requests found
/*global checkSaveStatuses, hexEncode, path, rc4Encrypt, refreshCommentList*/
/*global checkSaveStatuses, confirm, extractSource, getItemsFromCartCookie, hexEncode, path, printIDs, rc4Encrypt, redrawCartStatus, refreshCommentList, removeRecordState, saveCartCookie, vufindString*/
// keep a handle to the current opened dialog so we can access it later
var __dialogHandle = {dialog: null, processFollowup:false, followupModule: null, followupAction: null, recordId: null, postParams: null};
......@@ -162,7 +162,7 @@ function registerAjaxCart() {
},
showErrors: function(x) {
hideLoadingGraphic($form);
for (y in x) {
for (var y in x) {
if (y == 'ids[]') {
displayFormError($form, vufindString.bulk_noitems_advice);
}
......@@ -231,7 +231,7 @@ function registerAjaxCart() {
success: function(response, statusText, xhr, $form) {
if (response.status == 'OK') {
var items = getItemsFromCartCookie();
redrawCartStatus()
redrawCartStatus();
hideLightbox();
}
var $dialog = getLightbox('Cart', 'Home', null, null, vufindString.viewBookBag, '', '', '', {viewCart:"1"});
......@@ -259,6 +259,29 @@ function registerAjaxCart() {
});
}
function refreshTagList(id, recordSource) {
var tagList = $('#tagList');
if (tagList.length > 0) {
tagList.empty();
var url = path + '/AJAX/JSON?' + $.param({method:'getRecordTags',id:id,'source':recordSource});
$.ajax({
dataType: 'json',
url: url,
success: function(response) {
if (response.status == 'OK') {
$.each(response.data, function(i, tag) {
var href = path + '/Tag?' + $.param({lookfor:tag.tag});
var html = (i>0 ? ', ' : ' ') + '<a href="' + htmlEncode(href) + '">' + htmlEncode(tag.tag) +'</a> (' + htmlEncode(tag.cnt) + ')';
tagList.append(html);
});
} else if (response.data && response.data.length > 0) {
tagList.append(response.data);
}
}
});
}
}
function registerAjaxSaveRecord() {
var saveForm = $('#modalDialog form[name="saveRecord"]');
if (saveForm.length > 0) {
......@@ -278,10 +301,8 @@ function registerAjaxSaveRecord() {
if (typeof(checkSaveStatuses) == 'function') {
checkSaveStatuses();
}
// Update tag list if appropriate:
if (typeof(refreshTagList) == 'function') {
refreshTagList(recordId, recordSource);
}
// Update tag list:
refreshTagList(recordId, recordSource);
} else {
displayFormError($form, response.data);
}
......@@ -403,26 +424,6 @@ function registerAjaxTagRecord() {
});
}
function refreshTagList(id, recordSource) {
$('#tagList').empty();
var url = path + '/AJAX/JSON?' + $.param({method:'getRecordTags',id:id,'source':recordSource});
$.ajax({
dataType: 'json',
url: url,
success: function(response) {
if (response.status == 'OK') {
$.each(response.data, function(i, tag) {
var href = path + '/Tag?' + $.param({lookfor:tag.tag});
var html = (i>0 ? ', ' : ' ') + '<a href="' + htmlEncode(href) + '">' + htmlEncode(tag.tag) +'</a> (' + htmlEncode(tag.cnt) + ')';
$('#tagList').append(html);
});
} else if (response.data && response.data.length > 0) {
$('#tagList').append(response.data);
}
}
});
}
function registerAjaxEmailSearch() {
$('#modalDialog form[name="emailSearch"]').unbind('submit').submit(function(){
if (!$(this).valid()) { return false; }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment