-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathJsDocRenderer.ts
330 lines (274 loc) · 10.3 KB
/
JsDocRenderer.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
import * as ts from "typescript"
import * as path from "path"
import { Example, JsDocGenerator, ModulePathMapper } from "./JsDocGenerator"
import { parse as parseJsDoc, Tag } from "doctrine"
import { Class, Descriptor, MethodDescriptor, Property, Type, Variable } from "./psi"
export class JsDocRenderer {
indent: string = ""
constructor(private readonly generator: JsDocGenerator) {
}
normalizeDescription(comment: string) {
return this.indent + " * " + comment
.split("\n")
.map(it => it.trim())
.filter(it => it != "*/" && it.length > 0)
.join(`\n${this.indent} * `)
}
normalizeDescription2(comment: string) {
return this.indent + " * " + comment
.split("\n")
.map(it => it.trim())
.join(`\n${this.indent} * `)
}
formatComment(node: ts.Node, tags: Array<string>, description?: string): string {
const indent = this.indent
let result = `${indent}/**\n`
if (description == null) {
const comment = JsDocRenderer.getComment(node)
if (comment != null) {
result += `${this.normalizeDescription(comment)}\n`
}
}
else if (description.length > 0) {
result += `${this.normalizeDescription2(description)}\n`
}
// must be added after user description
if (tags.length > 0) {
for (const tag of tags) {
result += `${indent} * ${tag}\n`
}
}
result += `${indent} */\n`
return result
}
renderClassOrInterface(descriptor: Class, modulePathMapper: ModulePathMapper, examples?: Array<Example>): string {
this.indent = ""
const tags: Array<string> = []
if (descriptor.isInterface) {
tags.push(`@interface ${descriptor.modulePath}.${descriptor.name}`)
}
for (const parent of descriptor.parents) {
// ignore <> type params because JsDoc expects namepath, but not type expression
tags.push(`@extends ${renderType(parent, modulePathMapper, true)}`)
}
JsDocRenderer.renderProperties(descriptor.properties, tags, modulePathMapper)
if (examples != null) {
for (const example of examples) {
tags.push(`@example <caption>${example.name}</caption> @lang ${example.lang}\n * ${example.content.trim().split("\n").join("\n * ")}`)
}
}
let result = this.formatComment(descriptor.node, tags, parseExistingJsDoc(descriptor.node, tags) || "")
result += `export class ${descriptor.name} {\n`
this.indent = " "
for (const method of descriptor.methods) {
result += this.renderMethod(method, modulePathMapper, descriptor)
if (method !== descriptor.methods[descriptor.methods.length - 1]) {
result += "\n"
}
}
this.indent = ""
result += "}\n\n"
return result
}
renderMethod(method: MethodDescriptor, modulePathMapper: ModulePathMapper, classDescriptor: Class | null): string {
const tags = method.tags.slice()
const paramNameToInfo = new Map<string, Tag>()
let returns: Tag | null = null
const parsed = method.jsDoc
if (parsed != null) {
for (const tag of parsed.tags) {
if (tag.title === "param") {
if (tag.name != null) {
paramNameToInfo.set(tag.name, tag)
}
}
else if (tag.title === "returns" || tag.title === "return") {
returns = tag
}
else {
tags.push(printTag(tag))
}
}
}
for (const param of method.node.parameters) {
let name = (<ts.Identifier>param.name).text
let text = `@param`
const type = param.type
if (type != null) {
let namePathByNode = this.generator.getTypeNamePathByNode(type)
if (namePathByNode == null) {
console.warn("cannot get namePathByNode for " + type)
}
else {
text += ` ${renderTypes(namePathByNode!!, modulePathMapper)}`
}
}
text += ` ${name}`
const tag = paramNameToInfo.get(name)
if (tag != null && tag.description != null) {
text += ` ${tag.description}`
}
tags.push(text)
}
if (classDescriptor != null) {
// https://github.com/jsdoc3/jsdoc/issues/1137#issuecomment-281257286
tags.push(`@function ${classDescriptor.modulePath}.${classDescriptor.name}#${method.name}`)
}
const signature = this.generator.program.getTypeChecker().getSignatureFromDeclaration(method.node)!!
const returnTypes = this.generator.getTypeNames(signature.getReturnType(), method.node)!!
// http://stackoverflow.com/questions/4759175/how-to-return-void-in-jsdoc
if (!returnTypes.includes("void")) {
let text = `@returns ${renderTypes(returnTypes, modulePathMapper)}`
if (returns != null) {
text += ` ${returns.description}`
}
tags.push(text)
}
let result = this.formatComment(method.node, tags, (parsed == null ? "" : parsed.description) || "")
result += `${this.indent}`
if (method.node.kind === ts.SyntaxKind.FunctionDeclaration) {
result += "export function "
}
result += `${method.name}() {}\n`
return result
}
static getComment(node: ts.Node): string | null {
const sourceFile = node.getSourceFile()
const leadingCommentRanges = ts.getLeadingCommentRanges(sourceFile.text, node.pos)
if (leadingCommentRanges == null || leadingCommentRanges.length === 0) {
return null
}
const commentRange = leadingCommentRanges[0]
if (sourceFile.text[commentRange.pos] === "/" && sourceFile.text[commentRange.pos + 1] === "*" && sourceFile.text[commentRange.pos + 2] == "*") {
return sourceFile.text.slice(commentRange.pos + 3, commentRange.end).trim()
}
return null
}
renderVariable(descriptor: Variable, modulePathMapper: ModulePathMapper): string {
this.indent = ""
const tags = [`@type ${renderTypes(descriptor.types, modulePathMapper)}`]
if (descriptor.isConst) {
tags.push("@constant")
}
let result = this.formatComment(descriptor.node, tags)
// jsdoc cannot parse const, so, we always use var
result += `export var ${descriptor.name}\n`
return result
}
renderMember(descriptor: Descriptor) {
const tags = [
"@enum {number}"
]
if (descriptor.readonly) {
tags.push("@readonly")
}
if (descriptor.properties != null) {
for (const property of descriptor.properties) {
tags.push(`@property ${property.name}`)
}
}
let result = this.formatComment(descriptor.node!, tags)
result += `export var ${descriptor.name}\n`
return result
}
// form http://stackoverflow.com/questions/10490713/how-to-document-the-properties-of-the-object-in-the-jsdoc-3-tag-this
// doesn't produce properties table, so, we use property tags
private static renderProperties(properties: Array<Property>, tags: Array<string>, modulePathMapper: ModulePathMapper): void {
loop:
for (const descriptor of properties) {
const node = descriptor.node
const existingJsDoc = JsDocRenderer.getComment(node)
const parsed = existingJsDoc == null ? null : parseJsDoc(existingJsDoc, {unwrap: true})
let defaultValue = descriptor.defaultValue
let isOptional = descriptor.isOptional
let description = parsed == null ? "" : parsed.description
if (parsed != null) {
for (const tag of parsed.tags) {
switch (tag.title) {
case "default":
defaultValue = tag.description
break
case "private":
continue loop
case "required":
isOptional = false
break
case "see":
description += `\nSee: ${tag.description}`
break
case "deprecated":
description += `\nDeprecated: {tag.description}`
break
default: {
const sourceFile = node.getSourceFile()
const leadingCommentRanges = ts.getLeadingCommentRanges(sourceFile.text, node.pos)!!
const position = sourceFile.getLineAndCharacterOfPosition(leadingCommentRanges[0].pos)
console.warn(`${path.basename(sourceFile.fileName)} ${position.line + 1}:${position.character} property level tag "${tag.title}" are not supported, please file issue`)
}
}
}
}
let result = `@property ${renderTypes(descriptor.types, modulePathMapper)} `
if (isOptional) {
result += "["
}
result += descriptor.name
if (defaultValue != null) {
result += `=${defaultValue}`
}
if (isOptional) {
result += "]"
}
if (description != null) {
description = description.trim()
if (description.length > 0) {
// one \n is not translated to break as markdown does (because in the code newline means that we don't want to use long line and have to break)
description = description
.replace(/\n\n/g, "<br><br>")
.replace(/\n/g, " ")
// http://stackoverflow.com/questions/28733282/jsdoc-multiline-description-property
result += ` ${description}`
}
}
tags.push(result)
}
}
}
function parseExistingJsDoc(node: ts.Node, tags: Array<string>): string | null {
const existingJsDoc = JsDocRenderer.getComment(node)
const parsed = existingJsDoc == null ? null : parseJsDoc(existingJsDoc, {unwrap: true})
if (parsed != null) {
for (const tag of parsed.tags) {
tags.push(printTag(tag))
}
}
return parsed == null ? null : parsed.description
}
function printTag(tag: Tag) {
let text = `@${tag.title}`
const caption = (<any>tag).caption
if (caption != null) {
text += ` <caption>${caption}</caption>`
}
if (tag.description != null) {
text += ` ${tag.description}`
}
return text
}
// (oldPath: string) => oldPath
function renderTypes(names: Array<string | Type>, modulePathMapper: ModulePathMapper): string {
return `{${_renderTypes(names, modulePathMapper)}}`
}
function _renderTypes(names: Array<string | Type>, modulePathMapper: ModulePathMapper): string {
return names.map(it => renderType(it, modulePathMapper)).join(" | ")
}
function renderType(name: string | Type, modulePathMapper: ModulePathMapper, ignoreSubtypes = false): string {
if (typeof name === "string") {
return modulePathMapper(name)
}
const type = <Type>name
if (ignoreSubtypes) {
return modulePathMapper(type.name)
}
return modulePathMapper(type.name) + "<" + _renderTypes(type.subTypes, modulePathMapper) + ">"
}