Skip to content

Commit 0cf84ae

Browse files
hugop95azat-io
authored andcommittedNov 19, 2024
fix(sort-classes): fix # properties not being detected as dependencies
1 parent 4369803 commit 0cf84ae

File tree

2 files changed

+74
-18
lines changed

2 files changed

+74
-18
lines changed
 

‎rules/sort-classes.ts

+26-18
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,12 @@ export default createEslintRule<SortClassesOptions, MESSAGE_ID>({
193193
let sourceCode = getSourceCode(context)
194194
let className = node.parent.id?.name
195195

196-
let getDependencyName = (nodeName: string, isStatic: boolean) =>
197-
`${isStatic ? 'static ' : ''}${nodeName}`
196+
let getDependencyName = (props: {
197+
nodeNameWithoutStartingHash: string
198+
isPrivateHash: boolean
199+
isStatic: boolean
200+
}) =>
201+
`${props.isStatic ? 'static ' : ''}${props.isPrivateHash ? '#' : ''}${props.nodeNameWithoutStartingHash}`
198202

199203
/**
200204
* Class methods should not be considered as dependencies
@@ -208,7 +212,11 @@ export default createEslintRule<SortClassesOptions, MESSAGE_ID>({
208212
member.type === 'TSAbstractMethodDefinition') &&
209213
'name' in member.key
210214
) {
211-
return getDependencyName(member.key.name, member.static)
215+
return getDependencyName({
216+
nodeNameWithoutStartingHash: member.key.name,
217+
isStatic: member.static,
218+
isPrivateHash: member.key.type === 'PrivateIdentifier',
219+
})
212220
}
213221
return null
214222
})
@@ -227,14 +235,16 @@ export default createEslintRule<SortClassesOptions, MESSAGE_ID>({
227235
(nodeValue.object.type === 'ThisExpression' ||
228236
(nodeValue.object.type === 'Identifier' &&
229237
nodeValue.object.name === className)) &&
230-
nodeValue.property.type === 'Identifier'
238+
(nodeValue.property.type === 'Identifier' ||
239+
nodeValue.property.type === 'PrivateIdentifier')
231240
) {
232241
let isStaticDependency =
233242
isMemberStatic || nodeValue.object.type === 'Identifier'
234-
let dependencyName = getDependencyName(
235-
nodeValue.property.name,
236-
isStaticDependency,
237-
)
243+
let dependencyName = getDependencyName({
244+
nodeNameWithoutStartingHash: nodeValue.property.name,
245+
isStatic: isStaticDependency,
246+
isPrivateHash: nodeValue.property.type === 'PrivateIdentifier',
247+
})
238248
if (!classMethodsDependencyNames.has(dependencyName)) {
239249
dependencies.push(dependencyName)
240250
}
@@ -563,20 +573,18 @@ export default createEslintRule<SortClassesOptions, MESSAGE_ID>({
563573
dependencies,
564574
name,
565575
addSafetySemicolonWhenInline,
566-
dependencyName: getDependencyName(
567-
name,
568-
modifiers.includes('static'),
569-
),
576+
dependencyName: getDependencyName({
577+
nodeNameWithoutStartingHash: name.startsWith('#')
578+
? name.slice(1)
579+
: name,
580+
isPrivateHash,
581+
isStatic: modifiers.includes('static'),
582+
}),
570583
}
571584

572585
let comments = getCommentsBefore(member, sourceCode)
573586
let lastMember = accumulator.at(-1)?.at(-1)
574-
if (
575-
options.partitionByComment &&
576-
hasPartitionComment(options.partitionByComment, comments)
577-
) {
578-
accumulator.push([])
579-
}
587+
580588
if (
581589
(options.partitionByNewLine &&
582590
lastMember &&

‎test/sort-classes.test.ts

+48
Original file line numberDiff line numberDiff line change
@@ -3612,6 +3612,54 @@ describe(ruleName, () => {
36123612
},
36133613
)
36143614

3615+
ruleTester.run(`${ruleName}(${type}): detects # dependencies`, rule, {
3616+
valid: [
3617+
{
3618+
code: dedent`
3619+
class Class {
3620+
static a = Class.a
3621+
static b = 1
3622+
static #b = 1
3623+
static #a = this.#b
3624+
}
3625+
`,
3626+
options: [
3627+
{
3628+
...options,
3629+
},
3630+
],
3631+
},
3632+
{
3633+
code: dedent`
3634+
class Class {
3635+
static #b = () => 1
3636+
static #a = this.#b()
3637+
}
3638+
`,
3639+
options: [
3640+
{
3641+
...options,
3642+
},
3643+
],
3644+
},
3645+
{
3646+
code: dedent`
3647+
class Class {
3648+
static #a = this.#b()
3649+
static #b() {}
3650+
}
3651+
`,
3652+
options: [
3653+
{
3654+
...options,
3655+
groups: ['unknown'],
3656+
},
3657+
],
3658+
},
3659+
],
3660+
invalid: [],
3661+
})
3662+
36153663
ruleTester.run(
36163664
`${ruleName}(${type}) separates static from non-static dependencies`,
36173665
rule,

0 commit comments

Comments
 (0)
Please sign in to comment.