fix: copy settings showing empty category selection

v1.18.x
Barış Soner Uşaklı 5 years ago
parent 3349274439
commit ed4b5caf2c

@ -124,49 +124,55 @@ define('admin/manage/category', [
}); });
$('.copy-settings').on('click', function () { $('.copy-settings').on('click', function () {
Benchpress.parse('admin/partials/categories/copy-settings', { socket.emit('categories.getSelectCategories', {}, function (err, allCategories) {
categories: ajaxify.data.allCategories, if (err) {
}, function (html) { return app.alertError(err.message);
var selectedCid; }
var modal = bootbox.dialog({
title: '[[modules:composer.select_category]]', Benchpress.parse('admin/partials/categories/copy-settings', {
message: html, categories: allCategories,
buttons: { }, function (html) {
save: { var selectedCid;
label: '[[modules:bootbox.confirm]]', var modal = bootbox.dialog({
className: 'btn-primary', title: '[[modules:composer.select_category]]',
callback: function () { message: html,
if (!selectedCid) { buttons: {
return; save: {
} label: '[[modules:bootbox.confirm]]',
className: 'btn-primary',
socket.emit('admin.categories.copySettingsFrom', { callback: function () {
fromCid: selectedCid, if (!selectedCid || parseInt(selectedCid, 10) === parseInt(ajaxify.data.category.cid, 10)) {
toCid: ajaxify.data.category.cid, return;
copyParent: modal.find('#copyParent').prop('checked'),
}, function (err) {
if (err) {
return app.alertError(err.message);
} }
modal.modal('hide'); socket.emit('admin.categories.copySettingsFrom', {
app.alertSuccess('[[admin/manage/categories:alert.copy-success]]'); fromCid: selectedCid,
ajaxify.refresh(); toCid: ajaxify.data.category.cid,
}); copyParent: modal.find('#copyParent').prop('checked'),
return false; }, function (err) {
if (err) {
return app.alertError(err.message);
}
modal.modal('hide');
app.alertSuccess('[[admin/manage/categories:alert.copy-success]]');
ajaxify.refresh();
});
return false;
},
}, },
}, },
}, });
}); modal.find('.modal-footer button').prop('disabled', true);
modal.find('.modal-footer button').prop('disabled', true); categorySelector.init(modal.find('[component="category-selector"]'), function (selectedCategory) {
categorySelector.init(modal.find('[component="category-selector"]'), function (selectedCategory) { selectedCid = selectedCategory && selectedCategory.cid;
selectedCid = selectedCategory && selectedCategory.cid; if (selectedCid) {
if (selectedCid) { modal.find('.modal-footer button').prop('disabled', false);
modal.find('.modal-footer button').prop('disabled', false); }
} });
}); });
return false;
}); });
return false;
}); });
$('.upload-button').on('click', function () { $('.upload-button').on('click', function () {

Loading…
Cancel
Save