Skip to content

Commit

Permalink
refactor(esdoc): OptionsDefaulter
Browse files Browse the repository at this point in the history
  • Loading branch information
vankop committed Jun 17, 2019
1 parent 9eb078b commit 7cdff6c
Showing 1 changed file with 62 additions and 4 deletions.
66 changes: 62 additions & 4 deletions lib/OptionsDefaulter.js
Expand Up @@ -4,17 +4,30 @@
*/
"use strict";

const getProperty = (obj, name) => {
name = name.split(".");
/**
* Gets the value at path of object
* @param {object} obj - object to query
* @param {string} path - query path
* @returns {any} - if {@param path} requests element from array, then `undefined` will be returned
*/
const getProperty = (obj, path) => {
let name = path.split(".");
for (let i = 0; i < name.length - 1; i++) {
obj = obj[name[i]];
if (typeof obj !== "object" || !obj || Array.isArray(obj)) return;
}
return obj[name.pop()];
};

const setProperty = (obj, name, value) => {
name = name.split(".");
/**
* Sets the value at path of object. Stops execution, if {@param path} requests element from array to be set
* @param {object} obj - object to query
* @param {string} path - query path
* @param {any} value - value to be set
* @returns {void}
*/
const setProperty = (obj, path, value) => {
let name = path.split(".");
for (let i = 0; i < name.length - 1; i++) {
if (typeof obj[name[i]] !== "object" && obj[name[i]] !== undefined) return;
if (Array.isArray(obj[name[i]])) return;
Expand All @@ -24,33 +37,71 @@ const setProperty = (obj, name, value) => {
obj[name.pop()] = value;
};

/**
* @typedef {'call' | 'make' | 'append'} ConfigType
*/
/**
* @typedef {(options: object) => any} MakeConfigHandler
*/
/**
* @typedef {(value: any, options: object) => any} CallConfigHandler
*/
/**
* @typedef {any[]} AppendConfigValues
*/

class OptionsDefaulter {
constructor() {
/**
* Stores default options settings or functions for computing them
*/
this.defaults = {};
/**
* Stores configuration for options
* @type {{[key: string]: ConfigType}}
*/
this.config = {};
}

/**
* Enhancing {@param options} with default values
* @param {object} options - provided options
* @returns {object} - enhanced options
* @throws {Error} - will throw error, if configuration value is other then `undefined` or {@link ConfigType}
*/
process(options) {
options = Object.assign({}, options);
for (let name in this.defaults) {
switch (this.config[name]) {
/**
* If {@link ConfigType} doesn't specified and current value is `undefined`, then default value will be assigned
*/
case undefined:
if (getProperty(options, name) === undefined) {
setProperty(options, name, this.defaults[name]);
}
break;
/**
* Assign result of {@link CallConfigHandler}
*/
case "call":
setProperty(
options,
name,
this.defaults[name].call(this, getProperty(options, name), options)
);
break;
/**
* Assign result of {@link MakeConfigHandler}, if current value is `undefined`
*/
case "make":
if (getProperty(options, name) === undefined) {
setProperty(options, name, this.defaults[name].call(this, options));
}
break;
/**
* Adding {@link AppendConfigValues} at the end of the current array
*/
case "append": {
let oldValue = getProperty(options, name);
if (!Array.isArray(oldValue)) {
Expand All @@ -69,6 +120,13 @@ class OptionsDefaulter {
return options;
}

/**
* Builds up default values
* @param {string} name - option path
* @param {ConfigType | any} config - if {@param def} is provided, then only {@link ConfigType} is allowed
* @param {MakeConfigHandler | CallConfigHandler | AppendConfigValues} [def] - defaults
* @returns {void}
*/
set(name, config, def) {
if (def !== undefined) {
this.defaults[name] = def;
Expand Down

0 comments on commit 7cdff6c

Please sign in to comment.