astro-ghostcms/.pnpm-store/v3/files/7f/f14c1cb1dee77a4b7b9f34cc21b...

205 lines
7.6 KiB
Plaintext

import { isAttributifySelector, isValidSelector, definePreset } from '@unocss/core';
const variantsRE = /^(?!.*\[(?:[^:]+):(?:.+)\]$)((?:.+:)?!?)?(.*)$/;
function variantAttributify(options = {}) {
const prefix = options.prefix ?? "un-";
const prefixedOnly = options.prefixedOnly ?? false;
const trueToNonValued = options.trueToNonValued ?? false;
let variantsValueRE;
return {
name: "attributify",
match(input, { generator }) {
const match = isAttributifySelector(input);
if (!match)
return;
let name = match[1];
if (name.startsWith(prefix))
name = name.slice(prefix.length);
else if (prefixedOnly)
return;
const content = match[2];
const [, variants = "", body = content] = content.match(variantsRE) || [];
if (body === "~" || trueToNonValued && body === "true" || !body)
return `${variants}${name}`;
if (variantsValueRE == null) {
const separators = generator?.config?.separators?.join("|");
if (separators)
variantsValueRE = new RegExp(`^(.*\\](?:${separators}))(\\[[^\\]]+?\\])$`);
else
variantsValueRE = false;
}
if (variantsValueRE) {
const [, bodyVariant, bracketValue] = content.match(variantsValueRE) || [];
if (bracketValue)
return `${bodyVariant}${variants}${name}-${bracketValue}`;
}
return `${variants}${name}-${body}`;
}
};
}
const elementRE$1 = /(<\w[\w:\.$-]*\s)((?:'[^>]*?'|"[^>]*?"|`[^>]*?`|\{[^>]*?\}|[^>]*?)*)/g;
const valuedAttributeRE$1 = /([?]|(?!\d|-{2}|-\d)[a-zA-Z0-9\u00A0-\uFFFF-_:%-]+)(?:=("[^"]*|'[^']*))?/g;
const splitterRE$1 = /[\s'"`;>]+/;
function autocompleteExtractorAttributify(options) {
return {
name: "attributify",
extract: ({ content, cursor }) => {
const matchedElements = content.matchAll(elementRE$1);
let attrs;
let elPos = 0;
for (const match of matchedElements) {
const [, prefix, content2] = match;
const currentPos2 = match.index + prefix.length;
if (cursor > currentPos2 && cursor <= currentPos2 + content2.length) {
elPos = currentPos2;
attrs = content2;
break;
}
}
if (!attrs)
return null;
const matchedAttributes = attrs.matchAll(valuedAttributeRE$1);
let attrsPos = 0;
let attrName;
let attrValues;
for (const match of matchedAttributes) {
const [matched, name, rawValues] = match;
const currentPos2 = elPos + match.index;
if (cursor > currentPos2 && cursor <= currentPos2 + matched.length) {
attrsPos = currentPos2;
attrName = name;
attrValues = rawValues?.slice(1);
break;
}
}
if (!attrName)
return null;
if (attrName === "class" || attrName === "className" || attrName === ":class")
return null;
const hasPrefix = !!options?.prefix && attrName.startsWith(options.prefix);
if (options?.prefixedOnly && !hasPrefix)
return null;
const attrNameWithoutPrefix = hasPrefix ? attrName.slice(options.prefix.length) : attrName;
if (attrValues === void 0) {
return {
extracted: attrNameWithoutPrefix,
resolveReplacement(suggestion) {
const startOffset = hasPrefix ? options.prefix.length : 0;
return {
start: attrsPos + startOffset,
end: attrsPos + attrName.length,
replacement: suggestion
};
}
};
}
const attrValuePos = attrsPos + attrName.length + 2;
let matchSplit = splitterRE$1.exec(attrValues);
let currentPos = 0;
let value;
while (matchSplit) {
const [matched] = matchSplit;
if (cursor > attrValuePos + currentPos && cursor <= attrValuePos + currentPos + matchSplit.index) {
value = attrValues.slice(currentPos, currentPos + matchSplit.index);
break;
}
currentPos += matchSplit.index + matched.length;
matchSplit = splitterRE$1.exec(attrValues.slice(currentPos));
}
if (value === void 0)
value = attrValues.slice(currentPos);
const [, variants = "", body] = value.match(variantsRE) || [];
return {
extracted: `${variants}${attrNameWithoutPrefix}-${body}`,
transformSuggestions(suggestions) {
return suggestions.filter((v) => v.startsWith(`${variants}${attrNameWithoutPrefix}-`)).map((v) => variants + v.slice(variants.length + attrNameWithoutPrefix.length + 1));
},
resolveReplacement(suggestion) {
return {
start: currentPos + attrValuePos,
end: currentPos + attrValuePos + value.length,
replacement: variants + suggestion.slice(variants.length + attrNameWithoutPrefix.length + 1)
};
}
};
}
};
}
const strippedPrefixes = [
"v-bind:",
":"
];
const splitterRE = /[\s'"`;]+/g;
const elementRE = /<[^>\s]*\s((?:'.*?'|".*?"|`.*?`|\{.*?\}|[^>]*?)*)/g;
const valuedAttributeRE = /([?]|(?!\d|-{2}|-\d)[a-zA-Z0-9\u00A0-\uFFFF-_:!%-.~<]+)=?(?:["]([^"]*)["]|[']([^']*)[']|[{]([^}]*)[}])?/gms;
const defaultIgnoreAttributes = ["placeholder", "fill", "opacity", "stroke-opacity"];
function extractorAttributify(options) {
const ignoreAttributes = options?.ignoreAttributes ?? defaultIgnoreAttributes;
const nonValuedAttribute = options?.nonValuedAttribute ?? true;
const trueToNonValued = options?.trueToNonValued ?? false;
return {
name: "@unocss/preset-attributify/extractor",
extract({ code }) {
return Array.from(code.matchAll(elementRE)).flatMap((match) => Array.from((match[1] || "").matchAll(valuedAttributeRE))).flatMap(([, name, ...contents]) => {
const content = contents.filter(Boolean).join("");
if (ignoreAttributes.includes(name))
return [];
for (const prefix of strippedPrefixes) {
if (name.startsWith(prefix)) {
name = name.slice(prefix.length);
break;
}
}
if (!content) {
if (isValidSelector(name) && nonValuedAttribute !== false) {
const result = [`[${name}=""]`];
if (trueToNonValued)
result.push(`[${name}="true"]`);
return result;
}
return [];
}
if (["class", "className"].includes(name)) {
return content.split(splitterRE).filter(isValidSelector);
} else {
if (options?.prefixedOnly && options.prefix && !name.startsWith(options.prefix))
return [];
return content.split(splitterRE).filter((v) => Boolean(v) && v !== ":").map((v) => `[${name}~="${v}"]`);
}
});
}
};
}
const presetAttributify = definePreset((options = {}) => {
options.strict = options.strict ?? false;
options.prefix = options.prefix ?? "un-";
options.prefixedOnly = options.prefixedOnly ?? false;
options.nonValuedAttribute = options.nonValuedAttribute ?? true;
options.ignoreAttributes = options.ignoreAttributes ?? defaultIgnoreAttributes;
const variants = [
variantAttributify(options)
];
const extractors = [
extractorAttributify(options)
];
const autocompleteExtractors = [
autocompleteExtractorAttributify(options)
];
return {
name: "@unocss/preset-attributify",
enforce: "post",
variants,
extractors,
options,
autocomplete: {
extractors: autocompleteExtractors
},
extractorDefault: options.strict ? false : void 0
};
});
export { autocompleteExtractorAttributify, presetAttributify as default, defaultIgnoreAttributes, extractorAttributify, presetAttributify, variantAttributify, variantsRE };