1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- var ConfigUtil = {
- /**
- * Method overrides JSON properties in <tt>config</tt> and
- * <tt>interfaceConfig</tt> Objects with the values from <tt>newConfig</tt>
- * @param config the config object for which we'll be overriding properties
- * @param interfaceConfig the interfaceConfig object for which we'll be
- * overriding properties.
- * @param newConfig object containing configuration properties. Destination
- * object is selected based on root property name:
- * {
- * config: {
- * // config.js properties to be
- * },
- * interfaceConfig: {
- * // interfaceConfig.js properties here
- * }
- * }
- */
- overrideConfigJSON: function (config, interfaceConfig, newConfig) {
- var configRoot, key, value, confObj;
- for (configRoot in newConfig) {
- confObj = null;
- if (configRoot == "config") {
- confObj = config;
- } else if (configRoot == "interfaceConfig") {
- confObj = interfaceConfig;
- } else {
- continue;
- }
-
- for (key in newConfig[configRoot]) {
- value = newConfig[configRoot][key];
- if (confObj[key] && typeof confObj[key] !== typeof value) {
- console.log("Overriding a " + configRoot +
- " property with a property of different type.");
- }
- console.info("Overriding " + key + " with: " + value);
- confObj[key] = value;
- }
- }
- }
- };
-
- module.exports = ConfigUtil;
|