Skip to content

Commit

Permalink
[Fix] no-unstable-components: improve handling of objects containin…
Browse files Browse the repository at this point in the history
…g render function properties
  • Loading branch information
fizwidget committed Oct 23, 2021
1 parent 8a0b352 commit 11bb9c9
Show file tree
Hide file tree
Showing 2 changed files with 152 additions and 1 deletion.
20 changes: 19 additions & 1 deletion lib/rules/no-unstable-nested-components.js
Expand Up @@ -105,6 +105,19 @@ function isJSXAttributeOfExpressionContainerMatcher(node) {
);
}

/**
* Matcher used to check whether given node is an object `Property`
* @param {ASTNode} node The AST node
* @returns {Boolean} True if node is a `Property`, false if not
*/
function isPropertyOfObjectExpressionMatcher(node) {
return (
node
&& node.parent
&& node.parent.type === 'Property'
);
}

/**
* Matcher used to check whether given node is a `CallExpression`
* @param {ASTNode} node The AST node
Expand Down Expand Up @@ -358,14 +371,19 @@ module.exports = {
}

/**
* Check whether given node is declared inside a component prop.
* Check whether given node is declared inside a component/object prop.
* ```jsx
* <Component footer={() => <div />} />
* { footer: () => <div /> }
* ```
* @param {ASTNode} node The AST node being checked
* @returns {Boolean} True if node is a component declared inside prop, false if not
*/
function isComponentInProp(node) {
if (isPropertyOfObjectExpressionMatcher(node)) {
return utils.isReturningJSX(node);
}

const jsxAttribute = getClosestMatchingParent(node, context, isJSXAttributeOfExpressionContainerMatcher);

if (!jsxAttribute) {
Expand Down
133 changes: 133 additions & 0 deletions tests/lib/rules/no-unstable-nested-components.js
Expand Up @@ -383,6 +383,78 @@ ruleTester.run('no-unstable-nested-components', rule, {
`,
options: [{ allowAsProps: true }],
},
{
code: `
function ParentComponent() {
return (
<SomeComponent>
{
thing.match({
renderLoading: () => <div />,
renderSuccess: () => <div />,
renderFailure: () => <div />,
})
}
</SomeComponent>
)
}
`,
},
{
code: `
function ParentComponent() {
const thingElement = thing.match({
renderLoading: () => <div />,
renderSuccess: () => <div />,
renderFailure: () => <div />,
});
return (
<SomeComponent>
{thingElement}
</SomeComponent>
)
}
`,
},
{
code: `
function ParentComponent() {
return (
<SomeComponent>
{
thing.match({
loading: () => <div />,
success: () => <div />,
failure: () => <div />,
})
}
</SomeComponent>
)
}
`,
options: [{
allowAsProps: true,
}],
},
{
code: `
function ParentComponent() {
const thingElement = thing.match({
loading: () => <div />,
success: () => <div />,
failure: () => <div />,
});
return (
<SomeComponent>
{thingElement}
</SomeComponent>
)
}
`,
options: [{
allowAsProps: true,
}],
},
{
code: `
function ParentComponent() {
Expand Down Expand Up @@ -500,6 +572,9 @@ ruleTester.run('no-unstable-nested-components', rule, {
return <Table rows={rows} />;
}
`,
options: [{
allowAsProps: true,
}],
},
/* TODO These minor cases are currently falsely marked due to component detection
{
Expand Down Expand Up @@ -1042,5 +1117,63 @@ ruleTester.run('no-unstable-nested-components', rule, {
// Only a single error should be shown. This can get easily marked twice.
errors: [{ message: ERROR_MESSAGE }],
},
{
code: `
function ParentComponent() {
return (
<SomeComponent>
{
thing.match({
loading: () => <div />,
success: () => <div />,
failure: () => <div />,
})
}
</SomeComponent>
)
}
`,
errors: [
{ message: ERROR_MESSAGE_COMPONENT_AS_PROPS },
{ message: ERROR_MESSAGE_COMPONENT_AS_PROPS },
{ message: ERROR_MESSAGE_COMPONENT_AS_PROPS },
],
},
{
code: `
function ParentComponent() {
const thingElement = thing.match({
loading: () => <div />,
success: () => <div />,
failure: () => <div />,
});
return (
<SomeComponent>
{thingElement}
</SomeComponent>
)
}
`,
errors: [
{ message: ERROR_MESSAGE_COMPONENT_AS_PROPS },
{ message: ERROR_MESSAGE_COMPONENT_AS_PROPS },
{ message: ERROR_MESSAGE_COMPONENT_AS_PROPS },
],
},
{
code: `
function ParentComponent() {
const rows = [
{
name: 'A',
notPrefixedWithRender: (props) => <Row {...props} />
},
];
return <Table rows={rows} />;
}
`,
errors: [{ message: ERROR_MESSAGE_COMPONENT_AS_PROPS }],
},
]),
});

0 comments on commit 11bb9c9

Please sign in to comment.