ember-template-lint
Version:
Linter for Ember or Handlebars templates.
54 lines (47 loc) • 1.41 kB
JavaScript
const Rule = require('./base');
const ERROR_MESSAGE = 'Do not use `action` as %. Instead, use the `on` modifier and `fn` helper.';
module.exports = class NoAction extends Rule {
visitor() {
const isLocal = this.isLocal.bind(this);
const log = this.log.bind(this);
const sourceForNode = this.sourceForNode.bind(this);
let closestTag = null;
function detectAction(node, usageContext) {
if (isLocal(node.path)) {
return;
}
let maybeAction = node.path.original;
if (node.path.type === 'StringLiteral') {
return;
}
if (maybeAction !== 'action') {
return;
}
if (node.path.data === true || node.path.this === true) {
return;
}
log({
message: ERROR_MESSAGE.replace('%', usageContext),
line: node.loc && node.loc.start.line,
column: node.loc && node.loc.start.column,
source: sourceForNode(node),
});
}
return {
SubExpression: (node) => {
detectAction(node, '(action ...)');
},
MustacheStatement: (node) => {
detectAction(node, '{{action ...}}');
},
ElementNode: (node) => {
closestTag = node.tag;
},
ElementModifierStatement: (node) => {
detectAction(node, `<${closestTag} {{action ...}} />`);
},
};
}
};
module.exports.ERROR_MESSAGE = ERROR_MESSAGE;
;