53c71614fc
fixes #821
83 lines
2.3 KiB
JavaScript
83 lines
2.3 KiB
JavaScript
'use strict';
|
|
|
|
/* exported metaParser */
|
|
const metaParser = (() => {
|
|
require(['/vendor/usercss-meta/usercss-meta.min']); /* global usercssMeta */
|
|
const {createParser, ParseError} = usercssMeta;
|
|
const PREPROCESSORS = new Set(['default', 'uso', 'stylus', 'less']);
|
|
/** Relaxed semver:
|
|
* dot-separated digits sequence e.g. 1 or 1.2 or 1.2.3.4.5
|
|
* optional pre-release chunk: "-" followed by dot-separated word characters, "-"
|
|
* optional build chunk: "+" followed by dot-separated word characters, "-"
|
|
*/
|
|
const RX_VER = /^\d+(\.\d+)*(?:-(\w[-\w]*(\.[-\w]+)*))?(?:\+(\w[-\w]*(\.[-\w]+)*))?$/;
|
|
const options = {
|
|
validateKey: {
|
|
preprocessor: state => {
|
|
if (!PREPROCESSORS.has(state.value)) {
|
|
throw new ParseError({
|
|
code: 'unknownPreprocessor',
|
|
args: [state.value],
|
|
index: state.valueIndex,
|
|
});
|
|
}
|
|
},
|
|
version: state => {
|
|
if (!RX_VER.test(state.value)) {
|
|
throw new ParseError({
|
|
code: 'invalidVersion',
|
|
message: 'Invalid @version',
|
|
index: state.valueIndex,
|
|
});
|
|
}
|
|
},
|
|
},
|
|
validateVar: {
|
|
select: state => {
|
|
if (state.varResult.options.every(o => o.name !== state.value)) {
|
|
throw new ParseError({
|
|
code: 'invalidSelectValueMismatch',
|
|
index: state.valueIndex,
|
|
});
|
|
}
|
|
},
|
|
color: state => {
|
|
require(['/js/color/color-converter']); /* global colorConverter */
|
|
const color = colorConverter.parse(state.value);
|
|
if (!color) {
|
|
throw new ParseError({
|
|
code: 'invalidColor',
|
|
args: [state.value],
|
|
index: state.valueIndex,
|
|
});
|
|
}
|
|
state.value = colorConverter.format(color, 'rgb');
|
|
},
|
|
},
|
|
};
|
|
const parser = createParser(options);
|
|
const looseParser = createParser(Object.assign({}, options, {
|
|
allowErrors: true,
|
|
unknownKey: 'throw',
|
|
}));
|
|
|
|
return {
|
|
|
|
lint: looseParser.parse,
|
|
parse: parser.parse,
|
|
|
|
nullifyInvalidVars(vars) {
|
|
for (const va of Object.values(vars)) {
|
|
if (va.value !== null) {
|
|
try {
|
|
parser.validateVar(va);
|
|
} catch (err) {
|
|
va.value = null;
|
|
}
|
|
}
|
|
}
|
|
return vars;
|
|
},
|
|
};
|
|
})();
|