mirror of
https://github.com/zebrajr/react.git
synced 2025-12-07 00:20:28 +01:00
This PR updates the eslint plugin to report unused opt out directives.
One of the downsides of the opt out directive is that it opts the
component/hook out of compilation forever, even if the underlying issue
was fixed in product code or fixed in the compiler.
ghstack-source-id: 81deb5c11b
Pull Request resolved: https://github.com/facebook/react/pull/30721
289 lines
7.7 KiB
TypeScript
289 lines
7.7 KiB
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import {ErrorSeverity} from 'babel-plugin-react-compiler/src';
|
|
import {RuleTester as ESLintTester} from 'eslint';
|
|
import ReactCompilerRule from '../src/rules/ReactCompilerRule';
|
|
|
|
/**
|
|
* A string template tag that removes padding from the left side of multi-line strings
|
|
* @param {Array} strings array of code strings (only one expected)
|
|
*/
|
|
function normalizeIndent(strings: TemplateStringsArray): string {
|
|
const codeLines = strings[0].split('\n');
|
|
const leftPadding = codeLines[1].match(/\s+/)![0];
|
|
return codeLines.map(line => line.slice(leftPadding.length)).join('\n');
|
|
}
|
|
|
|
type CompilerTestCases = {
|
|
valid: ESLintTester.ValidTestCase[];
|
|
invalid: ESLintTester.InvalidTestCase[];
|
|
};
|
|
|
|
const tests: CompilerTestCases = {
|
|
valid: [
|
|
{
|
|
name: 'Basic example',
|
|
code: normalizeIndent`
|
|
function foo(x, y) {
|
|
if (x) {
|
|
return foo(false, y);
|
|
}
|
|
return [y * 10];
|
|
}
|
|
`,
|
|
},
|
|
{
|
|
name: 'Violation with Flow suppression',
|
|
code: `
|
|
// Valid since error already suppressed with flow.
|
|
function useHookWithHook() {
|
|
if (cond) {
|
|
// $FlowFixMe[react-rule-hook]
|
|
useConditionalHook();
|
|
}
|
|
}
|
|
`,
|
|
},
|
|
{
|
|
name: 'Basic example with component syntax',
|
|
code: normalizeIndent`
|
|
export default component HelloWorld(
|
|
text: string = 'Hello!',
|
|
onClick: () => void,
|
|
) {
|
|
return <div onClick={onClick}>{text}</div>;
|
|
}
|
|
`,
|
|
},
|
|
{
|
|
name: 'Unsupported syntax',
|
|
code: normalizeIndent`
|
|
function foo(x) {
|
|
var y = 1;
|
|
return y * x;
|
|
}
|
|
`,
|
|
},
|
|
{
|
|
// OK because invariants are only meant for the compiler team's consumption
|
|
name: '[Invariant] Defined after use',
|
|
code: normalizeIndent`
|
|
function Component(props) {
|
|
let y = function () {
|
|
m(x);
|
|
};
|
|
|
|
let x = { a };
|
|
m(x);
|
|
return y;
|
|
}
|
|
`,
|
|
},
|
|
{
|
|
name: "Classes don't throw",
|
|
code: normalizeIndent`
|
|
class Foo {
|
|
#bar() {}
|
|
}
|
|
`,
|
|
},
|
|
{
|
|
// Don't report the issue if Flow already has
|
|
name: '[InvalidInput] Ref access during render',
|
|
code: normalizeIndent`
|
|
function Component(props) {
|
|
const ref = useRef(null);
|
|
// $FlowFixMe[react-rule-unsafe-ref]
|
|
const value = ref.current;
|
|
return value;
|
|
}
|
|
`,
|
|
},
|
|
],
|
|
invalid: [
|
|
{
|
|
name: '[InvalidInput] Ref access during render',
|
|
code: normalizeIndent`
|
|
function Component(props) {
|
|
const ref = useRef(null);
|
|
const value = ref.current;
|
|
return value;
|
|
}
|
|
`,
|
|
errors: [
|
|
{
|
|
message:
|
|
'Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef)',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: 'Reportable levels can be configured',
|
|
options: [{reportableLevels: new Set([ErrorSeverity.Todo])}],
|
|
code: normalizeIndent`
|
|
function Foo(x) {
|
|
var y = 1;
|
|
return <div>{y * x}</div>;
|
|
}`,
|
|
errors: [
|
|
{
|
|
message:
|
|
'(BuildHIR::lowerStatement) Handle var kinds in VariableDeclaration',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: '[InvalidReact] ESlint suppression',
|
|
// Indentation is intentionally weird so it doesn't add extra whitespace
|
|
code: normalizeIndent`
|
|
function Component(props) {
|
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
return <div>{props.foo}</div>;
|
|
}`,
|
|
errors: [
|
|
{
|
|
message:
|
|
'React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior',
|
|
suggestions: [
|
|
{
|
|
output: normalizeIndent`
|
|
function Component(props) {
|
|
|
|
return <div>{props.foo}</div>;
|
|
}`,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
message:
|
|
"Definition for rule 'react-hooks/rules-of-hooks' was not found.",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: 'Multiple diagnostics are surfaced',
|
|
options: [
|
|
{
|
|
reportableLevels: new Set([
|
|
ErrorSeverity.Todo,
|
|
ErrorSeverity.InvalidReact,
|
|
]),
|
|
},
|
|
],
|
|
code: normalizeIndent`
|
|
function Foo(x) {
|
|
var y = 1;
|
|
return <div>{y * x}</div>;
|
|
}
|
|
function Bar(props) {
|
|
props.a.b = 2;
|
|
return <div>{props.c}</div>
|
|
}`,
|
|
errors: [
|
|
{
|
|
message:
|
|
'(BuildHIR::lowerStatement) Handle var kinds in VariableDeclaration',
|
|
},
|
|
{
|
|
message:
|
|
'Mutating component props or hook arguments is not allowed. Consider using a local variable instead',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: 'Test experimental/unstable report all bailouts mode',
|
|
options: [
|
|
{
|
|
reportableLevels: new Set([ErrorSeverity.InvalidReact]),
|
|
__unstable_donotuse_reportAllBailouts: true,
|
|
},
|
|
],
|
|
code: normalizeIndent`
|
|
function Foo(x) {
|
|
var y = 1;
|
|
return <div>{y * x}</div>;
|
|
}`,
|
|
errors: [
|
|
{
|
|
message:
|
|
'[ReactCompilerBailout] (BuildHIR::lowerStatement) Handle var kinds in VariableDeclaration (@:3:2)',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: "'use no forget' does not disable eslint rule",
|
|
code: normalizeIndent`
|
|
let count = 0;
|
|
function Component() {
|
|
'use no forget';
|
|
count = count + 1;
|
|
return <div>Hello world {count}</div>
|
|
}
|
|
`,
|
|
errors: [
|
|
{
|
|
message:
|
|
'Unexpected reassignment of a variable which was defined outside of the component. Components and hooks should be pure and side-effect free, but variable reassignment is a form of side-effect. If this variable is used in rendering, use useState instead. (https://react.dev/reference/rules/components-and-hooks-must-be-pure#side-effects-must-run-outside-of-render)',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: "Unused 'use no forget' directive is reported when no errors are present on components",
|
|
code: normalizeIndent`
|
|
function Component() {
|
|
'use no forget';
|
|
return <div>Hello world</div>
|
|
}
|
|
`,
|
|
errors: [
|
|
{
|
|
message: "Unused 'use no forget' directive",
|
|
suggestions: [
|
|
{
|
|
output:
|
|
// yuck
|
|
'\nfunction Component() {\n \n return <div>Hello world</div>\n}\n',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: "Unused 'use no forget' directive is reported when no errors are present on non-components or hooks",
|
|
code: normalizeIndent`
|
|
function notacomponent() {
|
|
'use no forget';
|
|
return 1 + 1;
|
|
}
|
|
`,
|
|
errors: [
|
|
{
|
|
message: "Unused 'use no forget' directive",
|
|
suggestions: [
|
|
{
|
|
output:
|
|
// yuck
|
|
'\nfunction notacomponent() {\n \n return 1 + 1;\n}\n',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
const eslintTester = new ESLintTester({
|
|
parser: require.resolve('hermes-eslint'),
|
|
parserOptions: {
|
|
ecmaVersion: 2015,
|
|
sourceType: 'module',
|
|
enableExperimentalComponentSyntax: true,
|
|
},
|
|
});
|
|
eslintTester.run('react-compiler', ReactCompilerRule, tests);
|