Skip to content

Commit 88f69aa

Browse files
authored
Merge pull request #190 from zardoy/develop
2 parents 16b2f50 + 36ad9b9 commit 88f69aa

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.eslintrc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
"unicorn/switch-case-braces": "off",
3434
"@typescript-eslint/consistent-type-imports": "off",
3535
"@typescript-eslint/ban-types": "off",
36-
"sonarjs/prefer-single-boolean-return": "off"
36+
"sonarjs/prefer-single-boolean-return": "off",
37+
"unicorn/no-typeof-undefined": "off" // todo disable globally
3738
},
3839
"overrides": [
3940
{

typescript/src/getPatchedNavTree.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type AdditionalFeatures = Record<'arraysTuplesNumberedItems', boolean>
1010

1111
const getPatchedNavModule = (additionalFeatures: AdditionalFeatures): { getNavigationTree(...args) } => {
1212
// what is happening here: grabbing & patching NavigationBar module contents from actual running JS
13-
const tsServerPath = __TS_SEVER_PATH__ === undefined ? require.main!.filename : __TS_SEVER_PATH__
13+
const tsServerPath = typeof __TS_SEVER_PATH__ === 'undefined' ? require.main!.filename : __TS_SEVER_PATH__
1414
// current lib/tsserver.js
1515
const mainScript = nodeModules!.fs.readFileSync(tsServerPath, 'utf8')
1616
type PatchData = {

typescript/src/specialCommands/handle.ts

+7
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ export default (
132132
let targetNode: undefined | ts.Node | [number, number]
133133
if (ts.isIdentifier(node) && node.parent) {
134134
node = node.parent
135+
if (ts.isJsxExpression(node)) node = node.parent
136+
if (ts.isJsxAttributeLike(node)) node = node.parent
137+
if (ts.isJsxAttributes(node)) node = node.parent
135138
if (ts.isPropertyAssignment(node)) {
136139
targetNode = node.initializer
137140
} else if ('body' in node) {
@@ -140,6 +143,10 @@ export default (
140143
const pos = node.end
141144
targetNode = [pos, pos]
142145
}
146+
if (ts.isJsxClosingElement(node) || ts.isJsxClosingFragment(node)) {
147+
const { pos } = node
148+
targetNode = [pos, pos]
149+
}
143150
}
144151

145152
if (!targetNode) {

0 commit comments

Comments
 (0)