@teambit/typescript 1.0.106 → 1.0.108

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. package/compiler-options.ts +27 -0
  2. package/dedupe-path.spec.ts +34 -0
  3. package/dist/cmds/write-tsconfig.cmd.d.ts +2 -2
  4. package/dist/compiler-options.d.ts +2 -2
  5. package/dist/extractor-options.d.ts +1 -1
  6. package/dist/identifier-list.d.ts +1 -1
  7. package/dist/identifier.d.ts +3 -3
  8. package/dist/{preview-1703505948637.js → preview-1703647408454.js} +2 -2
  9. package/dist/schema-extractor-context.d.ts +11 -11
  10. package/dist/schema-extractor-context.js +13 -17
  11. package/dist/schema-extractor-context.js.map +1 -1
  12. package/dist/schema-transformer.d.ts +2 -2
  13. package/dist/sourceFileTransformers/export.js +1 -2
  14. package/dist/sourceFileTransformers/export.js.map +1 -1
  15. package/dist/sourceFileTransformers/function.js +2 -3
  16. package/dist/sourceFileTransformers/function.js.map +1 -1
  17. package/dist/sourceFileTransformers/import.js +1 -2
  18. package/dist/sourceFileTransformers/import.js.map +1 -1
  19. package/dist/sourceFileTransformers/index.d.ts +1 -1
  20. package/dist/sourceFileTransformers/transform.js +1 -1
  21. package/dist/sourceFileTransformers/transform.js.map +1 -1
  22. package/dist/transformers/binding-element.js +1 -2
  23. package/dist/transformers/binding-element.js.map +1 -1
  24. package/dist/transformers/class-declaration.js +3 -6
  25. package/dist/transformers/class-declaration.js.map +1 -1
  26. package/dist/transformers/constructor.js +3 -4
  27. package/dist/transformers/constructor.js.map +1 -1
  28. package/dist/transformers/enum-declaration.js +1 -2
  29. package/dist/transformers/enum-declaration.js.map +1 -1
  30. package/dist/transformers/export-declaration.js +5 -7
  31. package/dist/transformers/export-declaration.js.map +1 -1
  32. package/dist/transformers/function-like.js +5 -8
  33. package/dist/transformers/function-like.js.map +1 -1
  34. package/dist/transformers/get-accessor.js +1 -2
  35. package/dist/transformers/get-accessor.js.map +1 -1
  36. package/dist/transformers/import-declaration.js +2 -3
  37. package/dist/transformers/import-declaration.js.map +1 -1
  38. package/dist/transformers/interface-declaration.js +1 -2
  39. package/dist/transformers/interface-declaration.js.map +1 -1
  40. package/dist/transformers/parameter.js +1 -2
  41. package/dist/transformers/parameter.js.map +1 -1
  42. package/dist/transformers/property-declaration.js +1 -2
  43. package/dist/transformers/property-declaration.js.map +1 -1
  44. package/dist/transformers/source-file-transformer.js +3 -5
  45. package/dist/transformers/source-file-transformer.js.map +1 -1
  46. package/dist/transformers/utils/jsdoc-to-doc-schema.js +2 -4
  47. package/dist/transformers/utils/jsdoc-to-doc-schema.js.map +1 -1
  48. package/dist/transformers/utils/parse-type-from-quick-info.js +1 -2
  49. package/dist/transformers/utils/parse-type-from-quick-info.js.map +1 -1
  50. package/dist/transformers/variable-declaration.js +8 -12
  51. package/dist/transformers/variable-declaration.js.map +1 -1
  52. package/dist/tsconfig-writer.d.ts +2 -2
  53. package/dist/tsconfig-writer.js +1 -4
  54. package/dist/tsconfig-writer.js.map +1 -1
  55. package/dist/typescript.composition.d.ts +2 -2
  56. package/dist/typescript.extractor.d.ts +3 -3
  57. package/dist/typescript.extractor.js +5 -7
  58. package/dist/typescript.extractor.js.map +1 -1
  59. package/dist/typescript.main.runtime.d.ts +7 -7
  60. package/dist/typescript.main.runtime.js +1 -2
  61. package/dist/typescript.main.runtime.js.map +1 -1
  62. package/dist/typescript.parser.js +7 -8
  63. package/dist/typescript.parser.js.map +1 -1
  64. package/dist/typescript.parser.spec.js +12 -15
  65. package/dist/typescript.parser.spec.js.map +1 -1
  66. package/export-identifier.ts +14 -0
  67. package/extractor-options.ts +21 -0
  68. package/identifier-list.ts +14 -0
  69. package/identifier.ts +23 -0
  70. package/index.ts +14 -0
  71. package/package.json +27 -34
  72. package/remove-types-task.ts +33 -0
  73. package/schema-extractor-context.ts +625 -0
  74. package/schema-transformer.plugin.ts +14 -0
  75. package/schema-transformer.ts +23 -0
  76. package/transform-source-file.spec.ts +155 -0
  77. package/tsconfig-writer.ts +249 -0
  78. package/tsconfig.json +16 -21
  79. package/types/asset.d.ts +15 -3
  80. package/typescript.aspect.ts +5 -0
  81. package/typescript.compiler.spec.ts +63 -0
  82. package/typescript.compiler.ts +286 -0
  83. package/typescript.extractor.ts +247 -0
  84. package/typescript.main.runtime.ts +442 -0
  85. package/typescript.parser.spec.ts +221 -0
  86. package/typescript.parser.ts +123 -0
@@ -0,0 +1,27 @@
1
+ import type { CompilerOptions } from '@teambit/compiler';
2
+
3
+ export type TypeScriptCompilerOptions = {
4
+ /**
5
+ * tsconfig to use during compilation.
6
+ */
7
+ tsconfig: Record<string, any>;
8
+
9
+ /**
10
+ * path for .d.ts files to include during build.
11
+ */
12
+ types: string[];
13
+
14
+ /**
15
+ * Run the compiler for .js files. this will only affect whether to run the compiler on the files
16
+ * or not. It won't change the tsconfig to support or not support js files.
17
+ */
18
+ compileJs?: boolean;
19
+
20
+ /**
21
+ * Run the compiler for .js files. this will only affect whether to run the compiler on the files
22
+ * or not. It won't change the tsconfig to support or not support jsx files.
23
+ */
24
+ compileJsx?: boolean;
25
+ } & Partial<CompilerOptions>;
26
+
27
+ export type TsCompilerOptionsWithoutTsConfig = Omit<TypeScriptCompilerOptions, 'tsconfig'>;
@@ -0,0 +1,34 @@
1
+ import { dedupePaths } from './tsconfig-writer';
2
+
3
+ describe('dedupePath', () => {
4
+ it('should return the root-dir if there is only one env involved', () => {
5
+ const input = [{ ids: ['env1'], paths: ['p1/e1, p2'] }];
6
+ const output = dedupePaths(input);
7
+ expect(output).toEqual([{ ids: ['env1'], paths: ['.'] }]);
8
+ });
9
+ it('should set the env with the most components', () => {
10
+ const input = [
11
+ { ids: ['env1'], paths: ['p1/e1', 'p1/e2'] },
12
+ { ids: ['env2'], paths: ['p1/e3'] },
13
+ ];
14
+ const output = dedupePaths(input);
15
+ // @ts-ignore
16
+ expect(output).toEqual(
17
+ // @ts-ignore
18
+ expect.arrayContaining([
19
+ { ids: ['env1'], paths: ['.'] },
20
+ { ids: ['env2'], paths: ['p1/e3'] },
21
+ ])
22
+ );
23
+ });
24
+ it('should not set any env to a shared dir if it no env has max components', () => {
25
+ const input = [
26
+ { ids: ['env1'], paths: ['p1/e1'] },
27
+ { ids: ['env2'], paths: ['p1/e2'] },
28
+ ];
29
+ const output = dedupePaths(input);
30
+ expect(output.length).toEqual(2);
31
+ // @ts-ignore
32
+ expect(output).toEqual(expect.arrayContaining(input));
33
+ });
34
+ });
@@ -1,7 +1,7 @@
1
1
  /// <reference types="lodash" />
2
2
  import { Command, CommandOptions } from '@teambit/cli';
3
3
  import { TypescriptMain } from '../typescript.main.runtime';
