-
Notifications
You must be signed in to change notification settings - Fork 255
/
parser.ts
1473 lines (1261 loc) · 41 KB
/
parser.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import * as fs from 'fs';
import * as path from 'path';
import * as ts from 'typescript';
import { buildFilter } from './buildFilter';
import { SymbolDisplayPart } from 'typescript';
import { trimFileName } from './trimFileName';
type InterfaceOrTypeAliasDeclaration =
| ts.TypeAliasDeclaration
| ts.InterfaceDeclaration;
export interface StringIndexedObject<T> {
[key: string]: T;
}
export interface ComponentDoc {
expression?: ts.Symbol;
rootExpression?: ts.Symbol;
displayName: string;
filePath: string;
description: string;
props: Props;
methods: Method[];
tags?: StringIndexedObject<string>;
}
export interface Props extends StringIndexedObject<PropItem> {}
export interface PropItem {
name: string;
required: boolean;
type: PropItemType;
description: string;
defaultValue: any;
parent?: ParentType;
declarations?: ParentType[];
tags?: {};
}
export interface Method {
name: string;
docblock: string;
modifiers: string[];
params: MethodParameter[];
returns?: {
description?: string | null;
type?: string;
} | null;
description: string;
}
export interface MethodParameter {
name: string;
description?: string | null;
type: MethodParameterType;
}
export interface MethodParameterType {
name: string;
}
export interface Component {
name: string;
}
export interface PropItemType {
name: string;
value?: any;
raw?: string;
}
export interface ParentType {
name: string;
fileName: string;
}
export type PropFilter = (props: PropItem, component: Component) => boolean;
export type ComponentNameResolver = (
exp: ts.Symbol,
source: ts.SourceFile
) => string | undefined | null | false;
export interface ParserOptions {
propFilter?: StaticPropFilter | PropFilter;
componentNameResolver?: ComponentNameResolver;
shouldExtractLiteralValuesFromEnum?: boolean;
shouldRemoveUndefinedFromOptional?: boolean;
shouldExtractValuesFromUnion?: boolean;
shouldSortUnions?: boolean;
skipChildrenPropWithoutDoc?: boolean;
savePropValueAsString?: boolean;
shouldIncludePropTagMap?: boolean;
shouldIncludeExpression?: boolean;
customComponentTypes?: string[];
}
export interface StaticPropFilter {
skipPropsWithName?: string[] | string;
skipPropsWithoutDoc?: boolean;
}
export const defaultParserOpts: ParserOptions = {};
export interface FileParser {
parse(filePathOrPaths: string | string[]): ComponentDoc[];
parseWithProgramProvider(
filePathOrPaths: string | string[],
programProvider?: () => ts.Program
): ComponentDoc[];
}
export const defaultOptions: ts.CompilerOptions = {
jsx: ts.JsxEmit.React,
module: ts.ModuleKind.CommonJS,
target: ts.ScriptTarget.Latest
};
/**
* Parses a file with default TS options
* @param filePathOrPaths component file that should be parsed
* @param parserOpts options used to parse the files
*/
export function parse(
filePathOrPaths: string | string[],
parserOpts: ParserOptions = defaultParserOpts
) {
return withCompilerOptions(defaultOptions, parserOpts).parse(filePathOrPaths);
}
/**
* Constructs a parser for a default configuration.
*/
export function withDefaultConfig(
parserOpts: ParserOptions = defaultParserOpts
): FileParser {
return withCompilerOptions(defaultOptions, parserOpts);
}
/**
* Constructs a parser for a specified tsconfig file.
*/
export function withCustomConfig(
tsconfigPath: string,
parserOpts: ParserOptions
): FileParser {
const basePath = path.dirname(tsconfigPath);
const { config, error } = ts.readConfigFile(tsconfigPath, filename =>
fs.readFileSync(filename, 'utf8')
);
if (error !== undefined) {
// tslint:disable-next-line: max-line-length
const errorText = `Cannot load custom tsconfig.json from provided path: ${tsconfigPath}, with error code: ${error.code}, message: ${error.messageText}`;
throw new Error(errorText);
}
const { options, errors } = ts.parseJsonConfigFileContent(
config,
ts.sys,
basePath,
{},
tsconfigPath
);
if (errors && errors.length) {
if (errors[0] instanceof Error) throw errors[0];
else if (errors[0].messageText)
throw new Error(`TS${errors[0].code}: ${errors[0].messageText}`);
else throw new Error(JSON.stringify(errors[0]));
}
return withCompilerOptions(options, parserOpts);
}
/**
* Constructs a parser for a specified set of TS compiler options.
*/
export function withCompilerOptions(
compilerOptions: ts.CompilerOptions,
parserOpts: ParserOptions = defaultParserOpts
): FileParser {
return {
parse(filePathOrPaths: string | string[]): ComponentDoc[] {
return parseWithProgramProvider(
filePathOrPaths,
compilerOptions,
parserOpts
);
},
parseWithProgramProvider(filePathOrPaths, programProvider) {
return parseWithProgramProvider(
filePathOrPaths,
compilerOptions,
parserOpts,
programProvider
);
}
};
}
const isOptional = (prop: ts.Symbol) =>
// tslint:disable-next-line:no-bitwise
(prop.getFlags() & ts.SymbolFlags.Optional) !== 0;
interface JSDoc {
description: string;
fullComment: string;
tags: StringIndexedObject<string>;
}
const defaultJSDoc: JSDoc = {
description: '',
fullComment: '',
tags: {}
};
export class Parser {
private readonly checker: ts.TypeChecker;
private readonly propFilter: PropFilter;
private readonly shouldRemoveUndefinedFromOptional: boolean;
private readonly shouldExtractLiteralValuesFromEnum: boolean;
private readonly shouldExtractValuesFromUnion: boolean;
private readonly shouldSortUnions: boolean;
private readonly savePropValueAsString: boolean;
private readonly shouldIncludePropTagMap: boolean;
private readonly shouldIncludeExpression: boolean;
constructor(program: ts.Program, opts: ParserOptions) {
const {
savePropValueAsString,
shouldExtractLiteralValuesFromEnum,
shouldRemoveUndefinedFromOptional,
shouldExtractValuesFromUnion,
shouldSortUnions,
shouldIncludePropTagMap,
shouldIncludeExpression
} = opts;
this.checker = program.getTypeChecker();
this.propFilter = buildFilter(opts);
this.shouldExtractLiteralValuesFromEnum = Boolean(
shouldExtractLiteralValuesFromEnum
);
this.shouldRemoveUndefinedFromOptional = Boolean(
shouldRemoveUndefinedFromOptional
);
this.shouldExtractValuesFromUnion = Boolean(shouldExtractValuesFromUnion);
this.shouldSortUnions = Boolean(shouldSortUnions);
this.savePropValueAsString = Boolean(savePropValueAsString);
this.shouldIncludePropTagMap = Boolean(shouldIncludePropTagMap);
this.shouldIncludeExpression = Boolean(shouldIncludeExpression);
}
private getComponentFromExpression(exp: ts.Symbol) {
const declaration = exp.valueDeclaration || exp.declarations![0];
const type = this.checker.getTypeOfSymbolAtLocation(exp, declaration);
const typeSymbol = type.symbol || type.aliasSymbol;
if (!typeSymbol) {
return exp;
}
const symbolName = typeSymbol.getName();
if (
(symbolName === 'MemoExoticComponent' ||
symbolName === 'ForwardRefExoticComponent') &&
exp.valueDeclaration &&
ts.isExportAssignment(exp.valueDeclaration) &&
ts.isCallExpression(exp.valueDeclaration.expression)
) {
const component = this.checker.getSymbolAtLocation(
exp.valueDeclaration.expression.arguments[0]
);
if (component) {
exp = component;
}
}
return exp;
}
public getComponentInfo(
exp: ts.Symbol,
source: ts.SourceFile,
componentNameResolver: ComponentNameResolver = () => undefined,
customComponentTypes: ParserOptions['customComponentTypes'] = []
): ComponentDoc | null {
if (!!exp.declarations && exp.declarations.length === 0) {
return null;
}
let rootExp = this.getComponentFromExpression(exp);
const declaration = rootExp.valueDeclaration || rootExp.declarations![0];
const type = this.checker.getTypeOfSymbolAtLocation(rootExp, declaration);
let commentSource = rootExp;
const typeSymbol = type.symbol || type.aliasSymbol;
const originalName = rootExp.getName();
const filePath = source.fileName;
if (!rootExp.valueDeclaration) {
if (!typeSymbol && (rootExp.flags & ts.SymbolFlags.Alias) !== 0) {
commentSource = this.checker.getAliasedSymbol(commentSource);
} else if (!typeSymbol) {
return null;
} else {
rootExp = typeSymbol;
const expName = rootExp.getName();
const defaultComponentTypes = [
'__function',
'StatelessComponent',
'Stateless',
'StyledComponentClass',
'StyledComponent',
'IStyledComponent',
'FunctionComponent',
'ForwardRefExoticComponent',
'MemoExoticComponent'
];
const supportedComponentTypes = [
...defaultComponentTypes,
...customComponentTypes
];
if (supportedComponentTypes.indexOf(expName) !== -1) {
commentSource = this.checker.getAliasedSymbol(commentSource);
} else {
commentSource = rootExp;
}
}
} else if (
type.symbol &&
(ts.isPropertyAccessExpression(declaration) ||
ts.isPropertyDeclaration(declaration))
) {
commentSource = type.symbol;
}
// Skip over PropTypes that are exported
if (
typeSymbol &&
(typeSymbol.getEscapedName() === 'Requireable' ||
typeSymbol.getEscapedName() === 'Validator')
) {
return null;
}
const propsType =
this.extractPropsFromTypeIfStatelessComponent(type) ||
this.extractPropsFromTypeIfStatefulComponent(type);
const nameSource = originalName === 'default' ? rootExp : commentSource;
const resolvedComponentName = componentNameResolver(nameSource, source);
const { description, tags } = this.findDocComment(commentSource);
const displayName =
resolvedComponentName ||
tags.visibleName ||
computeComponentName(nameSource, source, customComponentTypes);
const methods = this.getMethodsInfo(type);
let result: ComponentDoc | null = null;
if (propsType) {
if (!commentSource.valueDeclaration) {
return null;
}
const defaultProps = this.extractDefaultPropsFromComponent(
commentSource,
commentSource.valueDeclaration.getSourceFile()
);
const props = this.getPropsInfo(propsType, defaultProps);
for (const propName of Object.keys(props)) {
const prop = props[propName];
const component: Component = { name: displayName };
if (!this.propFilter(prop, component)) {
delete props[propName];
}
}
result = {
tags,
filePath,
description,
displayName,
methods,
props
};
} else if (description && displayName) {
result = {
tags,
filePath,
description,
displayName,
methods,
props: {}
};
}
if (result !== null && this.shouldIncludeExpression) {
result.expression = rootExp;
result.rootExpression = exp;
}
return result;
}
public extractPropsFromTypeIfStatelessComponent(
type: ts.Type
): ts.Symbol | null {
const callSignatures = type.getCallSignatures();
if (callSignatures.length) {
// Could be a stateless component. Is a function, so the props object we're interested
// in is the (only) parameter.
for (const sig of callSignatures) {
const params = sig.getParameters();
if (params.length === 0) {
continue;
}
// Maybe we could check return type instead,
// but not sure if Element, ReactElement<T> are all possible values
const propsParam = params[0];
if (propsParam.name === 'props' || params.length === 1) {
return propsParam;
}
}
}
return null;
}
public extractPropsFromTypeIfStatefulComponent(
type: ts.Type
): ts.Symbol | null {
const constructSignatures = type.getConstructSignatures();
if (constructSignatures.length) {
// React.Component. Is a class, so the props object we're interested
// in is the type of 'props' property of the object constructed by the class.
for (const sig of constructSignatures) {
const instanceType = sig.getReturnType();
const props = instanceType.getProperty('props');
if (props) {
return props;
}
}
}
return null;
}
public extractMembersFromType(type: ts.Type): ts.Symbol[] {
const methodSymbols: ts.Symbol[] = [];
/**
* Need to loop over properties first so we capture any
* static methods. static methods aren't captured in type.symbol.members
*/
type.getProperties().forEach(property => {
// Only add members, don't add non-member properties
if (this.getCallSignature(property)) {
methodSymbols.push(property);
}
});
if (type.symbol && type.symbol.members) {
type.symbol.members.forEach(member => {
methodSymbols.push(member);
});
}
return methodSymbols;
}
public getMethodsInfo(type: ts.Type): Method[] {
const members = this.extractMembersFromType(type);
const methods: Method[] = [];
members.forEach(member => {
if (!this.isTaggedPublic(member)) {
return;
}
const name = member.getName();
const docblock = this.getFullJsDocComment(member).fullComment;
const callSignature = this.getCallSignature(member);
const params = this.getParameterInfo(callSignature);
const description = ts.displayPartsToString(
member.getDocumentationComment(this.checker)
);
const returnType = this.checker.typeToString(
callSignature.getReturnType()
);
const returnDescription = ts.displayPartsToString(
this.getReturnDescription(member)
);
const modifiers = this.getModifiers(member);
methods.push({
description,
docblock,
modifiers,
name,
params,
returns: returnDescription
? {
description: returnDescription,
type: returnType
}
: null
});
});
return methods;
}
public getModifiers(member: ts.Symbol) {
const modifiers: string[] = [];
if (!member.valueDeclaration) {
return modifiers;
}
const flags = ts.getCombinedModifierFlags(member.valueDeclaration);
const isStatic = (flags & ts.ModifierFlags.Static) !== 0; // tslint:disable-line no-bitwise
if (isStatic) {
modifiers.push('static');
}
return modifiers;
}
public getParameterInfo(callSignature: ts.Signature): MethodParameter[] {
return callSignature.parameters.map(param => {
const paramType = this.checker.getTypeOfSymbolAtLocation(
param,
param.valueDeclaration!
);
const paramDeclaration = this.checker.symbolToParameterDeclaration(
param,
undefined,
undefined
);
const isOptionalParam: boolean = !!(
paramDeclaration && paramDeclaration.questionToken
);
return {
description:
ts.displayPartsToString(
param.getDocumentationComment(this.checker)
) || null,
name: param.getName() + (isOptionalParam ? '?' : ''),
type: { name: this.checker.typeToString(paramType) }
};
});
}
public getCallSignature(symbol: ts.Symbol) {
const symbolType = this.checker.getTypeOfSymbolAtLocation(
symbol,
symbol.valueDeclaration!
);
return symbolType.getCallSignatures()[0];
}
public isTaggedPublic(symbol: ts.Symbol) {
const jsDocTags = symbol.getJsDocTags();
return Boolean(jsDocTags.find(tag => tag.name === 'public'));
}
public getReturnDescription(
symbol: ts.Symbol
): SymbolDisplayPart[] | undefined {
const tags = symbol.getJsDocTags();
const returnTag = tags.find(tag => tag.name === 'returns');
if (!returnTag || !Array.isArray(returnTag.text)) {
return;
}
return returnTag.text;
}
private getValuesFromUnionType(type: ts.Type): string | number {
if (type.isStringLiteral()) return `"${type.value}"`;
if (type.isNumberLiteral()) return `${type.value}`;
return this.checker.typeToString(type);
}
private getInfoFromUnionType(
type: ts.Type
): {
value: string | number;
} & Partial<JSDoc> {
let commentInfo = {};
if (type.getSymbol()) {
commentInfo = { ...this.getFullJsDocComment(type.getSymbol()!) };
}
return {
value: this.getValuesFromUnionType(type),
...commentInfo
};
}
public getDocgenType(propType: ts.Type, isRequired: boolean): PropItemType {
// When we are going to process the type, we check if this type has a constraint (is a generic type with constraint)
if (propType.getConstraint()) {
// If so, we assing the property the type that is the constraint
propType = propType.getConstraint()!;
}
let propTypeString = this.checker.typeToString(propType);
if (this.shouldRemoveUndefinedFromOptional && !isRequired) {
propTypeString = propTypeString.replace(' | undefined', '');
}
if (propType.isUnion()) {
if (
this.shouldExtractValuesFromUnion ||
(this.shouldExtractLiteralValuesFromEnum &&
propType.types.every(
type =>
type.getFlags() &
(ts.TypeFlags.StringLiteral |
ts.TypeFlags.NumberLiteral |
ts.TypeFlags.EnumLiteral |
ts.TypeFlags.Undefined)
))
) {
let value = propType.types.map(type => this.getInfoFromUnionType(type));
if (this.shouldRemoveUndefinedFromOptional && !isRequired) {
value = value.filter(option => option.value != 'undefined');
}
if (this.shouldSortUnions) {
value.sort((a, b) =>
a.value.toString().localeCompare(b.value.toString())
);
}
return {
name: 'enum',
raw: propTypeString,
value
};
}
}
if (this.shouldRemoveUndefinedFromOptional && !isRequired) {
propTypeString = propTypeString.replace(' | undefined', '');
}
return { name: propTypeString };
}
public getPropsInfo(
propsObj: ts.Symbol,
defaultProps: StringIndexedObject<string> = {}
): Props {
if (!propsObj.valueDeclaration) {
return {};
}
const propsType = this.checker.getTypeOfSymbolAtLocation(
propsObj,
propsObj.valueDeclaration
);
const baseProps = propsType.getApparentProperties();
let propertiesOfProps = baseProps;
if (propsType.isUnionOrIntersection()) {
propertiesOfProps = [
// Resolve extra properties in the union/intersection
...(propertiesOfProps = (this
.checker as any).getAllPossiblePropertiesOfTypes(propsType.types)),
// But props we already have override those as they are already correct.
...baseProps
];
if (!propertiesOfProps.length) {
const subTypes = (this.checker as any).getAllPossiblePropertiesOfTypes(
propsType.types.reduce<ts.Symbol[]>(
// @ts-ignore
(all, t) => [...all, ...(t.types || [])],
[]
)
);
propertiesOfProps = [...subTypes, ...baseProps];
}
}
const result: Props = {};
propertiesOfProps.forEach(prop => {
const propName = prop.getName();
// Find type of prop by looking in context of the props object itself.
const propType = this.checker.getTypeOfSymbolAtLocation(
prop,
propsObj.valueDeclaration!
);
const jsDocComment = this.findDocComment(prop);
const hasCodeBasedDefault = defaultProps[propName] !== undefined;
let defaultValue: { value: any } | null = null;
if (hasCodeBasedDefault) {
defaultValue = { value: defaultProps[propName] };
} else if (jsDocComment.tags.default) {
defaultValue = { value: jsDocComment.tags.default };
}
const parent = getParentType(prop);
const parents = getDeclarations(prop);
const declarations = prop.declarations || [];
const baseProp = baseProps.find(p => p.getName() === propName);
const required =
!isOptional(prop) &&
!hasCodeBasedDefault &&
// If in a intersection or union check original declaration for "?"
// @ts-ignore
declarations.every(d => !d.questionToken) &&
(!baseProp || !isOptional(baseProp));
const type = jsDocComment.tags.type
? {
name: jsDocComment.tags.type
}
: this.getDocgenType(propType, required);
const propTags = this.shouldIncludePropTagMap
? { tags: jsDocComment.tags }
: {};
const description = this.shouldIncludePropTagMap
? jsDocComment.description.replace(/\r\n/g, '\n')
: jsDocComment.fullComment.replace(/\r\n/g, '\n');
result[propName] = {
defaultValue,
description: description,
name: propName,
parent,
declarations: parents,
required,
type,
...propTags
};
});
return result;
}
public findDocComment(symbol: ts.Symbol): JSDoc {
const comment = this.getFullJsDocComment(symbol);
if (comment.fullComment || comment.tags.default) {
return comment;
}
const rootSymbols = this.checker.getRootSymbols(symbol);
const commentsOnRootSymbols = rootSymbols
.filter(x => x !== symbol)
.map(x => this.getFullJsDocComment(x))
.filter(x => !!x.fullComment || !!comment.tags.default);
if (commentsOnRootSymbols.length) {
return commentsOnRootSymbols[0];
}
return defaultJSDoc;
}
/**
* Extracts a full JsDoc comment from a symbol, even
* though TypeScript has broken down the JsDoc comment into plain
* text and JsDoc tags.
*/
public getFullJsDocComment(symbol: ts.Symbol): JSDoc {
// in some cases this can be undefined (Pick<Type, 'prop1'|'prop2'>)
if (symbol.getDocumentationComment === undefined) {
return defaultJSDoc;
}
let mainComment = ts.displayPartsToString(
symbol.getDocumentationComment(this.checker)
);
if (mainComment) {
mainComment = mainComment.replace(/\r\n/g, '\n');
}
const tags = symbol.getJsDocTags() || [];
const tagComments: string[] = [];
const tagMap: StringIndexedObject<string> = {};
tags.forEach(tag => {
const trimmedText = ts.displayPartsToString(tag.text).trim();
const currentValue = tagMap[tag.name];
tagMap[tag.name] = currentValue
? currentValue + '\n' + trimmedText
: trimmedText;
if (['default', 'type'].indexOf(tag.name) < 0) {
tagComments.push(formatTag(tag));
}
});
return {
description: mainComment,
fullComment: (mainComment + '\n' + tagComments.join('\n')).trim(),
tags: tagMap
};
}
getFunctionStatement(statement: ts.Statement) {
if (ts.isFunctionDeclaration(statement)) {
return statement;
}
if (ts.isVariableStatement(statement)) {
let initializer =
statement.declarationList &&
statement.declarationList.declarations[0].initializer;
// Look at forwardRef function argument
if (initializer && ts.isCallExpression(initializer)) {
const symbol = this.checker.getSymbolAtLocation(initializer.expression);
if (!symbol || symbol.getName() !== 'forwardRef') return;
initializer = initializer.arguments[0];
}
if (
initializer &&
(ts.isArrowFunction(initializer) ||
ts.isFunctionExpression(initializer))
) {
return initializer;
}
}
}
public extractDefaultPropsFromComponent(
symbol: ts.Symbol,
source: ts.SourceFile
) {
let possibleStatements = [
...source.statements
// ensure that name property is available
.filter(stmt => !!(stmt as ts.ClassDeclaration).name)
.filter(
stmt =>
this.checker.getSymbolAtLocation(
(stmt as ts.ClassDeclaration).name!
) === symbol
),
...source.statements.filter(
stmt => ts.isExpressionStatement(stmt) || ts.isVariableStatement(stmt)
)
];
return possibleStatements.reduce((res, statement) => {
if (statementIsClassDeclaration(statement) && statement.members.length) {
const possibleDefaultProps = statement.members.filter(
member =>
member.name && getPropertyName(member.name) === 'defaultProps'
);
if (!possibleDefaultProps.length) {
return res;
}
const defaultProps = possibleDefaultProps[0];
let initializer = (defaultProps as ts.PropertyDeclaration).initializer;
if (!initializer) {
return res;
}
let properties = (initializer as ts.ObjectLiteralExpression).properties;
while (ts.isIdentifier(initializer as ts.Identifier)) {
const defaultPropsReference = this.checker.getSymbolAtLocation(
initializer as ts.Node
);
if (defaultPropsReference) {
const declarations = defaultPropsReference.getDeclarations();
if (declarations) {
if (ts.isImportSpecifier(declarations[0])) {
var symbol = this.checker.getSymbolAtLocation(
declarations[0].name
);
if (!symbol) {
continue;
}
var aliasedSymbol = this.checker.getAliasedSymbol(symbol);
if (
aliasedSymbol &&
aliasedSymbol.declarations &&
aliasedSymbol.declarations.length
) {
initializer = (aliasedSymbol
.declarations[0] as ts.VariableDeclaration).initializer;
} else {
continue;
}
} else {
initializer = (declarations[0] as ts.VariableDeclaration)
.initializer;
}
properties = (initializer as ts.ObjectLiteralExpression)
.properties;
}
}
}
let propMap = {};
if (properties) {
propMap = this.getPropMap(
properties as ts.NodeArray<ts.PropertyAssignment>
);
}
return {
...res,
...propMap
};
} else if (statementIsStatelessWithDefaultProps(statement)) {
let propMap = {};
(statement as ts.ExpressionStatement).getChildren().forEach(child => {
let { right } = child as ts.BinaryExpression;
if (right && ts.isIdentifier(right)) {
const value = ((source as any).locals as ts.SymbolTable).get(
right.escapedText
);
if (
value &&
value.valueDeclaration &&
ts.isVariableDeclaration(value.valueDeclaration) &&
value.valueDeclaration.initializer
) {
right = value.valueDeclaration.initializer;
}
}
if (right) {
const { properties } = right as ts.ObjectLiteralExpression;
if (properties) {
propMap = this.getPropMap(
properties as ts.NodeArray<ts.PropertyAssignment>
);
}
}
});
return {
...res,
...propMap
};
} else {
}
const functionStatement = this.getFunctionStatement(statement);
// Extracting default values from props destructuring
if (
functionStatement &&
functionStatement.parameters &&
functionStatement.parameters.length
) {
const { name } = functionStatement.parameters[0];
if (ts.isObjectBindingPattern(name)) {
return {
...res,
...this.getPropMap(name.elements)
};
}
}
return res;
}, {});
}
public getLiteralValueFromImportSpecifier(
property: ts.ImportSpecifier
): string | boolean | number | null | undefined {
if (ts.isImportSpecifier(property)) {
const symbol = this.checker.getSymbolAtLocation(property.name);