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
77 lines
2.1 KiB
JavaScript
77 lines
2.1 KiB
JavaScript
(function (global, factory) {
|
|
if (typeof define === "function" && define.amd) {
|
|
define('ss.config', ['exports'], factory);
|
|
} else if (typeof exports !== "undefined") {
|
|
factory(exports);
|
|
} else {
|
|
var mod = {
|
|
exports: {}
|
|
};
|
|
factory(mod.exports);
|
|
global.ssConfig = 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 Config = function () {
|
|
function Config() {
|
|
_classCallCheck(this, Config);
|
|
}
|
|
|
|
_createClass(Config, null, [{
|
|
key: 'getSection',
|
|
value: function getSection(key) {
|
|
return window.ss.config.sections[key];
|
|
}
|
|
}, {
|
|
key: 'getTopLevelRoutes',
|
|
value: function getTopLevelRoutes() {
|
|
var topLevelRoutes = [];
|
|
|
|
Object.keys(window.ss.config.sections).forEach(function (key) {
|
|
var route = window.ss.config.sections[key].route;
|
|
var isTopLevelRoute = route.indexOf('/') === -1;
|
|
var isUnique = topLevelRoutes.indexOf(route) === -1;
|
|
|
|
if (isTopLevelRoute && isUnique) {
|
|
topLevelRoutes.push(route);
|
|
}
|
|
});
|
|
|
|
return topLevelRoutes;
|
|
}
|
|
}]);
|
|
|
|
return Config;
|
|
}();
|
|
|
|
exports.default = Config;
|
|
}); |