mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
abe565eb01
- Relaxed NodeJS dependency to 4.x - Switch to NPM "dependencies" (rather than dev) Provides consistency with framework, where these had previously been broken out between "dependencies" and "devDependencies", which in turn caused issues with "npm shrinkwrap" - Add npm-shrinkwrap.json: Consistent with framework approach Using uber's wrapper library since it prevents npm shrinkwrap from failing on file generation, as well as actually suceeding with an "npm install" once the file is present. - Don't add comments to dist files via babelify We've had some issues with different dependencies causing different results based on the environment, which in turn causes unnecessary diffs - making our work harder to review. Comments can be read through the ES6 source files, and through source maps when generated through `npm run build --development` - Make JS build tooling and naming consistent with framework
134 lines
3.2 KiB
JavaScript
134 lines
3.2 KiB
JavaScript
(function (global, factory) {
|
|
if (typeof define === "function" && define.amd) {
|
|
define('ss.CMSPageHistoryController', ['jQuery', 'i18n'], factory);
|
|
} else if (typeof exports !== "undefined") {
|
|
factory(require('jQuery'), require('i18n'));
|
|
} else {
|
|
var mod = {
|
|
exports: {}
|
|
};
|
|
factory(global.jQuery, global.i18n);
|
|
global.ssCMSPageHistoryController = mod.exports;
|
|
}
|
|
})(this, function (_jQuery, _i18n) {
|
|
'use strict';
|
|
|
|
var _jQuery2 = _interopRequireDefault(_jQuery);
|
|
|
|
var _i18n2 = _interopRequireDefault(_i18n);
|
|
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
|
|
_jQuery2.default.entwine('ss', function ($) {
|
|
$('#Form_VersionsForm').entwine({
|
|
onmatch: function onmatch() {
|
|
this._super();
|
|
},
|
|
onunmatch: function onunmatch() {
|
|
this._super();
|
|
},
|
|
|
|
onsubmit: function onsubmit(e, d) {
|
|
e.preventDefault();
|
|
|
|
var id,
|
|
self = this;
|
|
|
|
id = this.find(':input[name=ID]').val();
|
|
|
|
if (!id) return false;
|
|
|
|
var button, url, selected, to, from, compare, data;
|
|
|
|
compare = this.find(":input[name=CompareMode]").is(":checked");
|
|
selected = this.find("table input[type=checkbox]").filter(":checked");
|
|
|
|
if (compare) {
|
|
if (selected.length != 2) return false;
|
|
|
|
to = selected.eq(0).val();
|
|
from = selected.eq(1).val();
|
|
button = this.find(':submit[name=action_doCompare]');
|
|
url = _i18n2.default.sprintf(this.data('linkTmplCompare'), id, from, to);
|
|
} else {
|
|
to = selected.eq(0).val();
|
|
button = this.find(':submit[name=action_doShowVersion]');
|
|
url = _i18n2.default.sprintf(this.data('linkTmplShow'), id, to);
|
|
}
|
|
|
|
$('.cms-container').loadPanel(url, '', { pjax: 'CurrentForm' });
|
|
}
|
|
});
|
|
|
|
$('#Form_VersionsForm input[name=ShowUnpublished]').entwine({
|
|
onmatch: function onmatch() {
|
|
this.toggle();
|
|
this._super();
|
|
},
|
|
onunmatch: function onunmatch() {
|
|
this._super();
|
|
},
|
|
|
|
onchange: function onchange() {
|
|
this.toggle();
|
|
},
|
|
toggle: function toggle() {
|
|
var self = $(this);
|
|
var form = self.parents('form');
|
|
|
|
if (self.attr('checked')) {
|
|
form.find('tr[data-published=false]').show();
|
|
} else {
|
|
form.find("tr[data-published=false]").hide()._unselect();
|
|
}
|
|
}
|
|
});
|
|
|
|
$("#Form_VersionsForm tbody tr").entwine({
|
|
onclick: function onclick(e) {
|
|
var compare, selected;
|
|
|
|
compare = this.parents("form").find(':input[name=CompareMode]').attr("checked");
|
|
selected = this.siblings(".active");
|
|
|
|
if (compare && this.hasClass('active')) {
|
|
this._unselect();
|
|
|
|
return;
|
|
} else if (compare) {
|
|
if (selected.length > 1) {
|
|
return alert(_i18n2.default._t('ONLYSELECTTWO', 'You can only compare two versions at this time.'));
|
|
}
|
|
|
|
this._select();
|
|
|
|
if (selected.length == 1) {
|
|
this.parents('form').submit();
|
|
}
|
|
|
|
return;
|
|
} else {
|
|
this._select();
|
|
selected._unselect();
|
|
|
|
this.parents("form").submit();
|
|
}
|
|
},
|
|
|
|
_unselect: function _unselect() {
|
|
this.removeClass('active');
|
|
this.find(":input[type=checkbox]").attr("checked", false);
|
|
},
|
|
|
|
_select: function _select() {
|
|
this.addClass('active');
|
|
this.find(":input[type=checkbox]").attr("checked", true);
|
|
}
|
|
|
|
});
|
|
});
|
|
}); |