mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
19de22f427
admin/javascript => admin/client admin/javascript/src => admin/client/src/legacy (mostly) admin/scss/_variables.scss => admin/client/styles/_variables.scss admin/scss => admin/client/styles/legacy/ admin/css/editor.css => admin/client/dist/css/editor.css admin/css/screen.css => admin/client/dist/css/bundle.css admin/images => admin/client/dist/images admin/images/sprites/src => admin/client/src/sprites admin/images/sprites/dist => admin/client/dist/sprites admin/font => admin/client/dist/font
83 lines
2.1 KiB
JavaScript
83 lines
2.1 KiB
JavaScript
(function (global, factory) {
|
|
if (typeof define === "function" && define.amd) {
|
|
define('ss.reducer-register', ['exports'], factory);
|
|
} else if (typeof exports !== "undefined") {
|
|
factory(exports);
|
|
} else {
|
|
var mod = {
|
|
exports: {}
|
|
};
|
|
factory(mod.exports);
|
|
global.ssReducerRegister = mod.exports;
|
|
}
|
|
})(this, function (exports) {
|
|
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
function _classCallCheck(instance, Constructor) {
|
|
if (!(instance instanceof Constructor)) {
|
|
throw new TypeError("Cannot call a class as a function");
|
|
}
|
|
}
|
|
|
|
var _createClass = function () {
|
|
function defineProperties(target, props) {
|
|
for (var i = 0; i < props.length; i++) {
|
|
var descriptor = props[i];
|
|
descriptor.enumerable = descriptor.enumerable || false;
|
|
descriptor.configurable = true;
|
|
if ("value" in descriptor) descriptor.writable = true;
|
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
}
|
|
}
|
|
|
|
return function (Constructor, protoProps, staticProps) {
|
|
if (protoProps) defineProperties(Constructor.prototype, protoProps);
|
|
if (staticProps) defineProperties(Constructor, staticProps);
|
|
return Constructor;
|
|
};
|
|
}();
|
|
|
|
var register = {};
|
|
|
|
var ReducerRegister = function () {
|
|
function ReducerRegister() {
|
|
_classCallCheck(this, ReducerRegister);
|
|
}
|
|
|
|
_createClass(ReducerRegister, [{
|
|
key: 'add',
|
|
value: function add(key, reducer) {
|
|
if (typeof register[key] !== 'undefined') {
|
|
throw new Error('Reducer already exists at \'' + key + '\'');
|
|
}
|
|
|
|
register[key] = reducer;
|
|
}
|
|
}, {
|
|
key: 'getAll',
|
|
value: function getAll() {
|
|
return register;
|
|
}
|
|
}, {
|
|
key: 'getByKey',
|
|
value: function getByKey(key) {
|
|
return register[key];
|
|
}
|
|
}, {
|
|
key: 'remove',
|
|
value: function remove(key) {
|
|
delete register[key];
|
|
}
|
|
}]);
|
|
|
|
return ReducerRegister;
|
|
}();
|
|
|
|
var reducerRegister = new ReducerRegister();
|
|
|
|
exports.default = reducerRegister;
|
|
}); |