4
- declare type Flags = {
4
+ type Flags = {
5
5
  dryRun?: boolean;
6
6
  noDedupe?: boolean;
7
7
  dryRunWithTsconfig?: boolean;
@@ -19,7 +19,7 @@ export default class WriteTsconfigCmd implements Command {
19
19
  constructor(tsMain: TypescriptMain);
20
20
  report(_args: any, flags: Flags): Promise<string>;
21
21
  json(_args: any, flags: Flags): Promise<{
22
- cleanResults: string[] | undefined;
22
+ cleanResults: string[];
23
23
  writeResults: import("lodash").Omit<import("../tsconfig-writer").TsconfigPathsPerEnv, "tsconfig">[];
24
24
  }>;
25
25
  }
@@ -1,5 +1,5 @@
1
1
  import type { CompilerOptions } from '@teambit/compiler';
2
- export declare type TypeScriptCompilerOptions = {
2
+ export type TypeScriptCompilerOptions = {
3
3
  /**
4
4
  * tsconfig to use during compilation.
5
5
  */
@@ -19,4 +19,4 @@ export declare type TypeScriptCompilerOptions = {
19
19
  */
20
20
  compileJsx?: boolean;
21
21
  } & Partial<CompilerOptions>;
22
- export declare type TsCompilerOptionsWithoutTsConfig = Omit<TypeScriptCompilerOptions, 'tsconfig'>;
22
+ export type TsCompilerOptionsWithoutTsConfig = Omit<TypeScriptCompilerOptions, 'tsconfig'>;
@@ -1,4 +1,4 @@
1
- export declare type ExtractorOptions = {
1
+ export type ExtractorOptions = {
2
2
  /**
3
3
  * name of the string.
4
4
  */
@@ -2,6 +2,6 @@ import { Identifier } from './identifier';
2
2
  export declare class IdentifierList {
3
3
  readonly identifiers: Identifier[];
4
4
  constructor(identifiers: Identifier[]);
5
- find(identifier: Identifier): Identifier | undefined;
5
+ find(identifier: Identifier): Identifier;
6
6
  includes(identifier: Identifier): boolean;
7
7
  }
@@ -1,9 +1,9 @@
1
1
  export declare class Identifier {
2
2
  readonly id: string;
3
3
  readonly filePath: string;
4
- readonly aliasId?: string | undefined;
5
- readonly sourceFilePath?: string | undefined;
6
- constructor(id: string, filePath: string, aliasId?: string | undefined, sourceFilePath?: string | undefined);
4
+ readonly aliasId?: string;
5
+ readonly sourceFilePath?: string;
6
+ constructor(id: string, filePath: string, aliasId?: string, sourceFilePath?: string);
7
7
  isEqual(identifier: Identifier): boolean;
8
8
  static isDefault(identifier: Identifier): boolean;
9
9
  }
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.typescript_typescript@1.0.106/dist/typescript.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.typescript_typescript@1.0.106/dist/typescript.docs.mdx';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.typescript_typescript@1.0.108/dist/typescript.composition.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.typescript_typescript@1.0.108/dist/typescript.docs.mdx';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
@@ -15,7 +15,7 @@ export declare class SchemaExtractorContext {
15
15
  readonly componentDeps: ComponentDependency[];
16
16
  readonly componentRootPath: string;
17
17
  readonly hostRootPath: string;
18
- readonly formatter?: Formatter | undefined;
18
+ readonly formatter?: Formatter;
19
19
  /**
20
20
  * list of all declared identifiers (exported and internal) by filename
21
21
  */
@@ -30,8 +30,8 @@ export declare class SchemaExtractorContext {
30
30
  get internalIdentifiers(): Map<string, IdentifierList>;
31
31
  get computed(): Map<string, SchemaNode>;
32
32
  get mainFileIdentifierKey(): string;
33
- get mainModuleIdentifiers(): IdentifierList | undefined;
34
- constructor(tsserver: TsserverClient, component: Component, extractor: TypeScriptExtractor, componentDeps: ComponentDependency[], componentRootPath: string, hostRootPath: string, formatter?: Formatter | undefined);
33
+ get mainModuleIdentifiers(): IdentifierList;
34
+ constructor(tsserver: TsserverClient, component: Component, extractor: TypeScriptExtractor, componentDeps: ComponentDependency[], componentRootPath: string, hostRootPath: string, formatter?: Formatter);
35
35
  getComputedNodeKey({ filePath, line, character }: Location): string;
36
36
  getIdentifierKeyForNode(node: Node): string;
37
37
  getIdentifierKey(filePath: string): string;
@@ -50,7 +50,7 @@ export declare class SchemaExtractorContext {
50
50
  /**
51
51
  * returns a signature for a node.
52
52
  */
53
- getSignature(node: Node): Promise<protocol.SignatureHelpResponse | undefined>;
53
+ getSignature(node: Node): Promise<protocol.SignatureHelpResponse>;
54
54
  /**
55
55
  * get the position for the tsserver.
56
56
  */
@@ -59,24 +59,24 @@ export declare class SchemaExtractorContext {
59
59
  * get the path for a source file.
60
60
  */
61
61
  getPath(node: Node): string;
62
- getQuickInfo(node: Node): Promise<protocol.QuickInfoResponse | undefined>;
62
+ getQuickInfo(node: Node): Promise<protocol.QuickInfoResponse>;
63
63
  getQuickInfoDisplayString(node: Node): Promise<string>;
64
64
  /**
65
65
  * returns the type definition for a type.
66
66
  */
67
- typeDefinition(node: Node): Promise<protocol.TypeDefinitionResponse | undefined>;
67
+ typeDefinition(node: Node): Promise<protocol.TypeDefinitionResponse>;
68
68
  visitTypeDefinition(): void;
69
69
  private getPathWithoutExtension;
70
70
  private isIndexFile;
71
- findFileInComponent(filePath: string): import("@teambit/legacy/dist/consumer/component/sources").AbstractVinyl | undefined;
71
+ findFileInComponent(filePath: string): import("@teambit/legacy/dist/consumer/component/sources").AbstractVinyl;
72
72
  private parsePackageNameFromPath;
73
73
  /**
74
74
  * return the file if part of the component.
75
75
  * otherwise, a reference to the target package and the type name.
76
76
  */
77
- getSourceFileInsideComponent(filePath: string): ts.SourceFile | undefined;
78
- getSourceFileFromNode(node: Node): Promise<ts.SourceFile | undefined>;
79
- getFilePathByNode(node: Node): Promise<string | undefined>;
77
+ getSourceFileInsideComponent(filePath: string): ts.SourceFile;
78
+ getSourceFileFromNode(node: Node): Promise<ts.SourceFile>;
79
+ getFilePathByNode(node: Node): Promise<string>;
80
80
  definitionInfo(node: Node): Promise<protocol.DefinitionInfo | undefined>;
81
81
  /**
82
82
  * get a definition for a given node.
@@ -101,7 +101,7 @@ export declare class SchemaExtractorContext {
101
101
  * helpful. (couldn't find a rule when to use each one. e.g. "VariableDeclaration" sometimes has data only in
102
102
  * "definition" but it's not clear when/why).
103
103
  */
104
- getDefinition(node: Node): Promise<protocol.FileSpanWithContext | undefined>;
104
+ getDefinition(node: Node): Promise<protocol.FileSpanWithContext>;
105
105
  private unknownExactType;
106
106
  private isDefInSameLocation;
107
107
  /**
@@ -255,9 +255,8 @@ class SchemaExtractorContext {
255
255
  }
256
256
  }
257
257
  async getQuickInfoDisplayString(node) {
258
- var _quickInfo$body;
259
258
  const quickInfo = await this.getQuickInfo(node);
260
- return (quickInfo === null || quickInfo === void 0 || (_quickInfo$body = quickInfo.body) === null || _quickInfo$body === void 0 ? void 0 : _quickInfo$body.displayString) || '';
259
+ return quickInfo?.body?.displayString || '';
261
260
  }
262
261
 
263
262
  /**
@@ -339,14 +338,14 @@ class SchemaExtractorContext {
339
338
  }
340
339
  async getFilePathByNode(node) {
341
340
  const def = await this.tsserver.getDefinition(this.getPath(node), this.getLocation(node));
342
- const firstDef = (0, _lodash().head)(def === null || def === void 0 ? void 0 : def.body);
343
- return firstDef === null || firstDef === void 0 ? void 0 : firstDef.file;
341
+ const firstDef = (0, _lodash().head)(def?.body);
342
+ return firstDef?.file;
344
343
  }
345
344
  async definitionInfo(node) {
346
345
  const location = this.getLocation(node);
347
346
  const filePath = this.getPath(node);
348
347
  const def = await this.tsserver.getDefinition(filePath, location);
349
- const firstDef = (0, _lodash().head)(def === null || def === void 0 ? void 0 : def.body);
348
+ const firstDef = (0, _lodash().head)(def?.body);
350
349
  return firstDef;
351
350
  }
352
351
 
@@ -389,9 +388,8 @@ class SchemaExtractorContext {
389
388
  isExported() {}
390
389
  isFromComponent() {}
391
390
  async getFileIdentifiers(exportDec) {
392
- var _exportDec$moduleSpec;
393
391
  const file = exportDec.getSourceFile().fileName;
394
- const specifierPathStr = exportDec.kind === _typescript().SyntaxKind.ExportDeclaration && ((_exportDec$moduleSpec = exportDec.moduleSpecifier) === null || _exportDec$moduleSpec === void 0 ? void 0 : _exportDec$moduleSpec.getText()) || '';
392
+ const specifierPathStr = exportDec.kind === _typescript().SyntaxKind.ExportDeclaration && exportDec.moduleSpecifier?.getText() || '';
395
393
  const specifierPath = specifierPathStr.substring(1, specifierPathStr.length - 1);
396
394
  const absPath = (0, _path().resolve)(file, '..', specifierPath);
397
395
  const sourceFile = this.getSourceFileInsideComponent(absPath);
@@ -419,12 +417,12 @@ class SchemaExtractorContext {
419
417
  */
420
418
  async getDefinition(node) {
421
419
  const typeDefinition = await this.typeDefinition(node);
422
- const headTypeDefinition = (0, _lodash().head)(typeDefinition === null || typeDefinition === void 0 ? void 0 : typeDefinition.body);
420
+ const headTypeDefinition = (0, _lodash().head)(typeDefinition?.body);
423
421
  if (headTypeDefinition) {
424
422
  return headTypeDefinition;
425
423
  }
426
424
  const definition = await this.tsserver.getDefinition(node.getSourceFile().fileName, this.getLocation(node));
427
- const headDefinition = (0, _lodash().head)(definition === null || definition === void 0 ? void 0 : definition.body);
425
+ const headDefinition = (0, _lodash().head)(definition?.body);
428
426
  return headDefinition;
429
427
  }
430
428
 
@@ -473,7 +471,7 @@ class SchemaExtractorContext {
473
471
  if (!definitionNode) {
474
472
  return this.unknownExactType(node, location, typeStr, isTypeStrFromQuickInfo);
475
473
  }
476
- const definitionNodeName = definitionNode === null || definitionNode === void 0 ? void 0 : definitionNode.getText();
474
+ const definitionNodeName = definitionNode?.getText();
477
475
 
478
476
  // check if internal ref with definition info
479
477
  const definitionInternalRef = await this.getTypeRef(definitionNodeName, this.getIdentifierKeyForNode(definitionNode), location);
@@ -492,8 +490,7 @@ class SchemaExtractorContext {
492
490
  return apiTransformer ? apiTransformer.transform(schemaNode, this) : schemaNode;
493
491
  }
494
492
  getCompIdByPkgName(pkgName) {
495
- var _this$componentDeps$f;
496
- return (_this$componentDeps$f = this.componentDeps.find(dep => dep.packageName === pkgName)) === null || _this$componentDeps$f === void 0 ? void 0 : _this$componentDeps$f.componentId;
493
+ return this.componentDeps.find(dep => dep.packageName === pkgName)?.componentId;
497
494
  }
498
495
  async getTypeRef(typeStr, filePath, location) {
499
496
  const nodeIdentifierKey = this.getIdentifierKey(filePath);
@@ -502,8 +499,8 @@ class SchemaExtractorContext {
502
499
  const mainIdentifierList = this.identifiers.get(mainFileIdentifierKey);
503
500
  const nodeIdentifier = new (_identifier().Identifier)(typeStr, nodeIdentifierKey);
504
501
  const mainIdentifier = new (_identifier().Identifier)(typeStr, mainFileIdentifierKey);
505
- const parsedNodeIdentifier = nodeIdentifierList === null || nodeIdentifierList === void 0 ? void 0 : nodeIdentifierList.find(nodeIdentifier);
506
- const parsedMainIdentifier = mainIdentifierList === null || mainIdentifierList === void 0 ? void 0 : mainIdentifierList.find(mainIdentifier);
502
+ const parsedNodeIdentifier = nodeIdentifierList?.find(nodeIdentifier);
503
+ const parsedMainIdentifier = mainIdentifierList?.find(mainIdentifier);
507
504
  const isExportedFromMain = parsedMainIdentifier && _exportIdentifier().ExportIdentifier.isExportIdentifier(parsedMainIdentifier);
508
505
  if (!parsedNodeIdentifier) return undefined;
509
506
  const internalRef = !isExportedFromMain;
@@ -513,7 +510,6 @@ class SchemaExtractorContext {
513
510
  return this.resolveTypeRef(parsedNodeIdentifier, location, isExportedFromMain);
514
511
  }
515
512
  async resolveTypeRef(identifier, location, isExportedFromMain) {
516
- var _this$identifiers$get;
517
513
  const sourceFilePath = identifier.sourceFilePath;
518
514
  if (!sourceFilePath || isExportedFromMain && (0, _isRelativeImport().default)(sourceFilePath)) {
519
515
  return new (_semanticsEntities().TypeRefSchema)(location, identifier.id, undefined, undefined, !isExportedFromMain ? this.getPathRelativeToComponent(identifier.filePath) : undefined);
@@ -542,10 +538,10 @@ class SchemaExtractorContext {
542
538
  absFilePath ${absFilePath}`);
543
539
  return new (_semanticsEntities().TypeRefSchema)(location, identifier.id);
544
540
  }
545
- const idKey = this.getIdentifierKey(compFilePath === null || compFilePath === void 0 ? void 0 : compFilePath.path);
541
+ const idKey = this.getIdentifierKey(compFilePath?.path);
546
542
 
547
543
  // if re exported from a file, recurse until definition
548
- const exportedIdentifier = (((_this$identifiers$get = this.identifiers.get(idKey)) === null || _this$identifiers$get === void 0 ? void 0 : _this$identifiers$get.identifiers) || []).find(i => i.id === identifier.id);
544
+ const exportedIdentifier = (this.identifiers.get(idKey)?.identifiers || []).find(i => i.id === identifier.id);
549
545
  if (exportedIdentifier) {
550
546
  return this.resolveTypeRef(exportedIdentifier, location, isExportedFromMain);
551
547
  }
@@ -1 +1 @@
1
- {"version":3,"names":["_tsutils","data","require","_typescript","_interopRequireWildcard","_lodash","_utils","_path","_semanticsEntities","_isRelativeImport","_interopRequireDefault","_pMapSeries","_identifierList","_parseTypeFromQuickInfo","_jsdocToDocSchema","_identifier","_exportIdentifier","obj","__esModule","default","_getRequireWildcardCache","e","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","_defineProperty","key","value","_toPropertyKey","enumerable","configurable","writable","_toPrimitive","String","Symbol","toPrimitive","TypeError","Number","SchemaExtractorContext","mainFile","pathNormalizeToLinux","getPathRelativeToComponent","component","path","identifiers","_identifiers","internalIdentifiers","_internalIdentifiers","computed","_computed","mainFileIdentifierKey","getIdentifierKey","mainModuleIdentifiers","constructor","tsserver","extractor","componentDeps","componentRootPath","hostRootPath","formatter","Map","getComputedNodeKey","filePath","line","character","getIdentifierKeyForNode","node","getSourceFile","fileName","setComputed","location","setIdentifiers","setInternalIdentifiers","existing","uniqueIdentifiers","uniqBy","concat","k","aliasId","id","IdentifierList","findComputedSchemaByName","name","Array","from","values","filter","schema","computeSchema","getLocation","existingComputedSchema","computedSchema","transformSchemaNode","transformAPI","targetSourceFile","absolutePath","sourceFile","position","getLineAndCharacterOfPosition","getStart","getLocationAsString","basePath","filesystem","files","base","relative","getSignature","getSignatureHelp","getPath","getPosition","offset","getPositionOfLineAndCharacter","startsWith","join","getQuickInfo","err","message","Error","getQuickInfoDisplayString","_quickInfo$body","quickInfo","body","displayString","typeDefinition","getTypeDefinition","visitTypeDefinition","getPathWithoutExtension","knownExtensions","fileExtension","extname","substring","filePathWithoutExtension","includes","replace","RegExp","isAbsolute","isIndexFile","currentFilePath","indexFilePath","findFileInComponent","normalizedFilePath","pathToCompareWithoutExtension","matchingFile","find","file","currentFilePathWithoutExtension","isSameFilePath","matches","parsePackageNameFromPath","parts","split","length","lastPart","sep","pkgParts","pkgName","getSourceFileInsideComponent","parseSourceFile","getSourceFileFromNode","getFilePathByNode","undefined","def","getDefinition","firstDef","head","definitionInfo","definition","startPosition","start","pos","nodeAtPos","getTokenAtPosition","visitDefinition","getTypeRefForExternalNode","visit","parent","kind","SyntaxKind","Identifier","SourceFile","references","isExported","isFromComponent","getFileIdentifiers","exportDec","_exportDec$moduleSpec","specifierPathStr","ExportDeclaration","moduleSpecifier","getText","specifierPath","absPath","resolve","getIdentifiers","getFileExports","identifier","ExportIdentifier","isExportIdentifier","getFileInternals","computeIdentifiers","headTypeDefinition","headDefinition","unknownExactType","typeStr","isTypeStrFromQuickInfo","InferenceTypeSchema","info","type","parseTypeFromQuickInfo","isDefInSameLocation","loc","resolveType","internalRef","getTypeRef","ts","isTypeNode","definitionNode","definitionNodeName","definitionInternalRef","transformer","getTransformer","getTypeRefForExternalPath","schemaNode","apiTransformer","getAPITransformer","transform","getCompIdByPkgName","_this$componentDeps$f","dep","packageName","componentId","nodeIdentifierKey","nodeIdentifierList","mainIdentifierList","nodeIdentifier","mainIdentifier","parsedNodeIdentifier","parsedMainIdentifier","isExportedFromMain","resolveTypeRef","_this$identifiers$get","sourceFilePath","isRelativeImport","TypeRefSchema","compIdByPkg","compIdByPath","getComponentIDByPath","relativeDir","lastIndexOf","absFilePath","compFilePath","idKey","exportedIdentifier","jsDocToDocSchema","canHaveJsDoc","jsDocs","getJsDoc","jsDoc","comment","getTextOfJSDocComment","tags","pMapSeries","tag","tagParser","DocSchema","exports"],"sources":["schema-extractor-context.ts"],"sourcesContent":["import { TsserverClient } from '@teambit/ts-server';\nimport { getTokenAtPosition, canHaveJsDoc, getJsDoc } from 'tsutils';\nimport ts, { ExportAssignment, getTextOfJSDocComment, ExportDeclaration, Node, SyntaxKind, TypeNode } from 'typescript';\nimport { head, uniqBy } from 'lodash';\n// @ts-ignore david we should figure fix this.\n// eslint-disable-next-line import/no-unresolved\nimport protocol from 'typescript/lib/protocol';\nimport { pathNormalizeToLinux } from '@teambit/legacy/dist/utils';\nimport { resolve, sep, relative, join, isAbsolute, extname } from 'path';\nimport { Component, ComponentID } from '@teambit/component';\nimport {\n TypeRefSchema,\n SchemaNode,\n InferenceTypeSchema,\n Location,\n DocSchema,\n} from '@teambit/semantics.entities.semantic-schema';\nimport isRelativeImport from '@teambit/legacy/dist/utils/is-relative-import';\nimport { ComponentDependency } from '@teambit/dependency-resolver';\nimport { Formatter } from '@teambit/formatter';\nimport pMapSeries from 'p-map-series';\nimport { TypeScriptExtractor } from './typescript.extractor';\nimport { IdentifierList } from './identifier-list';\nimport { parseTypeFromQuickInfo } from './transformers/utils/parse-type-from-quick-info';\nimport { tagParser } from './transformers/utils/jsdoc-to-doc-schema';\nimport { Identifier } from './identifier';\nimport { ExportIdentifier } from './export-identifier';\n\nexport class SchemaExtractorContext {\n /**\n * list of all declared identifiers (exported and internal) by filename\n */\n private _identifiers = new Map<string, IdentifierList>();\n private _internalIdentifiers = new Map<string, IdentifierList>();\n\n /**\n * computed nodes by filename and (position (line:character))\n */\n private _computed = new Map<string, SchemaNode>();\n\n get mainFile() {\n return pathNormalizeToLinux(this.getPathRelativeToComponent(this.component.mainFile.path));\n }\n\n get identifiers() {\n return this._identifiers;\n }\n\n get internalIdentifiers() {\n return this._internalIdentifiers;\n }\n\n get computed() {\n return this._computed;\n }\n\n get mainFileIdentifierKey() {\n const mainFile = this.component.mainFile;\n return this.getIdentifierKey(mainFile.path);\n }\n\n get mainModuleIdentifiers() {\n return this.identifiers.get(this.mainFileIdentifierKey);\n }\n\n constructor(\n readonly tsserver: TsserverClient,\n readonly component: Component,\n readonly extractor: TypeScriptExtractor,\n readonly componentDeps: ComponentDependency[],\n readonly componentRootPath: string,\n readonly hostRootPath: string,\n readonly formatter?: Formatter\n ) {\n this.componentRootPath = pathNormalizeToLinux(componentRootPath);\n this.hostRootPath = pathNormalizeToLinux(hostRootPath);\n }\n\n getComputedNodeKey({ filePath, line, character }: Location) {\n return `${filePath}:${line}:${character}`;\n }\n\n getIdentifierKeyForNode(node: Node) {\n const filePath = node.getSourceFile().fileName;\n return this.getIdentifierKey(filePath);\n }\n\n getIdentifierKey(filePath: string) {\n return pathNormalizeToLinux(filePath);\n }\n\n setComputed(node: SchemaNode) {\n const { location } = node;\n const key = this.getComputedNodeKey(location);\n this.computed.set(key, node);\n }\n\n setIdentifiers(filePath: string, identifiers: IdentifierList) {\n this._identifiers.set(this.getIdentifierKey(filePath), identifiers);\n }\n\n setInternalIdentifiers(filePath: string, identifiers: IdentifierList) {\n const existing = this._internalIdentifiers.get(filePath);\n if (!existing) {\n this._internalIdentifiers.set(filePath, identifiers);\n } else {\n const uniqueIdentifiers = uniqBy(existing.identifiers.concat(identifiers.identifiers), (k) => k.aliasId || k.id);\n this._internalIdentifiers.set(filePath, new IdentifierList(uniqueIdentifiers));\n }\n }\n\n findComputedSchemaByName(name: string) {\n const computed = Array.from(this.computed.values());\n return computed.filter((schema) => schema.name === name);\n }\n\n async computeSchema(node: Node): Promise<SchemaNode> {\n const location = this.getLocation(node);\n const key = this.getComputedNodeKey(location);\n const existingComputedSchema = this.computed.get(key);\n if (existingComputedSchema) {\n return existingComputedSchema;\n }\n const computedSchema = await this.extractor.computeSchema(node, this);\n this.setComputed(computedSchema);\n return computedSchema;\n }\n\n async transformSchemaNode(schema: SchemaNode) {\n return this.extractor.transformAPI(schema, this);\n }\n\n /**\n * returns the location of a node in a source file.\n */\n getLocation(node: Node, targetSourceFile?: ts.SourceFile, absolutePath = false): Location {\n const sourceFile = targetSourceFile || node.getSourceFile();\n const filePath = absolutePath ? sourceFile.fileName : this.getPathRelativeToComponent(sourceFile.fileName);\n const position = sourceFile.getLineAndCharacterOfPosition(node.getStart());\n const line = position.line + 1;\n const character = position.character + 1;\n\n return {\n filePath: pathNormalizeToLinux(filePath),\n line,\n character,\n };\n }\n\n getLocationAsString(node: Node): string {\n const location = this.getLocation(node);\n return `${node.getSourceFile().fileName}, line: ${location.line}, character: ${location.character}`;\n }\n\n getPathRelativeToComponent(filePath: string): string {\n const basePath = this.component.filesystem.files[0].base;\n return relative(basePath, filePath);\n }\n\n /**\n * returns a signature for a node.\n */\n async getSignature(node: Node) {\n return this.tsserver.getSignatureHelp(this.getPath(node), this.getLocation(node));\n }\n\n /**\n * get the position for the tsserver.\n */\n getPosition(sourceFile: ts.SourceFile, line: number, offset: number): number {\n return sourceFile.getPositionOfLineAndCharacter(line - 1, offset - 1);\n }\n\n /**\n * get the path for a source file.\n */\n getPath(node: Node) {\n const sourceFile = node.getSourceFile();\n\n const fileName = sourceFile.fileName;\n\n if (!fileName.startsWith(this.componentRootPath) && !fileName.startsWith(this.hostRootPath)) {\n return join(this.componentRootPath, fileName);\n }\n\n return sourceFile.fileName;\n }\n\n async getQuickInfo(node: Node) {\n const location = this.getLocation(node);\n try {\n return await this.tsserver.getQuickInfo(this.getPath(node), location);\n } catch (err: any) {\n if (err.message === 'No content available.') {\n throw new Error(\n `unable to get quickinfo data from tsserver at ${this.getPath(node)}, Ln ${location.line}, Col ${\n location.character\n }`\n );\n }\n throw err;\n }\n }\n\n async getQuickInfoDisplayString(node: Node): Promise<string> {\n const quickInfo = await this.getQuickInfo(node);\n return quickInfo?.body?.displayString || '';\n }\n\n /**\n * returns the type definition for a type.\n */\n typeDefinition(node: Node) {\n return this.tsserver.getTypeDefinition(this.getPath(node), this.getLocation(node));\n }\n\n visitTypeDefinition() {}\n\n private getPathWithoutExtension(filePath: string) {\n const knownExtensions = ['ts', 'js', 'jsx', 'tsx'];\n const fileExtension = extname(filePath).substring(1);\n\n const filePathWithoutExtension = () => {\n if (knownExtensions.includes(fileExtension)) {\n return filePath.replace(new RegExp(`\\\\.${fileExtension}$`), '');\n }\n return filePath;\n };\n\n if (!isAbsolute(filePath)) {\n return filePathWithoutExtension();\n }\n\n if (filePath.startsWith(this.componentRootPath)) {\n return relative(this.componentRootPath, filePathWithoutExtension());\n }\n if (filePath.startsWith(this.hostRootPath)) {\n return relative(this.hostRootPath, filePathWithoutExtension());\n }\n return filePathWithoutExtension();\n }\n\n private isIndexFile(filePath: string, currentFilePath: string) {\n const indexFilePath = join(filePath, 'index');\n return pathNormalizeToLinux(indexFilePath) === currentFilePath;\n }\n\n findFileInComponent(filePath: string) {\n const normalizedFilePath = pathNormalizeToLinux(filePath);\n const pathToCompareWithoutExtension = this.getPathWithoutExtension(normalizedFilePath);\n\n const matchingFile = this.component.filesystem.files.find((file) => {\n const currentFilePath = pathNormalizeToLinux(file.path);\n const currentFilePathWithoutExtension = this.getPathWithoutExtension(currentFilePath);\n\n const isSameFilePath = pathToCompareWithoutExtension === currentFilePathWithoutExtension;\n\n const matches =\n isSameFilePath || this.isIndexFile(pathToCompareWithoutExtension, currentFilePathWithoutExtension);\n\n return matches;\n });\n return matchingFile;\n }\n\n private parsePackageNameFromPath(path: string) {\n const parts = path.split('node_modules');\n\n if (parts.length === 1) {\n return path;\n }\n\n const lastPart = parts[parts.length - 1].replace(sep, '');\n const pkgParts = lastPart.split('/');\n if (lastPart.startsWith('@')) {\n // scoped package\n return `${pkgParts[0]}/${pkgParts[1]}`;\n }\n const pkgName = pkgParts[0];\n if (pkgName === 'typescript') {\n // it's a built-in type, such as \"string\".\n return '';\n }\n return pkgName;\n }\n\n /**\n * return the file if part of the component.\n * otherwise, a reference to the target package and the type name.\n */\n getSourceFileInsideComponent(filePath: string) {\n const file = this.findFileInComponent(filePath);\n return file && this.extractor.parseSourceFile(file);\n }\n\n async getSourceFileFromNode(node: Node) {\n const filePath = await this.getFilePathByNode(node);\n if (!filePath) {\n return undefined;\n }\n return this.getSourceFileInsideComponent(filePath);\n }\n\n async getFilePathByNode(node: Node) {\n const def = await this.tsserver.getDefinition(this.getPath(node), this.getLocation(node));\n\n const firstDef = head(def?.body);\n return firstDef?.file;\n }\n\n async definitionInfo(node: Node): Promise<protocol.DefinitionInfo | undefined> {\n const location = this.getLocation(node);\n const filePath = this.getPath(node);\n\n const def = await this.tsserver.getDefinition(filePath, location);\n\n const firstDef = head(def?.body);\n\n return firstDef;\n }\n\n /**\n * get a definition for a given node.\n */\n async definition(definition: protocol.DefinitionInfo): Promise<Node | undefined> {\n const startPosition = definition.start;\n const sourceFile = this.getSourceFileInsideComponent(definition.file);\n if (!sourceFile) {\n // it might be an external reference, cant get the node\n return undefined;\n }\n const pos = this.getPosition(sourceFile, startPosition.line, startPosition.offset);\n const nodeAtPos = getTokenAtPosition(sourceFile, pos);\n return nodeAtPos;\n }\n\n /**\n * visit a definition for node - e.g. return it's schema.\n */\n async visitDefinition(node: Node): Promise<SchemaNode | undefined> {\n const definitionInfo = await this.definitionInfo(node);\n if (!definitionInfo) {\n return undefined;\n }\n\n const definition = await this.definition(definitionInfo);\n if (!definition) {\n return this.getTypeRefForExternalNode(node);\n }\n\n return this.visit(definition.parent);\n }\n\n async visit(node: Node): Promise<SchemaNode> {\n if (node.kind === SyntaxKind.Identifier && node.parent.parent.kind !== SyntaxKind.SourceFile) {\n return this.visit(node.parent);\n }\n return this.extractor.computeSchema(node, this);\n }\n\n references() {}\n\n isExported() {}\n\n isFromComponent() {}\n\n async getFileIdentifiers(exportDec: ExportDeclaration | ExportAssignment) {\n const file = exportDec.getSourceFile().fileName;\n const specifierPathStr =\n (exportDec.kind === SyntaxKind.ExportDeclaration && exportDec.moduleSpecifier?.getText()) || '';\n const specifierPath = specifierPathStr.substring(1, specifierPathStr.length - 1);\n const absPath = resolve(file, '..', specifierPath);\n const sourceFile = this.getSourceFileInsideComponent(absPath);\n if (!sourceFile) return [];\n return this.getIdentifiers(sourceFile);\n }\n\n async getFileExports(exportDec: ExportDeclaration | ExportAssignment) {\n const identifiers = await this.getFileIdentifiers(exportDec);\n return identifiers.filter((identifier) => ExportIdentifier.isExportIdentifier(identifier));\n }\n\n async getFileInternals(exportDec: ExportDeclaration | ExportAssignment) {\n const identifiers = await this.getFileIdentifiers(exportDec);\n return identifiers.filter((identifier) => !ExportIdentifier.isExportIdentifier(identifier));\n }\n\n getIdentifiers(node: Node) {\n return this.extractor.computeIdentifiers(node, this);\n }\n\n /**\n * tsserver has two different calls: \"definition\" and \"typeDefinition\".\n * normally, we need the \"typeDefinition\" to get the type data of a node.\n * sometimes, it has no data, for example when the node is of type TypeReference, and then using \"definition\" is\n * helpful. (couldn't find a rule when to use each one. e.g. \"VariableDeclaration\" sometimes has data only in\n * \"definition\" but it's not clear when/why).\n */\n async getDefinition(node: Node) {\n const typeDefinition = await this.typeDefinition(node);\n const headTypeDefinition = head(typeDefinition?.body);\n if (headTypeDefinition) {\n return headTypeDefinition;\n }\n\n const definition = await this.tsserver.getDefinition(node.getSourceFile().fileName, this.getLocation(node));\n const headDefinition = head(definition?.body);\n\n return headDefinition;\n }\n\n // when we can't figure out the component/package/type of this node, we'll use the typeStr as the type.\n private async unknownExactType(node: Node, location: Location, typeStr = 'any', isTypeStrFromQuickInfo = true) {\n if (isTypeStrFromQuickInfo) {\n return new InferenceTypeSchema(location, typeStr || 'any');\n }\n const info = await this.getQuickInfo(node);\n const type = parseTypeFromQuickInfo(info);\n return new InferenceTypeSchema(location, type, typeStr);\n }\n\n // the reason for this check is to avoid infinite loop when calling `this.jump` with the same file+location\n private isDefInSameLocation(node: Node, definition: protocol.FileSpanWithContext) {\n if (definition.file !== node.getSourceFile().fileName) {\n return false;\n }\n const loc = this.getLocation(node);\n\n return loc.line === definition.start.line && loc.character === definition.start.offset;\n }\n\n /**\n * resolve a type by a node and its identifier.\n */\n async resolveType(\n node: Node & { type?: TypeNode },\n typeStr: string,\n isTypeStrFromQuickInfo = true\n ): Promise<SchemaNode> {\n const location = this.getLocation(node);\n\n // check if internal ref with typeInfo\n const internalRef = await this.getTypeRef(typeStr, this.getIdentifierKeyForNode(node), location);\n\n if (internalRef) return internalRef;\n\n // if a node has \"type\" prop, it has the type data of the node. this normally happens when the code has the type\n // explicitly, e.g. `const str: string` vs implicitly `const str = 'some-string'`, which the node won't have \"type\"\n if (node.type && ts.isTypeNode(node.type)) {\n return this.computeSchema(node.type);\n }\n\n const definition = await this.getDefinition(node);\n\n if (!definition) {\n return this.unknownExactType(node, location, typeStr, isTypeStrFromQuickInfo);\n }\n\n if (this.isDefInSameLocation(node, definition)) {\n return this.unknownExactType(node, location, typeStr, isTypeStrFromQuickInfo);\n }\n\n const definitionNode = await this.definition(definition);\n\n if (!definitionNode) {\n return this.unknownExactType(node, location, typeStr, isTypeStrFromQuickInfo);\n }\n\n const definitionNodeName = definitionNode?.getText();\n\n // check if internal ref with definition info\n const definitionInternalRef = await this.getTypeRef(\n definitionNodeName,\n this.getIdentifierKeyForNode(definitionNode),\n location\n );\n\n if (definitionInternalRef) return definitionInternalRef;\n\n const transformer = this.extractor.getTransformer(definitionNode, this);\n\n if (transformer === undefined) {\n const file = this.findFileInComponent(definition.file);\n if (!file) return this.getTypeRefForExternalPath(typeStr, definition.file, location);\n return this.unknownExactType(node, location, typeStr, isTypeStrFromQuickInfo);\n }\n\n const schemaNode = await this.visit(definitionNode);\n\n if (!schemaNode) {\n return this.unknownExactType(node, location, typeStr, isTypeStrFromQuickInfo);\n }\n\n const apiTransformer = this.extractor.getAPITransformer(schemaNode);\n return apiTransformer ? apiTransformer.transform(schemaNode, this) : schemaNode;\n }\n\n private getCompIdByPkgName(pkgName: string): ComponentID | undefined {\n return this.componentDeps.find((dep) => dep.packageName === pkgName)?.componentId;\n }\n\n async getTypeRef(typeStr: string, filePath: string, location: Location): Promise<TypeRefSchema | undefined> {\n const nodeIdentifierKey = this.getIdentifierKey(filePath);\n const mainFileIdentifierKey = this.mainFileIdentifierKey;\n\n const nodeIdentifierList = this.identifiers.get(nodeIdentifierKey);\n const mainIdentifierList = this.identifiers.get(mainFileIdentifierKey);\n\n const nodeIdentifier = new Identifier(typeStr, nodeIdentifierKey);\n const mainIdentifier = new Identifier(typeStr, mainFileIdentifierKey);\n\n const parsedNodeIdentifier = nodeIdentifierList?.find(nodeIdentifier);\n const parsedMainIdentifier = mainIdentifierList?.find(mainIdentifier);\n const isExportedFromMain = parsedMainIdentifier && ExportIdentifier.isExportIdentifier(parsedMainIdentifier);\n\n if (!parsedNodeIdentifier) return undefined;\n\n const internalRef = !isExportedFromMain;\n\n if (internalRef) {\n this.setInternalIdentifiers(filePath, new IdentifierList([parsedNodeIdentifier]));\n }\n\n return this.resolveTypeRef(parsedNodeIdentifier, location, isExportedFromMain);\n }\n\n async resolveTypeRef(\n identifier: Identifier,\n location: Location,\n isExportedFromMain?: boolean\n ): Promise<TypeRefSchema> {\n const sourceFilePath = identifier.sourceFilePath;\n\n if (!sourceFilePath || (isExportedFromMain && isRelativeImport(sourceFilePath))) {\n return new TypeRefSchema(\n location,\n identifier.id,\n undefined,\n undefined,\n !isExportedFromMain ? this.getPathRelativeToComponent(identifier.filePath) : undefined\n );\n }\n\n if (!isRelativeImport(sourceFilePath)) {\n const pkgName = this.parsePackageNameFromPath(sourceFilePath);\n const compIdByPkg = this.getCompIdByPkgName(pkgName);\n\n const compIdByPath = await this.extractor.getComponentIDByPath(sourceFilePath);\n\n if (compIdByPath) {\n return new TypeRefSchema(location, identifier.id, compIdByPath);\n }\n\n if (compIdByPkg) {\n return new TypeRefSchema(location, identifier.id, compIdByPkg);\n }\n\n // package without comp id\n return new TypeRefSchema(location, identifier.id, undefined, pkgName);\n }\n\n const relativeDir = identifier.filePath.substring(0, identifier.filePath.lastIndexOf('/'));\n const absFilePath = resolve(this.componentRootPath, relativeDir, sourceFilePath);\n\n const compFilePath = this.findFileInComponent(absFilePath);\n if (!compFilePath) {\n // @todo handle this better\n throw new Error(\n `cannot find file in component \\n source file path ${sourceFilePath}\\n \n identifier file path ${identifier.filePath}\\nrelative dir ${relativeDir}\\n\n absFilePath ${absFilePath}`\n );\n return new TypeRefSchema(location, identifier.id);\n }\n\n const idKey = this.getIdentifierKey(compFilePath?.path);\n\n // if re exported from a file, recurse until definition\n const exportedIdentifier = (this.identifiers.get(idKey)?.identifiers || []).find((i) => i.id === identifier.id);\n\n if (exportedIdentifier) {\n return this.resolveTypeRef(exportedIdentifier, location, isExportedFromMain);\n }\n\n return new TypeRefSchema(location, identifier.id);\n }\n\n async getTypeRefForExternalNode(node: Node): Promise<TypeRefSchema> {\n const info = await this.getQuickInfo(node);\n const typeStr = parseTypeFromQuickInfo(info);\n const location = this.getLocation(node);\n const filePath = this.getPath(node);\n return this.getTypeRefForExternalPath(typeStr, filePath, location);\n }\n\n async getTypeRefForExternalPath(typeStr: string, filePath: string, location: Location): Promise<TypeRefSchema> {\n const compIdByPath = await this.extractor.getComponentIDByPath(filePath);\n if (compIdByPath) {\n return new TypeRefSchema(location, typeStr, compIdByPath);\n }\n const pkgName = this.parsePackageNameFromPath(filePath);\n const compIdByPkg = this.getCompIdByPkgName(pkgName);\n if (compIdByPkg) {\n return new TypeRefSchema(location, typeStr, compIdByPkg);\n }\n return new TypeRefSchema(location, typeStr, undefined, pkgName);\n }\n\n async jsDocToDocSchema(node: Node): Promise<DocSchema | undefined> {\n if (!canHaveJsDoc(node)) {\n return undefined;\n }\n const jsDocs = getJsDoc(node);\n if (!jsDocs.length) {\n return undefined;\n }\n // not sure how common it is to have multiple JSDocs. never seen it before.\n // regardless, in typescript implementation of methods like `getJSDocDeprecatedTag()`, they use the first one. (`getFirstJSDocTag()`)\n const jsDoc = jsDocs[0];\n const location = this.getLocation(jsDoc);\n const comment = getTextOfJSDocComment(jsDoc.comment);\n const tags = jsDoc.tags ? await pMapSeries(jsDoc.tags, (tag) => tagParser(tag, this, this.formatter)) : undefined;\n return new DocSchema(location, jsDoc.getText(), comment, tags);\n }\n}\n"],"mappings":"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"}
1
+ {"version":3,"names":["_tsutils","data","require","_typescript","_interopRequireWildcard","_lodash","_utils","_path","_semanticsEntities","_isRelativeImport","_interopRequireDefault","_pMapSeries","_identifierList","_parseTypeFromQuickInfo","_jsdocToDocSchema","_identifier","_exportIdentifier","obj","__esModule","default","_getRequireWildcardCache","e","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","_defineProperty","key","value","_toPropertyKey","enumerable","configurable","writable","_toPrimitive","String","Symbol","toPrimitive","TypeError","Number","SchemaExtractorContext","mainFile","pathNormalizeToLinux","getPathRelativeToComponent","component","path","identifiers","_identifiers","internalIdentifiers","_internalIdentifiers","computed","_computed","mainFileIdentifierKey","getIdentifierKey","mainModuleIdentifiers","constructor","tsserver","extractor","componentDeps","componentRootPath","hostRootPath","formatter","Map","getComputedNodeKey","filePath","line","character","getIdentifierKeyForNode","node","getSourceFile","fileName","setComputed","location","setIdentifiers","setInternalIdentifiers","existing","uniqueIdentifiers","uniqBy","concat","k","aliasId","id","IdentifierList","findComputedSchemaByName","name","Array","from","values","filter","schema","computeSchema","getLocation","existingComputedSchema","computedSchema","transformSchemaNode","transformAPI","targetSourceFile","absolutePath","sourceFile","position","getLineAndCharacterOfPosition","getStart","getLocationAsString","basePath","filesystem","files","base","relative","getSignature","getSignatureHelp","getPath","getPosition","offset","getPositionOfLineAndCharacter","startsWith","join","getQuickInfo","err","message","Error","getQuickInfoDisplayString","quickInfo","body","displayString","typeDefinition","getTypeDefinition","visitTypeDefinition","getPathWithoutExtension","knownExtensions","fileExtension","extname","substring","filePathWithoutExtension","includes","replace","RegExp","isAbsolute","isIndexFile","currentFilePath","indexFilePath","findFileInComponent","normalizedFilePath","pathToCompareWithoutExtension","matchingFile","find","file","currentFilePathWithoutExtension","isSameFilePath","matches","parsePackageNameFromPath","parts","split","length","lastPart","sep","pkgParts","pkgName","getSourceFileInsideComponent","parseSourceFile","getSourceFileFromNode","getFilePathByNode","undefined","def","getDefinition","firstDef","head","definitionInfo","definition","startPosition","start","pos","nodeAtPos","getTokenAtPosition","visitDefinition","getTypeRefForExternalNode","visit","parent","kind","SyntaxKind","Identifier","SourceFile","references","isExported","isFromComponent","getFileIdentifiers","exportDec","specifierPathStr","ExportDeclaration","moduleSpecifier","getText","specifierPath","absPath","resolve","getIdentifiers","getFileExports","identifier","ExportIdentifier","isExportIdentifier","getFileInternals","computeIdentifiers","headTypeDefinition","headDefinition","unknownExactType","typeStr","isTypeStrFromQuickInfo","InferenceTypeSchema","info","type","parseTypeFromQuickInfo","isDefInSameLocation","loc","resolveType","internalRef","getTypeRef","ts","isTypeNode","definitionNode","definitionNodeName","definitionInternalRef","transformer","getTransformer","getTypeRefForExternalPath","schemaNode","apiTransformer","getAPITransformer","transform","getCompIdByPkgName","dep","packageName","componentId","nodeIdentifierKey","nodeIdentifierList","mainIdentifierList","nodeIdentifier","mainIdentifier","parsedNodeIdentifier","parsedMainIdentifier","isExportedFromMain","resolveTypeRef","sourceFilePath","isRelativeImport","TypeRefSchema","compIdByPkg","compIdByPath","getComponentIDByPath","relativeDir","lastIndexOf","absFilePath","compFilePath","idKey","exportedIdentifier","jsDocToDocSchema","canHaveJsDoc","jsDocs","getJsDoc","jsDoc","comment","getTextOfJSDocComment","tags","pMapSeries","tag","tagParser","DocSchema","exports"],"sources":["schema-extractor-context.ts"],"sourcesContent":["import { TsserverClient } from '@teambit/ts-server';\nimport { getTokenAtPosition, canHaveJsDoc, getJsDoc } from 'tsutils';\nimport ts, { ExportAssignment, getTextOfJSDocComment, ExportDeclaration, Node, SyntaxKind, TypeNode } from 'typescript';\nimport { head, uniqBy } from 'lodash';\n// @ts-ignore david we should figure fix this.\n// eslint-disable-next-line import/no-unresolved\nimport protocol from 'typescript/lib/protocol';\nimport { pathNormalizeToLinux } from '@teambit/legacy/dist/utils';\nimport { resolve, sep, relative, join, isAbsolute, extname } from 'path';\nimport { Component, ComponentID } from '@teambit/component';\nimport {\n TypeRefSchema,\n SchemaNode,\n InferenceTypeSchema,\n Location,\n DocSchema,\n} from '@teambit/semantics.entities.semantic-schema';\nimport isRelativeImport from '@teambit/legacy/dist/utils/is-relative-import';\nimport { ComponentDependency } from '@teambit/dependency-resolver';\nimport { Formatter } from '@teambit/formatter';\nimport pMapSeries from 'p-map-series';\nimport { TypeScriptExtractor } from './typescript.extractor';\nimport { IdentifierList } from './identifier-list';\nimport { parseTypeFromQuickInfo } from './transformers/utils/parse-type-from-quick-info';\nimport { tagParser } from './transformers/utils/jsdoc-to-doc-schema';\nimport { Identifier } from './identifier';\nimport { ExportIdentifier } from './export-identifier';\n\nexport class SchemaExtractorContext {\n /**\n * list of all declared identifiers (exported and internal) by filename\n */\n private _identifiers = new Map<string, IdentifierList>();\n private _internalIdentifiers = new Map<string, IdentifierList>();\n\n /**\n * computed nodes by filename and (position (line:character))\n */\n private _computed = new Map<string, SchemaNode>();\n\n get mainFile() {\n return pathNormalizeToLinux(this.getPathRelativeToComponent(this.component.mainFile.path));\n }\n\n get identifiers() {\n return this._identifiers;\n }\n\n get internalIdentifiers() {\n return this._internalIdentifiers;\n }\n\n get computed() {\n return this._computed;\n }\n\n get mainFileIdentifierKey() {\n const mainFile = this.component.mainFile;\n return this.getIdentifierKey(mainFile.path);\n }\n\n get mainModuleIdentifiers() {\n return this.identifiers.get(this.mainFileIdentifierKey);\n }\n\n constructor(\n readonly tsserver: TsserverClient,\n readonly component: Component,\n readonly extractor: TypeScriptExtractor,\n readonly componentDeps: ComponentDependency[],\n readonly componentRootPath: string,\n readonly hostRootPath: string,\n readonly formatter?: Formatter\n ) {\n this.componentRootPath = pathNormalizeToLinux(componentRootPath);\n this.hostRootPath = pathNormalizeToLinux(hostRootPath);\n }\n\n getComputedNodeKey({ filePath, line, character }: Location) {\n return `${filePath}:${line}:${character}`;\n }\n\n getIdentifierKeyForNode(node: Node) {\n const filePath = node.getSourceFile().fileName;\n return this.getIdentifierKey(filePath);\n }\n\n getIdentifierKey(filePath: string) {\n return pathNormalizeToLinux(filePath);\n }\n\n setComputed(node: SchemaNode) {\n const { location } = node;\n const key = this.getComputedNodeKey(location);\n this.computed.set(key, node);\n }\n\n setIdentifiers(filePath: string, identifiers: IdentifierList) {\n this._identifiers.set(this.getIdentifierKey(filePath), identifiers);\n }\n\n setInternalIdentifiers(filePath: string, identifiers: IdentifierList) {\n const existing = this._internalIdentifiers.get(filePath);\n if (!existing) {\n this._internalIdentifiers.set(filePath, identifiers);\n } else {\n const uniqueIdentifiers = uniqBy(existing.identifiers.concat(identifiers.identifiers), (k) => k.aliasId || k.id);\n this._internalIdentifiers.set(filePath, new IdentifierList(uniqueIdentifiers));\n }\n }\n\n findComputedSchemaByName(name: string) {\n const computed = Array.from(this.computed.values());\n return computed.filter((schema) => schema.name === name);\n }\n\n async computeSchema(node: Node): Promise<SchemaNode> {\n const location = this.getLocation(node);\n const key = this.getComputedNodeKey(location);\n const existingComputedSchema = this.computed.get(key);\n if (existingComputedSchema) {\n return existingComputedSchema;\n }\n const computedSchema = await this.extractor.computeSchema(node, this);\n this.setComputed(computedSchema);\n return computedSchema;\n }\n\n async transformSchemaNode(schema: SchemaNode) {\n return this.extractor.transformAPI(schema, this);\n }\n\n /**\n * returns the location of a node in a source file.\n */\n getLocation(node: Node, targetSourceFile?: ts.SourceFile, absolutePath = false): Location {\n const sourceFile = targetSourceFile || node.getSourceFile();\n const filePath = absolutePath ? sourceFile.fileName : this.getPathRelativeToComponent(sourceFile.fileName);\n const position = sourceFile.getLineAndCharacterOfPosition(node.getStart());\n const line = position.line + 1;\n const character = position.character + 1;\n\n return {\n filePath: pathNormalizeToLinux(filePath),\n line,\n character,\n };\n }\n\n getLocationAsString(node: Node): string {\n const location = this.getLocation(node);\n return `${node.getSourceFile().fileName}, line: ${location.line}, character: ${location.character}`;\n }\n\n getPathRelativeToComponent(filePath: string): string {\n const basePath = this.component.filesystem.files[0].base;\n return relative(basePath, filePath);\n }\n\n /**\n * returns a signature for a node.\n */\n async getSignature(node: Node) {\n return this.tsserver.getSignatureHelp(this.getPath(node), this.getLocation(node));\n }\n\n /**\n * get the position for the tsserver.\n */\n getPosition(sourceFile: ts.SourceFile, line: number, offset: number): number {\n return sourceFile.getPositionOfLineAndCharacter(line - 1, offset - 1);\n }\n\n /**\n * get the path for a source file.\n */\n getPath(node: Node) {\n const sourceFile = node.getSourceFile();\n\n const fileName = sourceFile.fileName;\n\n if (!fileName.startsWith(this.componentRootPath) && !fileName.startsWith(this.hostRootPath)) {\n return join(this.componentRootPath, fileName);\n }\n\n return sourceFile.fileName;\n }\n\n async getQuickInfo(node: Node) {\n const location = this.getLocation(node);\n try {\n return await this.tsserver.getQuickInfo(this.getPath(node), location);\n } catch (err: any) {\n if (err.message === 'No content available.') {\n throw new Error(\n `unable to get quickinfo data from tsserver at ${this.getPath(node)}, Ln ${location.line}, Col ${\n location.character\n }`\n );\n }\n throw err;\n }\n }\n\n async getQuickInfoDisplayString(node: Node): Promise<string> {\n const quickInfo = await this.getQuickInfo(node);\n return quickInfo?.body?.displayString || '';\n }\n\n /**\n * returns the type definition for a type.\n */\n typeDefinition(node: Node) {\n return this.tsserver.getTypeDefinition(this.getPath(node), this.getLocation(node));\n }\n\n visitTypeDefinition() {}\n\n private getPathWithoutExtension(filePath: string) {\n const knownExtensions = ['ts', 'js', 'jsx', 'tsx'];\n const fileExtension = extname(filePath).substring(1);\n\n const filePathWithoutExtension = () => {\n if (knownExtensions.includes(fileExtension)) {\n return filePath.replace(new RegExp(`\\\\.${fileExtension}$`), '');\n }\n return filePath;\n };\n\n if (!isAbsolute(filePath)) {\n return filePathWithoutExtension();\n }\n\n if (filePath.startsWith(this.componentRootPath)) {\n return relative(this.componentRootPath, filePathWithoutExtension());\n }\n if (filePath.startsWith(this.hostRootPath)) {\n return relative(this.hostRootPath, filePathWithoutExtension());\n }\n return filePathWithoutExtension();\n }\n\n private isIndexFile(filePath: string, currentFilePath: string) {\n const indexFilePath = join(filePath, 'index');\n return pathNormalizeToLinux(indexFilePath) === currentFilePath;\n }\n\n findFileInComponent(filePath: string) {\n const normalizedFilePath = pathNormalizeToLinux(filePath);\n const pathToCompareWithoutExtension = this.getPathWithoutExtension(normalizedFilePath);\n\n const matchingFile = this.component.filesystem.files.find((file) => {\n const currentFilePath = pathNormalizeToLinux(file.path);\n const currentFilePathWithoutExtension = this.getPathWithoutExtension(currentFilePath);\n\n const isSameFilePath = pathToCompareWithoutExtension === currentFilePathWithoutExtension;\n\n const matches =\n isSameFilePath || this.isIndexFile(pathToCompareWithoutExtension, currentFilePathWithoutExtension);\n\n return matches;\n });\n return matchingFile;\n }\n\n private parsePackageNameFromPath(path: string) {\n const parts = path.split('node_modules');\n\n if (parts.length === 1) {\n return path;\n }\n\n const lastPart = parts[parts.length - 1].replace(sep, '');\n const pkgParts = lastPart.split('/');\n if (lastPart.startsWith('@')) {\n // scoped package\n return `${pkgParts[0]}/${pkgParts[1]}`;\n }\n const pkgName = pkgParts[0];\n if (pkgName === 'typescript') {\n // it's a built-in type, such as \"string\".\n return '';\n }\n return pkgName;\n }\n\n /**\n * return the file if part of the component.\n * otherwise, a reference to the target package and the type name.\n */\n getSourceFileInsideComponent(filePath: string) {\n const file = this.findFileInComponent(filePath);\n return file && this.extractor.parseSourceFile(file);\n }\n\n async getSourceFileFromNode(node: Node) {\n const filePath = await this.getFilePathByNode(node);\n if (!filePath) {\n return undefined;\n }\n return this.getSourceFileInsideComponent(filePath);\n }\n\n async getFilePathByNode(node: Node) {\n const def = await this.tsserver.getDefinition(this.getPath(node), this.getLocation(node));\n\n const firstDef = head(def?.body);\n return firstDef?.file;\n }\n\n async definitionInfo(node: Node): Promise<protocol.DefinitionInfo | undefined> {\n const location = this.getLocation(node);\n const filePath = this.getPath(node);\n\n const def = await this.tsserver.getDefinition(filePath, location);\n\n const firstDef = head(def?.body);\n\n return firstDef;\n }\n\n /**\n * get a definition for a given node.\n */\n async definition(definition: protocol.DefinitionInfo): Promise<Node | undefined> {\n const startPosition = definition.start;\n const sourceFile = this.getSourceFileInsideComponent(definition.file);\n if (!sourceFile) {\n // it might be an external reference, cant get the node\n return undefined;\n }\n const pos = this.getPosition(sourceFile, startPosition.line, startPosition.offset);\n const nodeAtPos = getTokenAtPosition(sourceFile, pos);\n return nodeAtPos;\n }\n\n /**\n * visit a definition for node - e.g. return it's schema.\n */\n async visitDefinition(node: Node): Promise<SchemaNode | undefined> {\n const definitionInfo = await this.definitionInfo(node);\n if (!definitionInfo) {\n return undefined;\n }\n\n const definition = await this.definition(definitionInfo);\n if (!definition) {\n return this.getTypeRefForExternalNode(node);\n }\n\n return this.visit(definition.parent);\n }\n\n async visit(node: Node): Promise<SchemaNode> {\n if (node.kind === SyntaxKind.Identifier && node.parent.parent.kind !== SyntaxKind.SourceFile) {\n return this.visit(node.parent);\n }\n return this.extractor.computeSchema(node, this);\n }\n\n references() {}\n\n isExported() {}\n\n isFromComponent() {}\n\n async getFileIdentifiers(exportDec: ExportDeclaration | ExportAssignment) {\n const file = exportDec.getSourceFile().fileName;\n const specifierPathStr =\n (exportDec.kind === SyntaxKind.ExportDeclaration && exportDec.moduleSpecifier?.getText()) || '';\n const specifierPath = specifierPathStr.substring(1, specifierPathStr.length - 1);\n const absPath = resolve(file, '..', specifierPath);\n const sourceFile = this.getSourceFileInsideComponent(absPath);\n if (!sourceFile) return [];\n return this.getIdentifiers(sourceFile);\n }\n\n async getFileExports(exportDec: ExportDeclaration | ExportAssignment) {\n const identifiers = await this.getFileIdentifiers(exportDec);\n return identifiers.filter((identifier) => ExportIdentifier.isExportIdentifier(identifier));\n }\n\n async getFileInternals(exportDec: ExportDeclaration | ExportAssignment) {\n const identifiers = await this.getFileIdentifiers(exportDec);\n return identifiers.filter((identifier) => !ExportIdentifier.isExportIdentifier(identifier));\n }\n\n getIdentifiers(node: Node) {\n return this.extractor.computeIdentifiers(node, this);\n }\n\n /**\n * tsserver has two different calls: \"definition\" and \"typeDefinition\".\n * normally, we need the \"typeDefinition\" to get the type data of a node.\n * sometimes, it has no data, for example when the node is of type TypeReference, and then using \"definition\" is\n * helpful. (couldn't find a rule when to use each one. e.g. \"VariableDeclaration\" sometimes has data only in\n * \"definition\" but it's not clear when/why).\n */\n async getDefinition(node: Node) {\n const typeDefinition = await this.typeDefinition(node);\n const headTypeDefinition = head(typeDefinition?.body);\n if (headTypeDefinition) {\n return headTypeDefinition;\n }\n\n const definition = await this.tsserver.getDefinition(node.getSourceFile().fileName, this.getLocation(node));\n const headDefinition = head(definition?.body);\n\n return headDefinition;\n }\n\n // when we can't figure out the component/package/type of this node, we'll use the typeStr as the type.\n private async unknownExactType(node: Node, location: Location, typeStr = 'any', isTypeStrFromQuickInfo = true) {\n if (isTypeStrFromQuickInfo) {\n return new InferenceTypeSchema(location, typeStr || 'any');\n }\n const info = await this.getQuickInfo(node);\n const type = parseTypeFromQuickInfo(info);\n return new InferenceTypeSchema(location, type, typeStr);\n }\n\n // the reason for this check is to avoid infinite loop when calling `this.jump` with the same file+location\n private isDefInSameLocation(node: Node, definition: protocol.FileSpanWithContext) {\n if (definition.file !== node.getSourceFile().fileName) {\n return false;\n }\n const loc = this.getLocation(node);\n\n return loc.line === definition.start.line && loc.character === definition.start.offset;\n }\n\n /**\n * resolve a type by a node and its identifier.\n */\n async resolveType(\n node: Node & { type?: TypeNode },\n typeStr: string,\n isTypeStrFromQuickInfo = true\n ): Promise<SchemaNode> {\n const location = this.getLocation(node);\n\n // check if internal ref with typeInfo\n const internalRef = await this.getTypeRef(typeStr, this.getIdentifierKeyForNode(node), location);\n\n if (internalRef) return internalRef;\n\n // if a node has \"type\" prop, it has the type data of the node. this normally happens when the code has the type\n // explicitly, e.g. `const str: string` vs implicitly `const str = 'some-string'`, which the node won't have \"type\"\n if (node.type && ts.isTypeNode(node.type)) {\n return this.computeSchema(node.type);\n }\n\n const definition = await this.getDefinition(node);\n\n if (!definition) {\n return this.unknownExactType(node, location, typeStr, isTypeStrFromQuickInfo);\n }\n\n if (this.isDefInSameLocation(node, definition)) {\n return this.unknownExactType(node, location, typeStr, isTypeStrFromQuickInfo);\n }\n\n const definitionNode = await this.definition(definition);\n\n if (!definitionNode) {\n return this.unknownExactType(node, location, typeStr, isTypeStrFromQuickInfo);\n }\n\n const definitionNodeName = definitionNode?.getText();\n\n // check if internal ref with definition info\n const definitionInternalRef = await this.getTypeRef(\n definitionNodeName,\n this.getIdentifierKeyForNode(definitionNode),\n location\n );\n\n if (definitionInternalRef) return definitionInternalRef;\n\n const transformer = this.extractor.getTransformer(definitionNode, this);\n\n if (transformer === undefined) {\n const file = this.findFileInComponent(definition.file);\n if (!file) return this.getTypeRefForExternalPath(typeStr, definition.file, location);\n return this.unknownExactType(node, location, typeStr, isTypeStrFromQuickInfo);\n }\n\n const schemaNode = await this.visit(definitionNode);\n\n if (!schemaNode) {\n return this.unknownExactType(node, location, typeStr, isTypeStrFromQuickInfo);\n }\n\n const apiTransformer = this.extractor.getAPITransformer(schemaNode);\n return apiTransformer ? apiTransformer.transform(schemaNode, this) : schemaNode;\n }\n\n private getCompIdByPkgName(pkgName: string): ComponentID | undefined {\n return this.componentDeps.find((dep) => dep.packageName === pkgName)?.componentId;\n }\n\n async getTypeRef(typeStr: string, filePath: string, location: Location): Promise<TypeRefSchema | undefined> {\n const nodeIdentifierKey = this.getIdentifierKey(filePath);\n const mainFileIdentifierKey = this.mainFileIdentifierKey;\n\n const nodeIdentifierList = this.identifiers.get(nodeIdentifierKey);\n const mainIdentifierList = this.identifiers.get(mainFileIdentifierKey);\n\n const nodeIdentifier = new Identifier(typeStr, nodeIdentifierKey);\n const mainIdentifier = new Identifier(typeStr, mainFileIdentifierKey);\n\n const parsedNodeIdentifier = nodeIdentifierList?.find(nodeIdentifier);\n const parsedMainIdentifier = mainIdentifierList?.find(mainIdentifier);\n const isExportedFromMain = parsedMainIdentifier && ExportIdentifier.isExportIdentifier(parsedMainIdentifier);\n\n if (!parsedNodeIdentifier) return undefined;\n\n const internalRef = !isExportedFromMain;\n\n if (internalRef) {\n this.setInternalIdentifiers(filePath, new IdentifierList([parsedNodeIdentifier]));\n }\n\n return this.resolveTypeRef(parsedNodeIdentifier, location, isExportedFromMain);\n }\n\n async resolveTypeRef(\n identifier: Identifier,\n location: Location,\n isExportedFromMain?: boolean\n ): Promise<TypeRefSchema> {\n const sourceFilePath = identifier.sourceFilePath;\n\n if (!sourceFilePath || (isExportedFromMain && isRelativeImport(sourceFilePath))) {\n return new TypeRefSchema(\n location,\n identifier.id,\n undefined,\n undefined,\n !isExportedFromMain ? this.getPathRelativeToComponent(identifier.filePath) : undefined\n );\n }\n\n if (!isRelativeImport(sourceFilePath)) {\n const pkgName = this.parsePackageNameFromPath(sourceFilePath);\n const compIdByPkg = this.getCompIdByPkgName(pkgName);\n\n const compIdByPath = await this.extractor.getComponentIDByPath(sourceFilePath);\n\n if (compIdByPath) {\n return new TypeRefSchema(location, identifier.id, compIdByPath);\n }\n\n if (compIdByPkg) {\n return new TypeRefSchema(location, identifier.id, compIdByPkg);\n }\n\n // package without comp id\n return new TypeRefSchema(location, identifier.id, undefined, pkgName);\n }\n\n const relativeDir = identifier.filePath.substring(0, identifier.filePath.lastIndexOf('/'));\n const absFilePath = resolve(this.componentRootPath, relativeDir, sourceFilePath);\n\n const compFilePath = this.findFileInComponent(absFilePath);\n if (!compFilePath) {\n // @todo handle this better\n throw new Error(\n `cannot find file in component \\n source file path ${sourceFilePath}\\n \n identifier file path ${identifier.filePath}\\nrelative dir ${relativeDir}\\n\n absFilePath ${absFilePath}`\n );\n return new TypeRefSchema(location, identifier.id);\n }\n\n const idKey = this.getIdentifierKey(compFilePath?.path);\n\n // if re exported from a file, recurse until definition\n const exportedIdentifier = (this.identifiers.get(idKey)?.identifiers || []).find((i) => i.id === identifier.id);\n\n if (exportedIdentifier) {\n return this.resolveTypeRef(exportedIdentifier, location, isExportedFromMain);\n }\n\n return new TypeRefSchema(location, identifier.id);\n }\n\n async getTypeRefForExternalNode(node: Node): Promise<TypeRefSchema> {\n const info = await this.getQuickInfo(node);\n const typeStr = parseTypeFromQuickInfo(info);\n const location = this.getLocation(node);\n const filePath = this.getPath(node);\n return this.getTypeRefForExternalPath(typeStr, filePath, location);\n }\n\n async getTypeRefForExternalPath(typeStr: string, filePath: string, location: Location): Promise<TypeRefSchema> {\n const compIdByPath = await this.extractor.getComponentIDByPath(filePath);\n if (compIdByPath) {\n return new TypeRefSchema(location, typeStr, compIdByPath);\n }\n const pkgName = this.parsePackageNameFromPath(filePath);\n const compIdByPkg = this.getCompIdByPkgName(pkgName);\n if (compIdByPkg) {\n return new TypeRefSchema(location, typeStr, compIdByPkg);\n }\n return new TypeRefSchema(location, typeStr, undefined, pkgName);\n }\n\n async jsDocToDocSchema(node: Node): Promise<DocSchema | undefined> {\n if (!canHaveJsDoc(node)) {\n return undefined;\n }\n const jsDocs = getJsDoc(node);\n if (!jsDocs.length) {\n return undefined;\n }\n // not sure how common it is to have multiple JSDocs. never seen it before.\n // regardless, in typescript implementation of methods like `getJSDocDeprecatedTag()`, they use the first one. (`getFirstJSDocTag()`)\n const jsDoc = jsDocs[0];\n const location = this.getLocation(jsDoc);\n const comment = getTextOfJSDocComment(jsDoc.comment);\n const tags = jsDoc.tags ? await pMapSeries(jsDoc.tags, (tag) => tagParser(tag, this, this.formatter)) : undefined;\n return new DocSchema(location, jsDoc.getText(), comment, tags);\n }\n}\n"],"mappings":"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"}
@@ -2,7 +2,7 @@ import { Node } from 'typescript';
2
2
  import { SchemaNode } from '@teambit/semantics.entities.semantic-schema';
3
3
  import { SchemaExtractorContext } from './schema-extractor-context';
4
4
  import { Identifier } from './identifier';
5
- export declare type SchemaTransformer = {
5
+ export type SchemaTransformer = {
6
6
  /**
7
7
  * determine whether to apply schema on given node.
8
8
  */
@@ -13,7 +13,7 @@ export declare type SchemaTransformer = {
13
13
  */
14
14
  transform(node: Node, context: SchemaExtractorContext): Promise<SchemaNode>;
15
15
  };
16
- export declare type SchemaNodeTransformer = {
16
+ export type SchemaNodeTransformer = {
17
17
  predicate(node: SchemaNode): boolean;
18
18
  transform(node: SchemaNode, context: SchemaExtractorContext): Promise<SchemaNode>;
19
19
  };
@@ -16,8 +16,7 @@ const exportTransformer = mapping => {
16
16
  return context => {
17
17
  const visit = node => {
18
18
  if (_typescript().default.isExportDeclaration(node)) {
19
- var _node$moduleSpecifier;
20
- let moduleSpecifier = (_node$moduleSpecifier = node.moduleSpecifier) === null || _node$moduleSpecifier === void 0 ? void 0 : _node$moduleSpecifier.getText().slice(1, -1);
19
+ let moduleSpecifier = node.moduleSpecifier?.getText().slice(1, -1);
21
20
  for (const [oldName, newName] of Object.entries(mapping)) {
22
21
  if (moduleSpecifier && moduleSpecifier.includes(oldName)) {
23
22
  moduleSpecifier = moduleSpecifier.replace(oldName, newName);
@@ -1 +1 @@
1
- {"version":3,"names":["_typescript","data","_interopRequireDefault","require","obj","__esModule","default","exportTransformer","mapping","context","visit","node","ts","isExportDeclaration","_node$moduleSpecifier","moduleSpecifier","getText","slice","oldName","newName","Object","entries","includes","replace","updatedExportClause","exportClause","isNamedExports","transformedElements","elements","map","element","newElementName","name","text","startsWith","endsWith","factory","updateExportSpecifier","propertyName","createIdentifier","updateNamedExports","updateExportDeclaration","decorators","modifiers","isTypeOnly","createStringLiteral","undefined","isExportAssignment","expression","isIdentifier","updateExportAssignment","visitEachChild","visitNode","exports"],"sources":["export.ts"],"sourcesContent":["import ts from 'typescript';\nimport { SourceFileTransformer } from '.';\n\nexport const exportTransformer: SourceFileTransformer = (mapping: Record<string, string>) => {\n return (context) => {\n const visit: ts.Visitor = (node) => {\n if (ts.isExportDeclaration(node)) {\n let moduleSpecifier = node.moduleSpecifier?.getText().slice(1, -1);\n for (const [oldName, newName] of Object.entries(mapping)) {\n if (moduleSpecifier && moduleSpecifier.includes(oldName)) {\n moduleSpecifier = moduleSpecifier.replace(oldName, newName);\n }\n }\n let updatedExportClause;\n\n if (node.exportClause && ts.isNamedExports(node.exportClause)) {\n const transformedElements = node.exportClause.elements.map((element) => {\n let newElementName = element.name.text;\n\n for (const [oldName, newName] of Object.entries(mapping)) {\n if (newElementName.startsWith(oldName) || newElementName.endsWith(oldName)) {\n newElementName = newElementName.replace(oldName, newName);\n }\n }\n\n return ts.factory.updateExportSpecifier(\n element,\n false,\n element.propertyName,\n ts.factory.createIdentifier(newElementName)\n );\n });\n\n updatedExportClause = ts.factory.updateNamedExports(node.exportClause, transformedElements);\n }\n\n return ts.factory.updateExportDeclaration(\n node,\n node.decorators,\n node.modifiers,\n node.isTypeOnly,\n updatedExportClause,\n node.moduleSpecifier ? ts.factory.createStringLiteral(moduleSpecifier || '') : undefined,\n undefined\n );\n }\n\n if (ts.isExportAssignment(node)) {\n let expression = node.expression;\n\n if (ts.isIdentifier(expression)) {\n for (const [oldName, newName] of Object.entries(mapping)) {\n if (expression.getText().startsWith(oldName) || expression.getText().endsWith(oldName)) {\n expression = ts.factory.createIdentifier(expression.getText().replace(oldName, newName));\n }\n }\n }\n\n return ts.factory.updateExportAssignment(node, node.decorators, node.modifiers, expression);\n }\n\n return ts.visitEachChild(node, visit, context);\n };\n return (node) => ts.visitNode(node, visit);\n };\n};\n"],"mappings":"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"}
1
+ {"version":3,"names":["_typescript","data","_interopRequireDefault","require","obj","__esModule","default","exportTransformer","mapping","context","visit","node","ts","isExportDeclaration","moduleSpecifier","getText","slice","oldName","newName","Object","entries","includes","replace","updatedExportClause","exportClause","isNamedExports","transformedElements","elements","map","element","newElementName","name","text","startsWith","endsWith","factory","updateExportSpecifier","propertyName","createIdentifier","updateNamedExports","updateExportDeclaration","decorators","modifiers","isTypeOnly","createStringLiteral","undefined","isExportAssignment","expression","isIdentifier","updateExportAssignment","visitEachChild","visitNode","exports"],"sources":["export.ts"],"sourcesContent":["import ts from 'typescript';\nimport { SourceFileTransformer } from '.';\n\nexport const exportTransformer: SourceFileTransformer = (mapping: Record<string, string>) => {\n return (context) => {\n const visit: ts.Visitor = (node) => {\n if (ts.isExportDeclaration(node)) {\n let moduleSpecifier = node.moduleSpecifier?.getText().slice(1, -1);\n for (const [oldName, newName] of Object.entries(mapping)) {\n if (moduleSpecifier && moduleSpecifier.includes(oldName)) {\n moduleSpecifier = moduleSpecifier.replace(oldName, newName);\n }\n }\n let updatedExportClause;\n\n if (node.exportClause && ts.isNamedExports(node.exportClause)) {\n const transformedElements = node.exportClause.elements.map((element) => {\n let newElementName = element.name.text;\n\n for (const [oldName, newName] of Object.entries(mapping)) {\n if (newElementName.startsWith(oldName) || newElementName.endsWith(oldName)) {\n newElementName = newElementName.replace(oldName, newName);\n }\n }\n\n return ts.factory.updateExportSpecifier(\n element,\n false,\n element.propertyName,\n ts.factory.createIdentifier(newElementName)\n );\n });\n\n updatedExportClause = ts.factory.updateNamedExports(node.exportClause, transformedElements);\n }\n\n return ts.factory.updateExportDeclaration(\n node,\n node.decorators,\n node.modifiers,\n node.isTypeOnly,\n updatedExportClause,\n node.moduleSpecifier ? ts.factory.createStringLiteral(moduleSpecifier || '') : undefined,\n undefined\n );\n }\n\n if (ts.isExportAssignment(node)) {\n let expression = node.expression;\n\n if (ts.isIdentifier(expression)) {\n for (const [oldName, newName] of Object.entries(mapping)) {\n if (expression.getText().startsWith(oldName) || expression.getText().endsWith(oldName)) {\n expression = ts.factory.createIdentifier(expression.getText().replace(oldName, newName));\n }\n }\n }\n\n return ts.factory.updateExportAssignment(node, node.decorators, node.modifiers, expression);\n }\n\n return ts.visitEachChild(node, visit, context);\n };\n return (node) => ts.visitNode(node, visit);\n };\n};\n"],"mappings":"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"}