-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@W-17070457 Allow multi conditional !import.meta.env.SSR statements #171
Changes from 13 commits
cda4062
894a09d
ed5fd4b
d8e13b6
a460184
8405da2
5bb6865
9458166
61da9ee
a6051fe
5bcd21c
51fbf1c
db05587
54c8123
8d09a50
9a45552
8dec5dc
a414851
2f4505d
d893920
759bd26
b071787
26b8e23
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,12 +7,46 @@ | |
'use strict'; | ||
|
||
module.exports.isSSREscape = function isSSREscape(node) { | ||
return ( | ||
(node.type === 'IfStatement' || node.type === 'ConditionalExpression') && | ||
(isMetaEnvCheck(node.test) || isWindowOrDocumentCheck(node.test)) | ||
); | ||
if (node.type === 'IfStatement' || node.type === 'ConditionalExpression') { | ||
if (checkConditionalStatements(node.test) || isWindowOrDocumentCheck(node.test)) { | ||
return true; | ||
} | ||
} | ||
|
||
return false; | ||
}; | ||
|
||
function checkConditionalStatements(test) { | ||
let node = test; | ||
|
||
// Recursive Case: If the node is a logical expression, check its left and right parts. | ||
if (node.type === 'LogicalExpression' || node.type === 'BinaryExpression') { | ||
a-chabot marked this conversation as resolved.
Show resolved
Hide resolved
|
||
if (node.operator === '||') { | ||
return false; | ||
} | ||
|
||
const rightNodeConditional = checkConditionalStatements(node.right); | ||
|
||
if (!rightNodeConditional) { | ||
return checkConditionalStatements(node.left); | ||
} else if (rightNodeConditional) { | ||
return true; | ||
} | ||
a-chabot marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
// Base Case: If the node is an Identifier or MemberExpression, don't need to continue. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If the node is an There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This would be a helpful comment! 🙂 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, this |
||
if (node.type === 'Identifier' || node.type === 'MemberExpression' || node.type === 'Literal') { | ||
return false; | ||
} | ||
|
||
// Base Case: If the node is UnaryExpression, call isMetaEnvCheck(). | ||
if (node.type === 'UnaryExpression' && node.operator === '!') { | ||
return isMetaEnvCheck(node); | ||
} | ||
|
||
return false; | ||
} | ||
|
||
function isMetaEnvCheck(test) { | ||
let node = test; | ||
if (!(node.type === 'UnaryExpression' && node.operator === '!')) return false; | ||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -107,6 +107,82 @@ testRule('no-unsupported-ssr-properties', { | |||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
`, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
code: ` | ||||||||||||||||||||||||||||||||||||||||||||||
import { LightningElement } from 'lwc'; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
export default class Foo extends LightningElement { | ||||||||||||||||||||||||||||||||||||||||||||||
connectedCallback() { | ||||||||||||||||||||||||||||||||||||||||||||||
if (!import.meta.env.SSR && !randomOtherCheck) { | ||||||||||||||||||||||||||||||||||||||||||||||
this.querySelector('span').getAttribute('role'); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
`, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
code: ` | ||||||||||||||||||||||||||||||||||||||||||||||
import { LightningElement } from 'lwc'; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
export default class Foo extends LightningElement { | ||||||||||||||||||||||||||||||||||||||||||||||
connectedCallback() { | ||||||||||||||||||||||||||||||||||||||||||||||
if (!import.meta.env.SSR && randomOtherCheck) { | ||||||||||||||||||||||||||||||||||||||||||||||
this.querySelector('span').getAttribute('role'); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
`, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
code: ` | ||||||||||||||||||||||||||||||||||||||||||||||
import { LightningElement } from 'lwc'; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
export default class Foo extends LightningElement { | ||||||||||||||||||||||||||||||||||||||||||||||
connectedCallback() { | ||||||||||||||||||||||||||||||||||||||||||||||
if (randomOtherCheck && !import.meta.env.SSR) { | ||||||||||||||||||||||||||||||||||||||||||||||
this.querySelector('span').getAttribute('role'); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
`, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
code: ` | ||||||||||||||||||||||||||||||||||||||||||||||
import { LightningElement } from 'lwc'; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
export default class Foo extends LightningElement { | ||||||||||||||||||||||||||||||||||||||||||||||
connectedCallback() { | ||||||||||||||||||||||||||||||||||||||||||||||
if (!a && b && !c && d && !import.meta.env.SSR) { | ||||||||||||||||||||||||||||||||||||||||||||||
this.querySelector('span').getAttribute('role'); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
`, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
code: ` | ||||||||||||||||||||||||||||||||||||||||||||||
import { LightningElement } from 'lwc'; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
export default class Foo extends LightningElement { | ||||||||||||||||||||||||||||||||||||||||||||||
connectedCallback() { | ||||||||||||||||||||||||||||||||||||||||||||||
if (a && (b && !import.meta.env.SSR)) { | ||||||||||||||||||||||||||||||||||||||||||||||
this.querySelector('span').getAttribute('role'); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
`, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
code: ` | ||||||||||||||||||||||||||||||||||||||||||||||
import { LightningElement } from 'lwc'; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
export default class Foo extends LightningElement { | ||||||||||||||||||||||||||||||||||||||||||||||
connectedCallback() { | ||||||||||||||||||||||||||||||||||||||||||||||
return isCSR ? this.template.querySelector('button') : null; | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
`, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't look correct at all. This test is only passing because it's using
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've updated the test to be this:
Seems to pass! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure an issue was opened but we have plans to migrate all |
||||||||||||||||||||||||||||||||||||||||||||||
], | ||||||||||||||||||||||||||||||||||||||||||||||
invalid: [ | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -364,5 +440,77 @@ testRule('no-unsupported-ssr-properties', { | |||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
], | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
code: ` | ||||||||||||||||||||||||||||||||||||||||||||||
import { LightningElement } from 'lwc'; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
export default class Foo extends LightningElement { | ||||||||||||||||||||||||||||||||||||||||||||||
connectedCallback() { | ||||||||||||||||||||||||||||||||||||||||||||||
if (!a && b && !c && d) { | ||||||||||||||||||||||||||||||||||||||||||||||
this.querySelector('span').getAttribute('role'); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
`, | ||||||||||||||||||||||||||||||||||||||||||||||
errors: [ | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
messageId: 'propertyAccessFound', | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
code: ` | ||||||||||||||||||||||||||||||||||||||||||||||
import { LightningElement } from 'lwc'; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
export default class Foo extends LightningElement { | ||||||||||||||||||||||||||||||||||||||||||||||
connectedCallback() { | ||||||||||||||||||||||||||||||||||||||||||||||
if (a && (b || !import.meta.env.SSR)) { | ||||||||||||||||||||||||||||||||||||||||||||||
this.querySelector('span').getAttribute('role'); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
`, | ||||||||||||||||||||||||||||||||||||||||||||||
errors: [ | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
messageId: 'propertyAccessFound', | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
code: ` | ||||||||||||||||||||||||||||||||||||||||||||||
import { LightningElement } from 'lwc'; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
export default class Foo extends LightningElement { | ||||||||||||||||||||||||||||||||||||||||||||||
connectedCallback() { | ||||||||||||||||||||||||||||||||||||||||||||||
if (a || (b || !import.meta.env.SSR)) { | ||||||||||||||||||||||||||||||||||||||||||||||
this.querySelector('span').getAttribute('role'); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
`, | ||||||||||||||||||||||||||||||||||||||||||||||
errors: [ | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
messageId: 'propertyAccessFound', | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
code: ` | ||||||||||||||||||||||||||||||||||||||||||||||
import { LightningElement } from 'lwc'; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
export default class Foo extends LightningElement { | ||||||||||||||||||||||||||||||||||||||||||||||
connectedCallback() { | ||||||||||||||||||||||||||||||||||||||||||||||
if (a || (b && !import.meta.env.SSR)) { | ||||||||||||||||||||||||||||||||||||||||||||||
this.querySelector('span').getAttribute('role'); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
`, | ||||||||||||||||||||||||||||||||||||||||||||||
errors: [ | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
messageId: 'propertyAccessFound', | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
], | ||||||||||||||||||||||||||||||||||||||||||||||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since
typeof window !== 'undefined'
is basically the same as!import.meta.env.SSR
, I think we should handle the recursive case here too: