Skip to content

Commit

Permalink
feat(rule): autofocus attribute should not be used (#749)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammedzamakhan authored and mgechev committed Feb 11, 2019
1 parent 512a5bd commit 799382f
Show file tree
Hide file tree
Showing 3 changed files with 114 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/index.ts
Expand Up @@ -30,6 +30,7 @@ export { Rule as TemplateConditionalComplexityRule } from './templateConditional
export { Rule as TemplateCyclomaticComplexityRule } from './templateCyclomaticComplexityRule';
export { Rule as TemplateAccessibilityTabindexNoPositiveRule } from './templateAccessibilityTabindexNoPositiveRule';
export { Rule as TemplatesNoNegatedAsync } from './templatesNoNegatedAsyncRule';
export { Rule as TemplateNoAutofocusRule } from './templateNoAutofocusRule';
export { Rule as TrackByFunctionRule } from './trackByFunctionRule';
export { Rule as UseHostPropertyDecoratorRule } from './useHostPropertyDecoratorRule';
export { Rule as UseInputPropertyDecoratorRule } from './useInputPropertyDecoratorRule';
Expand Down
51 changes: 51 additions & 0 deletions src/templateNoAutofocusRule.ts
@@ -0,0 +1,51 @@
import { AttrAst, BoundElementPropertyAst } from '@angular/compiler';
import { IRuleMetadata, RuleFailure, Rules } from 'tslint/lib';
import { SourceFile } from 'typescript/lib/typescript';
import { NgWalker } from './angular/ngWalker';
import { BasicTemplateAstVisitor } from './angular/templates/basicTemplateAstVisitor';

export class Rule extends Rules.AbstractRule {
static readonly metadata: IRuleMetadata = {
description: 'Ensure that autofocus property is not used',
options: null,
optionsDescription: 'Not configurable.',
rationale: 'autofocus attribute reduces usability and accessibility for users.',
ruleName: 'template-no-autofocus',
type: 'functionality',
typescriptOnly: true
};

static readonly FAILURE_STRING = 'autofocus attribute should not be used, as it reduces usability and accessibility for users.';

apply(sourceFile: SourceFile): RuleFailure[] {
return this.applyWithWalker(
new NgWalker(sourceFile, this.getOptions(), {
templateVisitorCtrl: TemplateConditionalComplexityVisitor
})
);
}
}

class TemplateConditionalComplexityVisitor extends BasicTemplateAstVisitor {
visitAttr(ast: AttrAst, context: any) {
this.validateAttribute(ast);
super.visitAttr(ast, context);
}

visitElementProperty(ast: BoundElementPropertyAst) {
this.validateAttribute(ast);
super.visitElementProperty(ast, context);
}

validateAttribute(ast: AttrAst | BoundElementPropertyAst) {
if (ast.name === 'autofocus') {
const {
sourceSpan: {
end: { offset: endOffset },
start: { offset: startOffset }
}
} = ast;
this.addFailureFromStartToEnd(startOffset, endOffset, Rule.FAILURE_STRING);
}
}
}
62 changes: 62 additions & 0 deletions test/templateNoAutofocusRule.spec.ts
@@ -0,0 +1,62 @@
import { assertAnnotated, assertMultipleAnnotated, assertSuccess } from './testHelper';
import { Rule } from '../src/templateNoAutofocusRule';

const {
FAILURE_STRING,
metadata: { ruleName }
} = Rule;

describe(ruleName, () => {
describe('failure', () => {
it('should fail if autofocus attribute is used', () => {
const source = `
@Component({
selector: 'test',
template: '<div autofocus>Autofocus</div>'
~~~~~~~~~
})
class Test {
constructor(foo: Observable<Boolean>) {}
}
`;
assertAnnotated({
message: FAILURE_STRING,
ruleName: ruleName,
source
});
});

it('should fail if autofocus input is used', () => {
const source = `
@Component({
selector: 'test',
template: '<div [attr.autofocus]="false">Autofocus</div>'
~~~~~~~~~~~~~~~~~~~~~~~~
})
class Test {
constructor(foo: Observable<Boolean>) {}
}
`;
assertAnnotated({
message: FAILURE_STRING,
ruleName: ruleName,
source
});
});
});

describe('success', () => {
it('should succeed if autofocus is not used', () => {
const source = `
@Component({
selector: 'test',
template: '<div>No Autofocus</div>'
})
class Test {
constructor(foo: Observable<Boolean>) {}
}
`;
assertSuccess(ruleName, source);
});
});
});

0 comments on commit 799382f

Please sign in to comment.