1
0
mirror of https://github.com/thangisme/notes.git synced 2024-11-01 08:17:34 -04:00
notes/node_modules/stylelint/lib/rules/no-unsupported-browser-features/index.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

81 lines
2.4 KiB
JavaScript

"use strict"
const doiuse = require("doiuse")
const report = require("../../utils/report")
const ruleMessages = require("../../utils/ruleMessages")
const validateOptions = require("../../utils/validateOptions")
const Result = require("postcss/lib/result")
const _ = require("lodash")
const ruleName = "no-unsupported-browser-features"
const messages = ruleMessages(ruleName, {
rejected: details => `Unexpected browser feature ${details}`,
})
const rule = function (on, options) {
return (root, result) => {
const validOptions = validateOptions(result, ruleName, { actual: on }, {
optional: true,
actual: options,
possible: {
browsers: [_.isString],
ignore: [_.isString],
},
})
if (!validOptions) {
return
}
result.warn((
`'${ruleName}' has been deprecated and in 8.0 will be removed.`
), {
stylelintType: "deprecation",
stylelintReference: `https://stylelint.io/user-guide/rules/${ruleName}/`,
})
const doiuseOptions = {}
if (options && options.browsers) {
doiuseOptions.browsers = options.browsers
}
if (options && options.ignore) {
doiuseOptions.ignore = options.ignore
}
const doiuseResult = new Result()
doiuse(doiuseOptions).postcss(root, doiuseResult)
doiuseResult.warnings().forEach(doiuseWarning => {
report({
ruleName,
result,
message: messages.rejected(cleanDoiuseWarningText(doiuseWarning.text)),
node: doiuseWarning.node,
line: doiuseWarning.line,
column: doiuseWarning.column,
})
})
}
}
function cleanDoiuseWarningText(warningText) {
// Get index of feature Id
const featureIdIndex = warningText.lastIndexOf("(")
// Get feature Id, then replace brackets with quotes
const featureId = warningText.slice(featureIdIndex, warningText.length).replace(/\(|\)/g, "\"")
// Get start of support text i.e. "x not supported by...", or "y only partially supported by..."
const browserSupportStartIndex = warningText.indexOf("not") !== -1 ? warningText.indexOf("not") : warningText.indexOf("only")
// Get browser support text, then strip brackets.
const browserSupport = warningText.slice(browserSupportStartIndex, featureIdIndex - 1).replace(/\(|\)|:/g, "")
return `${featureId} is ${browserSupport}`
}
rule.ruleName = ruleName
rule.messages = messages
module.exports = rule