12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /**
- * @fileoverview Prevent usage of isMounted
- * @author Joe Lencioni
- */
- 'use strict';
- const docsUrl = require('../util/docsUrl');
- // ------------------------------------------------------------------------------
- // Rule Definition
- // ------------------------------------------------------------------------------
- module.exports = {
- meta: {
- docs: {
- description: 'Prevent usage of isMounted',
- category: 'Best Practices',
- recommended: true,
- url: docsUrl('no-is-mounted')
- },
- messages: {
- noIsMounted: 'Do not use isMounted'
- },
- schema: []
- },
- create(context) {
- // --------------------------------------------------------------------------
- // Public
- // --------------------------------------------------------------------------
- return {
- CallExpression(node) {
- const callee = node.callee;
- if (callee.type !== 'MemberExpression') {
- return;
- }
- if (callee.object.type !== 'ThisExpression' || callee.property.name !== 'isMounted') {
- return;
- }
- const ancestors = context.getAncestors(callee);
- for (let i = 0, j = ancestors.length; i < j; i++) {
- if (ancestors[i].type === 'Property' || ancestors[i].type === 'MethodDefinition') {
- context.report({
- node: callee,
- messageId: 'noIsMounted'
- });
- break;
- }
- }
- }
- };
- }
- };
|