You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
188 lines
6.5 KiB
188 lines
6.5 KiB
2 years ago
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.updateAllClasses = updateAllClasses;
|
||
|
exports.asValue = asValue;
|
||
|
exports.parseColorFormat = parseColorFormat;
|
||
|
exports.asColor = asColor;
|
||
|
exports.asLookupValue = asLookupValue;
|
||
|
exports.coerceValue = coerceValue;
|
||
|
var _postcssSelectorParser = _interopRequireDefault(require("postcss-selector-parser"));
|
||
|
var _escapeCommas = _interopRequireDefault(require("./escapeCommas"));
|
||
|
var _withAlphaVariable = require("./withAlphaVariable");
|
||
|
var _dataTypes = require("./dataTypes");
|
||
|
var _negateValue = _interopRequireDefault(require("./negateValue"));
|
||
|
function _interopRequireDefault(obj) {
|
||
|
return obj && obj.__esModule ? obj : {
|
||
|
default: obj
|
||
|
};
|
||
|
}
|
||
|
function updateAllClasses(selectors1, updateClass) {
|
||
|
let parser = (0, _postcssSelectorParser).default((selectors)=>{
|
||
|
selectors.walkClasses((sel)=>{
|
||
|
let updatedClass = updateClass(sel.value);
|
||
|
sel.value = updatedClass;
|
||
|
if (sel.raws && sel.raws.value) {
|
||
|
sel.raws.value = (0, _escapeCommas).default(sel.raws.value);
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
let result = parser.processSync(selectors1);
|
||
|
return result;
|
||
|
}
|
||
|
function resolveArbitraryValue(modifier, validate) {
|
||
|
if (!isArbitraryValue(modifier)) {
|
||
|
return undefined;
|
||
|
}
|
||
|
let value = modifier.slice(1, -1);
|
||
|
if (!validate(value)) {
|
||
|
return undefined;
|
||
|
}
|
||
|
return (0, _dataTypes).normalize(value);
|
||
|
}
|
||
|
function asNegativeValue(modifier, lookup = {}, validate) {
|
||
|
let positiveValue = lookup[modifier];
|
||
|
if (positiveValue !== undefined) {
|
||
|
return (0, _negateValue).default(positiveValue);
|
||
|
}
|
||
|
if (isArbitraryValue(modifier)) {
|
||
|
let resolved = resolveArbitraryValue(modifier, validate);
|
||
|
if (resolved === undefined) {
|
||
|
return undefined;
|
||
|
}
|
||
|
return (0, _negateValue).default(resolved);
|
||
|
}
|
||
|
}
|
||
|
function asValue(modifier, options = {}, { validate =()=>true } = {}) {
|
||
|
var ref;
|
||
|
let value = (ref = options.values) === null || ref === void 0 ? void 0 : ref[modifier];
|
||
|
if (value !== undefined) {
|
||
|
return value;
|
||
|
}
|
||
|
if (options.supportsNegativeValues && modifier.startsWith("-")) {
|
||
|
return asNegativeValue(modifier.slice(1), options.values, validate);
|
||
|
}
|
||
|
return resolveArbitraryValue(modifier, validate);
|
||
|
}
|
||
|
function isArbitraryValue(input) {
|
||
|
return input.startsWith("[") && input.endsWith("]");
|
||
|
}
|
||
|
function splitAlpha(modifier) {
|
||
|
let slashIdx = modifier.lastIndexOf("/");
|
||
|
if (slashIdx === -1 || slashIdx === modifier.length - 1) {
|
||
|
return [
|
||
|
modifier
|
||
|
];
|
||
|
}
|
||
|
return [
|
||
|
modifier.slice(0, slashIdx),
|
||
|
modifier.slice(slashIdx + 1)
|
||
|
];
|
||
|
}
|
||
|
function parseColorFormat(value) {
|
||
|
if (typeof value === "string" && value.includes("<alpha-value>")) {
|
||
|
let oldValue = value;
|
||
|
return ({ opacityValue =1 })=>oldValue.replace("<alpha-value>", opacityValue);
|
||
|
}
|
||
|
return value;
|
||
|
}
|
||
|
function asColor(modifier, options = {}, { tailwindConfig ={} } = {}) {
|
||
|
var ref;
|
||
|
if (((ref = options.values) === null || ref === void 0 ? void 0 : ref[modifier]) !== undefined) {
|
||
|
var ref1;
|
||
|
return parseColorFormat((ref1 = options.values) === null || ref1 === void 0 ? void 0 : ref1[modifier]);
|
||
|
}
|
||
|
let [color, alpha] = splitAlpha(modifier);
|
||
|
if (alpha !== undefined) {
|
||
|
var ref2, ref3, ref4;
|
||
|
var ref5;
|
||
|
let normalizedColor = (ref5 = (ref2 = options.values) === null || ref2 === void 0 ? void 0 : ref2[color]) !== null && ref5 !== void 0 ? ref5 : isArbitraryValue(color) ? color.slice(1, -1) : undefined;
|
||
|
if (normalizedColor === undefined) {
|
||
|
return undefined;
|
||
|
}
|
||
|
normalizedColor = parseColorFormat(normalizedColor);
|
||
|
if (isArbitraryValue(alpha)) {
|
||
|
return (0, _withAlphaVariable).withAlphaValue(normalizedColor, alpha.slice(1, -1));
|
||
|
}
|
||
|
if (((ref3 = tailwindConfig.theme) === null || ref3 === void 0 ? void 0 : (ref4 = ref3.opacity) === null || ref4 === void 0 ? void 0 : ref4[alpha]) === undefined) {
|
||
|
return undefined;
|
||
|
}
|
||
|
return (0, _withAlphaVariable).withAlphaValue(normalizedColor, tailwindConfig.theme.opacity[alpha]);
|
||
|
}
|
||
|
return asValue(modifier, options, {
|
||
|
validate: _dataTypes.color
|
||
|
});
|
||
|
}
|
||
|
function asLookupValue(modifier, options = {}) {
|
||
|
var ref;
|
||
|
return (ref = options.values) === null || ref === void 0 ? void 0 : ref[modifier];
|
||
|
}
|
||
|
function guess(validate) {
|
||
|
return (modifier, options)=>{
|
||
|
return asValue(modifier, options, {
|
||
|
validate
|
||
|
});
|
||
|
};
|
||
|
}
|
||
|
let typeMap = {
|
||
|
any: asValue,
|
||
|
color: asColor,
|
||
|
url: guess(_dataTypes.url),
|
||
|
image: guess(_dataTypes.image),
|
||
|
length: guess(_dataTypes.length),
|
||
|
percentage: guess(_dataTypes.percentage),
|
||
|
position: guess(_dataTypes.position),
|
||
|
lookup: asLookupValue,
|
||
|
"generic-name": guess(_dataTypes.genericName),
|
||
|
"family-name": guess(_dataTypes.familyName),
|
||
|
number: guess(_dataTypes.number),
|
||
|
"line-width": guess(_dataTypes.lineWidth),
|
||
|
"absolute-size": guess(_dataTypes.absoluteSize),
|
||
|
"relative-size": guess(_dataTypes.relativeSize),
|
||
|
shadow: guess(_dataTypes.shadow)
|
||
|
};
|
||
|
let supportedTypes = Object.keys(typeMap);
|
||
|
function splitAtFirst(input, delim) {
|
||
|
let idx = input.indexOf(delim);
|
||
|
if (idx === -1) return [
|
||
|
undefined,
|
||
|
input
|
||
|
];
|
||
|
return [
|
||
|
input.slice(0, idx),
|
||
|
input.slice(idx + 1)
|
||
|
];
|
||
|
}
|
||
|
function coerceValue(types, modifier, options, tailwindConfig) {
|
||
|
if (isArbitraryValue(modifier)) {
|
||
|
let arbitraryValue = modifier.slice(1, -1);
|
||
|
let [explicitType, value] = splitAtFirst(arbitraryValue, ":");
|
||
|
// It could be that this resolves to `url(https` which is not a valid
|
||
|
// identifier. We currently only support "simple" words with dashes or
|
||
|
// underscores. E.g.: family-name
|
||
|
if (!/^[\w-_]+$/g.test(explicitType)) {
|
||
|
value = arbitraryValue;
|
||
|
} else if (explicitType !== undefined && !supportedTypes.includes(explicitType)) {
|
||
|
return [];
|
||
|
}
|
||
|
if (value.length > 0 && supportedTypes.includes(explicitType)) {
|
||
|
return [
|
||
|
asValue(`[${value}]`, options),
|
||
|
explicitType
|
||
|
];
|
||
|
}
|
||
|
}
|
||
|
// Find first matching type
|
||
|
for (let type of [].concat(types)){
|
||
|
let result = typeMap[type](modifier, options, {
|
||
|
tailwindConfig
|
||
|
});
|
||
|
if (result !== undefined) return [
|
||
|
result,
|
||
|
type
|
||
|
];
|
||
|
}
|
||
|
return [];
|
||
|
}
|