2011-03-23 10:51:00 +01:00
|
|
|
/**
|
|
|
|
* File: LeftAndMain.BatchActions.js
|
|
|
|
*/
|
|
|
|
(function($) {
|
2012-05-18 02:07:40 +02:00
|
|
|
$.entwine('ss.tree', function($){
|
2011-03-23 10:51:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class: #Form_BatchActionsForm
|
|
|
|
*
|
|
|
|
* Batch actions which take a bunch of selected pages,
|
|
|
|
* usually from the CMS tree implementation, and perform serverside
|
|
|
|
* callbacks on the whole set. We make the tree selectable when the jQuery.UI tab
|
|
|
|
* enclosing this form is opened.
|
|
|
|
*
|
|
|
|
* Events:
|
|
|
|
* register - Called before an action is added.
|
|
|
|
* unregister - Called before an action is removed.
|
|
|
|
*/
|
|
|
|
$('#Form_BatchActionsForm').entwine({
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Variable: Actions
|
|
|
|
* (Array) Stores all actions that can be performed on the collected IDs as
|
|
|
|
* function closures. This might trigger filtering of the selected IDs,
|
|
|
|
* a confirmation message, etc.
|
|
|
|
*/
|
|
|
|
Actions: [],
|
2012-06-12 12:48:08 +02:00
|
|
|
|
|
|
|
getTree: function() {
|
|
|
|
return $('.cms-tree');
|
|
|
|
},
|
|
|
|
|
|
|
|
fromTree: {
|
|
|
|
oncheck_node: function(e, data){
|
|
|
|
this.serializeFromTree();
|
2012-06-18 00:31:27 +02:00
|
|
|
},
|
|
|
|
onuncheck_node: function(e, data){
|
|
|
|
this.serializeFromTree();
|
2012-06-12 12:48:08 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-03-23 10:51:00 +01:00
|
|
|
/**
|
|
|
|
* Constructor: onmatch
|
|
|
|
*/
|
2012-06-12 12:48:08 +02:00
|
|
|
onadd: function() {
|
|
|
|
this._updateStateFromViewMode();
|
|
|
|
this._super();
|
|
|
|
},
|
|
|
|
|
|
|
|
'from .cms-tree-view-modes :input[name=view-mode]': {
|
|
|
|
onclick: function(e){
|
|
|
|
var val = $(e.target).val(), dropdown = this.find(':input[name=Action]'), tree = this.getTree();
|
|
|
|
|
2012-03-08 01:03:49 +01:00
|
|
|
if(val == 'multiselect') {
|
2011-03-23 10:51:00 +01:00
|
|
|
tree.addClass('multiple');
|
2012-06-12 12:48:08 +02:00
|
|
|
this.serializeFromTree();
|
2011-04-22 13:34:01 +02:00
|
|
|
} else {
|
2012-06-12 12:48:08 +02:00
|
|
|
tree.removeClass('multiple');
|
2011-03-23 10:51:00 +01:00
|
|
|
}
|
2012-03-08 01:03:49 +01:00
|
|
|
|
2012-06-12 12:48:08 +02:00
|
|
|
this._updateStateFromViewMode();
|
|
|
|
}
|
2012-05-14 01:43:36 +02:00
|
|
|
},
|
2012-06-12 12:48:08 +02:00
|
|
|
|
2012-05-11 02:53:40 +02:00
|
|
|
/**
|
|
|
|
* Updates the select box state according to the current view mode.
|
|
|
|
*/
|
|
|
|
_updateStateFromViewMode: function() {
|
|
|
|
var viewMode = $('.cms-tree-view-modes :input[name=view-mode]:checked').val();
|
|
|
|
var dropdown = this.find(':input[name=Action]');
|
|
|
|
|
|
|
|
// Batch actions only make sense when multiselect is enabled.
|
|
|
|
if(viewMode == 'multiselect') dropdown.removeAttr('disabled').trigger("liszt:updated");
|
|
|
|
else dropdown.attr('disabled', true).trigger("liszt:updated");
|
|
|
|
},
|
|
|
|
|
2011-03-23 10:51:00 +01:00
|
|
|
/**
|
|
|
|
* Function: register
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
*
|
|
|
|
* (String) type - ...
|
|
|
|
* (Function) callback - ...
|
|
|
|
*/
|
|
|
|
register: function(type, callback) {
|
|
|
|
this.trigger('register', {type: type, callback: callback});
|
|
|
|
var actions = this.getActions();
|
|
|
|
actions[type] = callback;
|
|
|
|
this.setActions(actions);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function: unregister
|
|
|
|
*
|
|
|
|
* Remove an existing action.
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
*
|
|
|
|
* {String} type
|
|
|
|
*/
|
|
|
|
unregister: function(type) {
|
|
|
|
this.trigger('unregister', {type: type});
|
|
|
|
|
|
|
|
var actions = this.getActions();
|
|
|
|
if(actions[type]) delete actions[type];
|
|
|
|
this.setActions(actions);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function: _isActive
|
|
|
|
*
|
|
|
|
* Determines if we should allow and track tree selections.
|
|
|
|
*
|
|
|
|
* Todo:
|
|
|
|
* Too much coupling with tabset
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* (boolean)
|
|
|
|
*/
|
|
|
|
_isActive: function() {
|
2011-04-24 01:05:59 +02:00
|
|
|
return $('.cms-content-batchactions').is(':visible');
|
2011-03-23 10:51:00 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function: refreshSelected
|
|
|
|
*
|
|
|
|
* Ajax callbacks determine which pages is selectable in a certain batch action.
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* {Object} rootNode
|
|
|
|
*/
|
|
|
|
refreshSelected : function(rootNode) {
|
|
|
|
var self = this, st = this.getTree(), ids = this.getIDs(), allIds = [];
|
|
|
|
// Default to refreshing the entire tree
|
|
|
|
if(rootNode == null) rootNode = st;
|
|
|
|
|
|
|
|
for(var idx in ids) {
|
|
|
|
$($(st).getNodeByID(idx)).addClass('selected').attr('selected', 'selected');
|
|
|
|
}
|
|
|
|
|
|
|
|
$(rootNode).find('li').each(function() {
|
|
|
|
allIds.push($(this).data('id'));
|
|
|
|
|
|
|
|
// Disable the nodes while the ajax request is being processed
|
|
|
|
$(this).addClass('treeloading').setEnabled(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Post to the server to ask which pages can have this batch action applied
|
|
|
|
var applicablePagesURL = this.find(':input[name=Action]').val() + '/applicablepages/?csvIDs=' + allIds.join(',');
|
|
|
|
jQuery.getJSON(applicablePagesURL, function(applicableIDs) {
|
|
|
|
// Set a CSS class on each tree node indicating which can be batch-actioned and which can't
|
|
|
|
jQuery(rootNode).find('li').each(function() {
|
|
|
|
$(this).removeClass('treeloading');
|
|
|
|
|
|
|
|
var id = $(this).data('id');
|
|
|
|
if(id == 0 || $.inArray(id, applicableIDs) >= 0) {
|
|
|
|
$(this).setEnabled(true);
|
|
|
|
} else {
|
|
|
|
// De-select the node if it's non-applicable
|
|
|
|
$(this).removeClass('selected').setEnabled(false);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
self.serializeFromTree();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function: serializeFromTree
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* (boolean)
|
|
|
|
*/
|
|
|
|
serializeFromTree: function() {
|
|
|
|
var tree = this.getTree(), ids = tree.getSelectedIDs();
|
|
|
|
|
|
|
|
// if no IDs are selected, stop here. This is an implict way for the
|
|
|
|
// callback to cancel the actions
|
|
|
|
if(!ids || !ids.length) return false;
|
|
|
|
|
|
|
|
// write IDs to the hidden field
|
|
|
|
this.setIDs(ids);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function: setIDS
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* {Array} ids
|
|
|
|
*/
|
|
|
|
setIDs: function(ids) {
|
2012-03-08 01:27:47 +01:00
|
|
|
this.find(':input[name=csvIDs]').val(ids ? ids.join(',') : null);
|
2011-03-23 10:51:00 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function: getIDS
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* {Array}
|
|
|
|
*/
|
|
|
|
getIDs: function() {
|
|
|
|
return this.find(':input[name=csvIDs]').val().split(',');
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function: onsubmit
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* (Event) e
|
|
|
|
*/
|
|
|
|
onsubmit: function(e) {
|
2012-03-08 01:27:47 +01:00
|
|
|
var self = this, ids = this.getIDs(), tree = this.getTree();
|
2011-03-23 10:51:00 +01:00
|
|
|
|
|
|
|
// if no nodes are selected, return with an error
|
|
|
|
if(!ids || !ids.length) {
|
|
|
|
alert(ss.i18n._t('CMSMAIN.SELECTONEPAGE'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// apply callback, which might modify the IDs
|
|
|
|
var type = this.find(':input[name=Action]').val();
|
|
|
|
if(this.getActions()[type]) ids = this.getActions()[type].apply(this, [ids]);
|
|
|
|
|
|
|
|
// write (possibly modified) IDs back into to the hidden field
|
|
|
|
this.setIDs(ids);
|
|
|
|
|
|
|
|
// Reset failure states
|
|
|
|
tree.find('li').removeClass('failed');
|
|
|
|
|
|
|
|
var button = this.find(':submit:first');
|
|
|
|
button.addClass('loading');
|
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
// don't use original form url
|
|
|
|
url: type,
|
|
|
|
type: 'POST',
|
|
|
|
data: this.serializeArray(),
|
|
|
|
complete: function(xmlhttp, status) {
|
|
|
|
button.removeClass('loading');
|
2012-03-08 01:27:47 +01:00
|
|
|
|
|
|
|
// Deselect all nodes
|
|
|
|
tree.jstree('uncheck_all');
|
|
|
|
self.setIDs([]);
|
|
|
|
|
|
|
|
// Reset action
|
|
|
|
self.find(':input[name=Action]').val('').change();
|
2011-03-23 10:51:00 +01:00
|
|
|
|
2012-05-14 15:13:49 +02:00
|
|
|
// status message (decode into UTF-8, HTTP headers don't allow multibyte)
|
2012-03-06 21:36:16 +01:00
|
|
|
var msg = xmlhttp.getResponseHeader('X-Status');
|
2012-05-14 15:13:49 +02:00
|
|
|
if(msg) statusMessage(decodeURIComponent(msg), (status == 'success') ? 'good' : 'bad');
|
2011-03-23 10:51:00 +01:00
|
|
|
},
|
|
|
|
success: function(data, status) {
|
2012-03-08 01:27:47 +01:00
|
|
|
var id, node;
|
2011-03-23 10:51:00 +01:00
|
|
|
|
|
|
|
if(data.modified) {
|
2012-03-08 01:47:26 +01:00
|
|
|
var modifiedNodes = [];
|
2011-03-23 10:51:00 +01:00
|
|
|
for(id in data.modified) {
|
2012-03-08 01:27:47 +01:00
|
|
|
node = tree.getNodeByID(id);
|
2012-03-06 21:37:08 +01:00
|
|
|
tree.jstree('set_text', node, data.modified[id]['TreeTitle']);
|
2012-03-08 01:47:26 +01:00
|
|
|
modifiedNodes.push(node);
|
2011-03-23 10:51:00 +01:00
|
|
|
}
|
2012-03-08 01:47:26 +01:00
|
|
|
$(modifiedNodes).effect('highlight');
|
2011-03-23 10:51:00 +01:00
|
|
|
}
|
|
|
|
if(data.deleted) {
|
|
|
|
for(id in data.deleted) {
|
2012-03-08 01:27:47 +01:00
|
|
|
node = tree.getNodeByID(id);
|
|
|
|
if(node.length) tree.jstree('delete_node', node);
|
2011-03-23 10:51:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(data.error) {
|
|
|
|
for(id in data.error) {
|
2012-03-08 01:27:47 +01:00
|
|
|
node = tree.getNodeByID(id);
|
2011-03-23 10:51:00 +01:00
|
|
|
$(node).addClass('failed');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
dataType: 'json'
|
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
2012-05-11 05:31:12 +02:00
|
|
|
* Class: #Form_BatchActionsForm :select[name=Action]
|
2011-03-23 10:51:00 +01:00
|
|
|
*/
|
2012-05-11 05:31:12 +02:00
|
|
|
$('#Form_BatchActionsForm select[name=Action]').entwine({
|
|
|
|
|
|
|
|
onmatch: function() {
|
|
|
|
this.trigger('change');
|
|
|
|
this._super();
|
|
|
|
},
|
2012-05-14 01:43:36 +02:00
|
|
|
onunmatch: function() {
|
|
|
|
this._super();
|
|
|
|
},
|
2012-05-11 05:31:12 +02:00
|
|
|
/**
|
|
|
|
* Function: onchange
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* (Event) e
|
|
|
|
*/
|
|
|
|
onchange: function(e) {
|
|
|
|
var form = $(e.target.form), btn = form.find(':submit');
|
|
|
|
if($(e.target).val() == -1) {
|
|
|
|
btn.attr('disabled', 'disabled').button('refresh');
|
|
|
|
} else {
|
|
|
|
btn.removeAttr('disabled').button('refresh');
|
|
|
|
// form.submit();
|
|
|
|
}
|
2012-03-08 01:03:49 +01:00
|
|
|
|
2012-05-11 05:31:12 +02:00
|
|
|
// TODO Should work by triggering change() along, but doesn't - entwine event bubbling?
|
|
|
|
this.trigger("liszt:updated");
|
2012-03-08 01:03:49 +01:00
|
|
|
|
2012-05-11 05:31:12 +02:00
|
|
|
this._super(e);
|
|
|
|
}
|
2011-03-23 10:51:00 +01:00
|
|
|
});
|
2012-05-11 05:31:12 +02:00
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
/**
|
|
|
|
* Publish selected pages action
|
|
|
|
*/
|
|
|
|
$('#Form_BatchActionsForm').register('admin/batchactions/publish', function(ids) {
|
|
|
|
var confirmed = confirm(
|
|
|
|
"You have " + ids.length + " pages selected.\n\n"
|
|
|
|
+ "Do your really want to publish?"
|
|
|
|
);
|
|
|
|
return (confirmed) ? ids : false;
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unpublish selected pages action
|
|
|
|
*/
|
|
|
|
$('#Form_BatchActionsForm').register('admin/batchactions/unpublish', function(ids) {
|
|
|
|
var confirmed = confirm(
|
|
|
|
"You have " + ids.length + " pages selected.\n\n"
|
|
|
|
+ "Do your really want to unpublish?"
|
|
|
|
);
|
|
|
|
return (confirmed) ? ids : false;
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete selected pages action
|
|
|
|
*/
|
|
|
|
$('#Form_BatchActionsForm').register('admin/batchactions/delete', function(ids) {
|
|
|
|
var confirmed = confirm(
|
|
|
|
"You have " + ids.length + " pages selected.\n\n"
|
|
|
|
+ "Do your really want to delete?"
|
|
|
|
);
|
|
|
|
return (confirmed) ? ids : false;
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete selected pages from live action
|
|
|
|
*/
|
|
|
|
$('#Form_BatchActionsForm').register('admin/batchactions/deletefromlive', function(ids) {
|
|
|
|
var confirmed = confirm(
|
|
|
|
"You have " + ids.length + " pages selected.\n\n"
|
|
|
|
+ "Do your really want to delete these pages from live?"
|
|
|
|
);
|
|
|
|
return (confirmed) ? ids : false;
|
|
|
|
});
|
2011-03-23 10:51:00 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-05-11 02:53:40 +02:00
|
|
|
})(jQuery);
|