|
|
@ -11,13 +11,19 @@ |
|
|
|
*/ |
|
|
|
class Modifier { |
|
|
|
/** |
|
|
|
* @property {Map<string,string>} _modifications |
|
|
|
* @type {Map<string,string>} _modifications |
|
|
|
*/ |
|
|
|
_modifications; |
|
|
|
/** |
|
|
|
* @type {Array<string>} |
|
|
|
*/ |
|
|
|
_removeMods; |
|
|
|
/** |
|
|
|
* @type {Shape} |
|
|
|
*/ |
|
|
|
_shape; |
|
|
|
/** |
|
|
|
* @property {Sides} paddingValues |
|
|
|
* @type {Sides} paddingValues |
|
|
|
*/ |
|
|
|
_paddingValues; |
|
|
|
|
|
|
@ -63,14 +69,14 @@ class Modifier { |
|
|
|
* @param {Sides} parentalPadding |
|
|
|
*/ |
|
|
|
_updateDimensionsBy(parentalPadding) { |
|
|
|
function updateDirection(keyWord, parentalAdjustment) { |
|
|
|
let refKeys = Object.keys(this._modifications) |
|
|
|
function updateDirection(keyWord, modifications, parentalAdjustment) { |
|
|
|
let refKeys = Object.keys(modifications) |
|
|
|
.filter(k => k.includes(keyWord)); |
|
|
|
|
|
|
|
if (refKeys.length > 0) { |
|
|
|
for (let i = 0; i < refKeys.length; i++) { |
|
|
|
let key = refKeys[i]; |
|
|
|
let value = this._modifications[key]; |
|
|
|
let value = modifications[key]; |
|
|
|
|
|
|
|
if (key.includes("calc")) { |
|
|
|
console.log( |
|
|
@ -80,28 +86,22 @@ class Modifier { |
|
|
|
}', skipping...` |
|
|
|
); |
|
|
|
} else { |
|
|
|
let newValue = `calc(${value} - ${parentalAdjustment}); `; |
|
|
|
console.log( |
|
|
|
`Modifier._updateByParent... ${keyWord |
|
|
|
} - updating value '${value |
|
|
|
}' to '${newValue |
|
|
|
}', for '${key |
|
|
|
}'!` |
|
|
|
); |
|
|
|
this._modifications[key] = newValue; |
|
|
|
let newValue = `calc(${value} - ${parentalAdjustment});`; |
|
|
|
modifications[key] = newValue.trim(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
return modifications; |
|
|
|
} |
|
|
|
|
|
|
|
if (parentalPadding) { |
|
|
|
let pval = parentalPadding.getValues(); |
|
|
|
if (pval["horizontal"] > 0) { |
|
|
|
updateDirection("width", pval["horizontal"]); |
|
|
|
this._modifications = updateDirection("width", this._modifications, pval["horizontal"]+parentalPadding._unit); |
|
|
|
} |
|
|
|
|
|
|
|
if (pval["vertical"] > 0) { |
|
|
|
updateDirection("height", pval["vertical"]); |
|
|
|
this._modifications = updateDirection("height", this._modifications, pval["vertical"]+parentalPadding._unit); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|