Skip to content

Commit c715c75

Browse files
committed
fix(eslint-plugin): [no-deprecated] support computed member access
1 parent 358c16c commit c715c75

File tree

2 files changed

+111
-0
lines changed

2 files changed

+111
-0
lines changed

packages/eslint-plugin/src/rules/no-deprecated.ts

+51
Original file line numberDiff line numberDiff line change
@@ -394,13 +394,64 @@ export default createRule<Options, MessageIds>({
394394
});
395395
}
396396

397+
function checkMemberExpression(node: TSESTree.MemberExpression): void {
398+
if (!node.computed) {
399+
return;
400+
}
401+
402+
const propertyType = services.getTypeAtLocation(node.property);
403+
404+
if (propertyType.isStringLiteral() || propertyType.isLiteral()) {
405+
const objectType = services.getTypeAtLocation(node.object);
406+
407+
let propertyName: string | undefined;
408+
409+
if (propertyType.isStringLiteral()) {
410+
propertyName = propertyType.value;
411+
} else if (typeof propertyType.value === 'string') {
412+
propertyName = propertyType.value;
413+
} else if (typeof propertyType.value === 'number') {
414+
propertyName = String(propertyType.value);
415+
}
416+
417+
if (!propertyName) {
418+
return;
419+
}
420+
421+
const property = objectType.getProperty(propertyName);
422+
423+
const reason = getJsDocDeprecation(property);
424+
if (reason == null) {
425+
return;
426+
}
427+
428+
if (typeMatchesSomeSpecifier(objectType, allow, services.program)) {
429+
return;
430+
}
431+
432+
context.report({
433+
...(reason
434+
? {
435+
messageId: 'deprecatedWithReason',
436+
data: { name: propertyName, reason },
437+
}
438+
: {
439+
messageId: 'deprecated',
440+
data: { name: propertyName },
441+
}),
442+
node: node.property,
443+
});
444+
}
445+
}
446+
397447
return {
398448
Identifier: checkIdentifier,
399449
JSXIdentifier(node): void {
400450
if (node.parent.type !== AST_NODE_TYPES.JSXClosingElement) {
401451
checkIdentifier(node);
402452
}
403453
},
454+
MemberExpression: checkMemberExpression,
404455
PrivateIdentifier: checkIdentifier,
405456
Super: checkIdentifier,
406457
};

packages/eslint-plugin/tests/rules/no-deprecated.test.ts

+60
Original file line numberDiff line numberDiff line change
@@ -2893,5 +2893,65 @@ class B extends A {
28932893
},
28942894
],
28952895
},
2896+
{
2897+
code: `
2898+
const a = {
2899+
/** @deprecated */
2900+
b: 'string',
2901+
};
2902+
2903+
const c = a['b'];
2904+
`,
2905+
errors: [
2906+
{
2907+
column: 21,
2908+
data: { name: 'b' },
2909+
endColumn: 24,
2910+
endLine: 7,
2911+
line: 7,
2912+
messageId: 'deprecated',
2913+
},
2914+
],
2915+
},
2916+
{
2917+
code: `
2918+
const a = {
2919+
/** @deprecated */
2920+
b: 'string',
2921+
};
2922+
const x = 'b';
2923+
const c = a[x];
2924+
`,
2925+
errors: [
2926+
{
2927+
column: 21,
2928+
data: { name: 'b' },
2929+
endColumn: 22,
2930+
endLine: 7,
2931+
line: 7,
2932+
messageId: 'deprecated',
2933+
},
2934+
],
2935+
},
2936+
{
2937+
code: `
2938+
const a = {
2939+
/** @deprecated */
2940+
[2]: 'string',
2941+
};
2942+
const x = 'b';
2943+
const c = a[2];
2944+
`,
2945+
errors: [
2946+
{
2947+
column: 21,
2948+
data: { name: '2' },
2949+
endColumn: 22,
2950+
endLine: 7,
2951+
line: 7,
2952+
messageId: 'deprecated',
2953+
},
2954+
],
2955+
},
28962956
],
28972957
});

0 commit comments

Comments
 (0)