89 lines
2.1 KiB
JavaScript
89 lines
2.1 KiB
JavaScript
var Storyline = {};
|
|
var ComicImageTypes = {};
|
|
|
|
(function() {
|
|
Storyline.get_order = function() {
|
|
var order = [];
|
|
$$('#storyline-sorter .cp-category-info').each(function(info) {
|
|
var matches = info.id.match(/category_([0-9\-]+)/);
|
|
if (matches) { order.push(matches[1].replace(/\-/g,'/')); }
|
|
});
|
|
$$('input[name*=storyline_order]').pop().value = order.join(',');
|
|
};
|
|
|
|
Storyline.setup = function() {
|
|
var i = 0;
|
|
var depths = {};
|
|
$$('.cp-children').each(function(ch) {
|
|
ch.id = 'children-' + i;
|
|
var depth = ch.ancestors().length;
|
|
if (!depths[depth]) { depths[depth] = []; }
|
|
depths[depth].push(ch);
|
|
++i;
|
|
});
|
|
|
|
depths = $H(depths);
|
|
|
|
depths.keys().sort(function(a,b) { return b - a; }).each(function(depth) {
|
|
depths.get(depth).each(function(ch) {
|
|
Sortable.create(ch.id, {
|
|
tag: 'div',
|
|
handle: 'span',
|
|
onUpdate: Storyline.get_order
|
|
});
|
|
});
|
|
});
|
|
|
|
Storyline.get_order();
|
|
};
|
|
|
|
ComicImageTypes.setup_checkboxes = function() {
|
|
var checkboxes = $$('input[name*=default][name*=image_types]');
|
|
checkboxes.each(function(c) {
|
|
c.stopObserving('change');
|
|
c.observe('change', function(e) {
|
|
checkboxes.each(function(ch) {
|
|
if (e.target != ch) { ch.checked = false; }
|
|
});
|
|
});
|
|
});
|
|
};
|
|
|
|
ComicImageTypes.setup = function() {
|
|
$$('.image-type-holder').each(function(ith) {
|
|
var closer = ith.select('.delete-image-type').pop();
|
|
if (closer) {
|
|
closer.observe('click', function(e) {
|
|
Event.stop(e);
|
|
if (confirm('Are you sure? Your templates may break after deleting this image type.')) {
|
|
new Effect.Fade(ith, {
|
|
from: 1,
|
|
to: 0,
|
|
afterFinish: function() {
|
|
ith.parentNode.removeChild(ith);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
ComicImageTypes.setup_checkboxes();
|
|
|
|
$('add-new-image-type').observe('click', function(e) {
|
|
Event.stop(e);
|
|
new Ajax.Updater('image-type-container', ComicPressAdmin.ajax_uri, {
|
|
method: 'get',
|
|
parameters: {
|
|
'cp[_nonce]': ComicPressAdmin.nonce,
|
|
'cp[action]': 'get-new-image-type-editor'
|
|
},
|
|
insertion: 'bottom',
|
|
onComplete: function() {
|
|
ComicImageTypes.setup_checkboxes();
|
|
}
|
|
});
|
|
});
|
|
};
|
|
}())
|