style-dictionary-utils
Version:
Utilities to use in your style dictionary config
51 lines (50 loc) • 1.81 kB
JavaScript
import { isDimension } from '../filter/isDimension.js';
import { getValue } from '../utilities/getValue.js';
/**
* @description base font size from options or 16
* @param options
* @returns number
*/
const getBasePxFontSize = (options) => ((options === null || options === void 0 ? void 0 : options.basePxFontSize) ? options.basePxFontSize : 16);
/**
* @description checks if token value has a specific unit
* @param value token value
* @param unit unit string like px or value
* @returns boolean
*/
const hasUnit = (value, unit) => {
if (typeof value === 'number') {
return false;
}
return value.indexOf(unit) > -1;
};
/**
* @description converts dimension tokens value to float without unit, ignores `em` as they are relative to the font size of the parent element
* @type value transformer — [StyleDictionary.ValueTransform](https://github.com/amzn/style-dictionary/blob/main/types/Transform.d.ts)
* @matcher matches all tokens of $type `dimension`
* @transformer returns a float number
*/
export const dimensionToPixelUnitless = {
name: 'dimension/pixelUnitless',
type: `value`,
transitive: true,
filter: isDimension,
transform: (token, options) => {
const tokenValue = getValue(token);
const baseFont = getBasePxFontSize(options);
const floatVal = parseFloat(tokenValue);
if (isNaN(floatVal)) {
throw new Error(`Invalid dimension token: '${token.name}: ${tokenValue}' is not valid and cannot be transform to 'float' \n`);
}
if (floatVal === 0) {
return 0;
}
if (hasUnit(tokenValue, 'rem')) {
return floatVal * baseFont;
}
if (hasUnit(tokenValue, 'px')) {
return floatVal;
}
return tokenValue;
},
};