forked from mystiq/hydrogen-web
Move code to callback and fix alias code
This commit is contained in:
parent
a83850ebf3
commit
79f363fb9d
3 changed files with 44 additions and 29 deletions
14
postcss/color.js
Normal file
14
postcss/color.js
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
const offColor = require("off-color").offColor;
|
||||||
|
|
||||||
|
module.exports.derive = function (value, operation, argument) {
|
||||||
|
switch (operation) {
|
||||||
|
case "darker": {
|
||||||
|
const newColorString = offColor(value).darken(argument / 100).hex();
|
||||||
|
return newColorString;
|
||||||
|
}
|
||||||
|
case "lighter": {
|
||||||
|
const newColorString = offColor(value).lighten(argument / 100).hex();
|
||||||
|
return newColorString;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,13 +1,11 @@
|
||||||
const offColor = require("off-color").offColor;
|
|
||||||
const valueParser = require("postcss-value-parser");
|
const valueParser = require("postcss-value-parser");
|
||||||
|
|
||||||
let aliasMap;
|
let aliasMap;
|
||||||
let resolvedMap;
|
let resolvedMap;
|
||||||
const RE_VARIABLE_VALUE = /var\((--(.+)--(.+)-(.+))\)/;
|
|
||||||
|
|
||||||
function getValueFromAlias(alias) {
|
function getValueFromAlias(alias, variables) {
|
||||||
const derivedVariable = aliasMap.get(`--${alias}`);
|
const derivedVariable = aliasMap.get(`--${alias}`);
|
||||||
return resolvedMap.get(derivedVariable); // what if we haven't resolved this variable yet?
|
return variables[derivedVariable] ?? resolvedMap.get(`--${derivedVariable}`); // what if we haven't resolved this variable yet?
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseDeclarationValue(value) {
|
function parseDeclarationValue(value) {
|
||||||
|
@ -23,7 +21,7 @@ function parseDeclarationValue(value) {
|
||||||
return variables;
|
return variables;
|
||||||
}
|
}
|
||||||
|
|
||||||
function resolveDerivedVariable(decl, variables) {
|
function resolveDerivedVariable(decl, {variables, derive}) {
|
||||||
const RE_VARIABLE_VALUE = /--(.+)--(.+)-(.+)/;
|
const RE_VARIABLE_VALUE = /--(.+)--(.+)-(.+)/;
|
||||||
const variableCollection = parseDeclarationValue(decl.value);
|
const variableCollection = parseDeclarationValue(decl.value);
|
||||||
for (const variable of variableCollection) {
|
for (const variable of variableCollection) {
|
||||||
|
@ -36,26 +34,15 @@ function resolveDerivedVariable(decl, variables) {
|
||||||
throw new Error(`Cannot derive from ${baseVariable} because it is neither defined in config nor is it an alias!`);
|
throw new Error(`Cannot derive from ${baseVariable} because it is neither defined in config nor is it an alias!`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
switch (operation) {
|
const value = variables[baseVariable] ?? getValueFromAlias(baseVariable, variables);
|
||||||
case "darker": {
|
const derivedValue = derive(value, operation, argument);
|
||||||
const colorString = variables[baseVariable] ?? getValueFromAlias(baseVariable);
|
resolvedMap.set(wholeVariable, derivedValue);
|
||||||
const newColorString = offColor(colorString).darken(argument / 100).hex();
|
|
||||||
resolvedMap.set(wholeVariable, newColorString);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "lighter": {
|
|
||||||
const colorString = variables[baseVariable] ?? getValueFromAlias(baseVariable);
|
|
||||||
const newColorString = offColor(colorString).lighten(argument / 100).hex();
|
|
||||||
resolvedMap.set(wholeVariable, newColorString);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function extractAlias(decl) {
|
function extractAlias(decl) {
|
||||||
const wholeVariable = decl.value.match(RE_VARIABLE_VALUE)?.[1];
|
const wholeVariable = decl.value.match(/var\(--(.+)\)/)?.[1];
|
||||||
if (decl.prop.startsWith("--") && wholeVariable) {
|
if (decl.prop.startsWith("--") && wholeVariable) {
|
||||||
aliasMap.set(decl.prop, wholeVariable);
|
aliasMap.set(decl.prop, wholeVariable);
|
||||||
}
|
}
|
||||||
|
@ -82,7 +69,7 @@ function addResolvedVariablesToRootSelector(root, variables, { Rule, Declaration
|
||||||
module.exports = (opts = {}) => {
|
module.exports = (opts = {}) => {
|
||||||
aliasMap = new Map();
|
aliasMap = new Map();
|
||||||
resolvedMap = new Map();
|
resolvedMap = new Map();
|
||||||
const { variables } = opts;
|
const {variables} = opts;
|
||||||
return {
|
return {
|
||||||
postcssPlugin: "postcss-compile-variables",
|
postcssPlugin: "postcss-compile-variables",
|
||||||
|
|
||||||
|
@ -93,7 +80,7 @@ module.exports = (opts = {}) => {
|
||||||
later.
|
later.
|
||||||
*/
|
*/
|
||||||
root.walkDecls(decl => extractAlias(decl));
|
root.walkDecls(decl => extractAlias(decl));
|
||||||
root.walkDecls(decl => resolveDerivedVariable(decl, variables));
|
root.walkDecls(decl => resolveDerivedVariable(decl, opts));
|
||||||
addResolvedVariablesToRootSelector(root, variables, { Rule, Declaration });
|
addResolvedVariablesToRootSelector(root, variables, { Rule, Declaration });
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
const offColor = require("off-color").offColor;
|
const offColor = require("off-color").offColor;
|
||||||
const postcss = require("postcss");
|
const postcss = require("postcss");
|
||||||
const plugin = require("./css-compile-variables");
|
const plugin = require("./css-compile-variables");
|
||||||
|
const derive = require("./color").derive;
|
||||||
|
|
||||||
async function run(input, output, opts = {}, assert) {
|
async function run(input, output, opts = {}, assert) {
|
||||||
let result = await postcss([plugin(opts)]).process(input, { from: undefined, });
|
let result = await postcss([plugin({ ...opts, derive })]).process(input, { from: undefined, });
|
||||||
assert.strictEqual(
|
assert.strictEqual(
|
||||||
result.css.replaceAll(/\s/g, ""),
|
result.css.replaceAll(/\s/g, ""),
|
||||||
output.replaceAll(/\s/g, "")
|
output.replaceAll(/\s/g, "")
|
||||||
|
@ -78,12 +79,25 @@ module.exports.tests = function tests() {
|
||||||
--foo-color--darker-20: ${transformedColor2.hex()};
|
--foo-color--darker-20: ${transformedColor2.hex()};
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
await run(
|
await run( inputCSS, outputCSS, { variables: { "foo-color": "#ff0" } }, assert);
|
||||||
inputCSS,
|
},
|
||||||
outputCSS,
|
"multiple aliased-derived variable in single declaration is parsed correctly": async (assert) => {
|
||||||
{ variables: { "foo-color": "#ff0" } },
|
const inputCSS = `div {
|
||||||
assert
|
--my-alias: var(--foo-color);
|
||||||
);
|
background-color: linear-gradient(var(--my-alias--lighter-50), var(--my-alias--darker-20));
|
||||||
|
}`;
|
||||||
|
const transformedColor1 = offColor("#ff0").lighten(0.5);
|
||||||
|
const transformedColor2 = offColor("#ff0").darken(0.2);
|
||||||
|
const outputCSS =
|
||||||
|
inputCSS +
|
||||||
|
`
|
||||||
|
:root {
|
||||||
|
--foo-color: #ff0;
|
||||||
|
--my-alias--lighter-50: ${transformedColor1.hex()};
|
||||||
|
--my-alias--darker-20: ${transformedColor2.hex()};
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
await run( inputCSS, outputCSS, { variables: { "foo-color": "#ff0" } }, assert);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue