You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
/** |
|
* @fileoverview Prevent usage of findDOMNode |
|
* @author Yannick Croissant |
|
*/ |
|
|
|
'use strict'; |
|
|
|
const docsUrl = require('../util/docsUrl'); |
|
|
|
// ------------------------------------------------------------------------------ |
|
// Rule Definition |
|
// ------------------------------------------------------------------------------ |
|
|
|
module.exports = { |
|
meta: { |
|
docs: { |
|
description: 'Prevent usage of findDOMNode', |
|
category: 'Best Practices', |
|
recommended: true, |
|
url: docsUrl('no-find-dom-node') |
|
}, |
|
schema: [] |
|
}, |
|
|
|
create(context) { |
|
// -------------------------------------------------------------------------- |
|
// Public |
|
// -------------------------------------------------------------------------- |
|
|
|
return { |
|
|
|
CallExpression(node) { |
|
const callee = node.callee; |
|
|
|
const isfindDOMNode = (callee.name === 'findDOMNode') || |
|
(callee.property && callee.property.name === 'findDOMNode'); |
|
if (!isfindDOMNode) { |
|
return; |
|
} |
|
|
|
context.report({ |
|
node: callee, |
|
message: 'Do not use findDOMNode' |
|
}); |
|
} |
|
}; |
|
} |
|
};
|
|
|