-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgendoc.js
423 lines (349 loc) · 12 KB
/
gendoc.js
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
gendoc={ 'lines': [], 'targets': [], 'properties': [], 'objects': [], 'propertyDetails': []}
gendoc.getLines= async (url) =>{
gendoc.url = url
let r = await fetch(url);
var t = await r.text()
t=t.split('\n')
gendoc.lines=t
return t
}
gendoc.getObjects = () => {
var props=[]
var attrs=[]
var obj=''
var init=false
var i=0
gendoc.lines.forEach( l => {
if( (l.indexOf('@object') > l.indexOf('*')) && (l.indexOf('*') != -1) ){
var part = l.split('@object ')[1]
obj=part
init=true
}
if( (init && l.indexOf('@attribute') > l.indexOf('*')) && (l.indexOf('*') != -1) ){
var part = l.split('@attribute ')[1]
var temp = part.split(' ')
var type = temp[0].replace('{','').replace('}','')
var name = temp[1]
var description = temp.slice(2).join(' ')
var linkDoc = '#'+name
attrs.push( { 'type': type, 'name': name, 'description': description } )
if(gendoc.lines[i+1].indexOf('*/')!=-1){
init=false
props.push( {'name': obj, 'attributes': attrs} )
attrs=[]
}
}
i+=1
})
gendoc.objects = props
}
gendoc.buildTableObjects = () => {
if(gendoc.objects.length==0){
gendoc.getObjects()
}
var table = '';
if(gendoc.objects.length>0){
var linesTable="";
gendoc.objects.forEach( p => {
var attrs = p.attributes
attrs.forEach( a => {
var cols='';
var keys = Object.keys(a)
keys.forEach( k => {
cols+=`<td class='${k}'> ${a[k]} </td>`
})
linesTable+=` <tr> ${cols} </tr> `
})
table += `
<div class="mt-3">
<h4> ${p.name}</h4>
<div class="col-3 details-title">
Attributes:
</div>
<div class="col-12 content-internal">
<table class="objectAttrList">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
${linesTable}
</tbody>
</table>
</div>
</div>
`
})
}
return table
}
gendoc.getProperties = () => {
var props=[]
var targets=[]
var namespace=''
gendoc.lines.forEach( l => {
if( (l.indexOf('@namespace') > l.indexOf('*')) && (l.indexOf('*') != -1) ){
var part = l.split('@namespace ')[1]
namespace=part
}
if( (l.indexOf('@property') > l.indexOf('*')) && (l.indexOf('*') != -1) ){
var part = l.split('@property ')[1]
var temp = part.split(' ')
var type = temp[0].replace('{','').replace('}','')
var name = temp[1]
if(namespace!=''){
name = namespace+'.'+name
}
targets.push(name)
var linkDoc = '#'+name
props.push( { 'type': type, 'name': name, 'description': linkDoc } )
}
})
gendoc.properties = props
gendoc.targets = targets
}
gendoc.buildTableProperties = () => {
if(gendoc.properties.length==0){
gendoc.getProperties()
}
var table = '';
if(gendoc.properties.length>0){
var linesTable="";
gendoc.properties.forEach( p => {
var cols='';
var keys = Object.keys(p)
keys.forEach( k => {
if(k!='description'){
cols+=`<td class='${k}'> ${p[k]} </td>`
}
else{
cols+=`<td class='${k}'> <a href="#${p.name}" >${p[k]}</a> </td>`
}
})
linesTable+=` <tr> ${cols} </tr> `
})
table = `
<div class="mt-3">
<h4> List of Methods</h4>
<div class="col-12 content-internal">
<table class="propertyList">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
${linesTable}
</tbody>
</table>
</div>
</div>
`
}
return table
}
gendoc.getDetails = (remote_host) => {
var props=[]
var init=false
var initExample=false
var examples=[]
var params=[]
var param_names=[]
var return_ = {}
var i=0
gendoc.lines.forEach( l => {
if( (l.indexOf('/**') != -1) ){
var part = l.split('@object ')[1]
obj=part
init=true
}
if( (init && l.indexOf('@param') > l.indexOf('*')) && (l.indexOf('*') != -1) ){
var part = l.split('@param ')[1]
var temp = part.split(' ')
var type = temp[0].replace('{','').replace('}','').replace('|',' or ')
var name = temp[1].replace('[','').replace(']','')
var default_=''
if(name.indexOf('=') != -1 ){
var cks=name.split('=')
name=cks[0]
default_=cks[1]
}
param_names.push(name)
var description = temp.slice(2).join(' ')
params.push( { 'type': type, 'name': name, 'default': default_, 'description': description } )
}
if( (init && l.indexOf('@returns') > l.indexOf('*')) && (l.indexOf('*') != -1) ){
var part = l.split('@returns ')[1]
var temp = part.split(' ')
var type = temp[0].replace('{','').replace('}','')
var description = temp.slice(1).join(' ')
return_ = { 'type': type, 'description': description }
}
if( initExample && (l.indexOf('*') != -1) ){
var ex = l.split('* ')
if(ex.length>1){
if(ex[1]!=''){
ex=ex[1]
examples.push(ex)
}
}
}
if( (init && l.indexOf('@example') > l.indexOf('*')) && (l.indexOf('*') != -1) ){
initExample=true
}
if( init && (l.indexOf('*/') != -1) ){
initExample=false
var part = gendoc.lines[i+1].split('=')[0].replace(' ','')
var line = gendoc.lines.indexOf(gendoc.lines.filter(x=> x.indexOf(part)==0)[0])+1
var linkCode = remote_host+'#L'+line
if( gendoc.targets.includes(part)){
props.push( { 'name': part, 'param_names': param_names, 'params': params, 'return_': return_, 'examples': examples, 'linkCode': linkCode } )
}
examples=[]
params=[]
param_names=[]
return_ = {}
init=false
}
i+=1
})
gendoc.propertyDetails = props
}
gendoc.buildTableParams = (params) => {
var table = '';
if(params.length>0){
var linesTable="";
params.forEach( p => {
var cols='';
var keys = Object.keys(p)
keys.forEach( k => {
cols+=`<td class='${k}'> ${p[k]} </td>`
})
linesTable+=` <tr> ${cols} </tr> `
})
table = `
<div class="mt-2">
<div class="col-3 details-title">
Parameters:
</div>
<div class="col-12 content-internal">
<table class="paramsList">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Default</th>
<th>Description</th>
</tr>
</thead>
<tbody>
${linesTable}
</tbody>
</table>
</div>
</div>
`
}
return table
}
gendoc.buildExamples = (examples) => {
var table = '';
if(examples.length>0){
var linesTable=examples.join(' <br />');
table = `
<div class="mt-3">
<div class="col-2 details-title">
Examples:
</div>
<div class="col-12 content-internal">
<code>
<div class="codeExample">
${linesTable}
</div>
</code>
</div>
</div>
`
}
return table
}
gendoc.buildReturn = (return_) => {
var table = '';
if(Object.keys(return_).length>0){
table = `
<div class="mt-2">
<div class="col-3 details-title">
Return:
</div>
<div class="col-12 content-internal">
(${return_.type}) - <b>${return_.description}</b>
</div>
</div>
`
}
return table
}
gendoc.buildLinkSource = (linkCode) => {
var ulp=linkCode.split("/")
var table = '';
table = `
<div class="mt-2">
<div class="col-3 details-title">
Source location:
</div>
<div class="col-12 content-internal">
<a href="${linkCode}" target="_blank"> ${ulp[ulp.length-1].split('#')[0]}, Line ${ulp[ulp.length-1].split('#')[1].replace('L','')} </a>
</div>
</div>
`
return table
}
gendoc.buildPropertyDetail = (remote_host) => {
if(gendoc.propertyDetails.length==0){
gendoc.getDetails(remote_host)
}
var table = '';
if(gendoc.propertyDetails.length>0){
gendoc.propertyDetails.forEach( p => {
var method = p.name+`(${p.param_names.join(', ')})`
var params = gendoc.buildTableParams(p.params)
var return_ = gendoc.buildReturn(p.return_)
var examples = gendoc.buildExamples(p.examples)
var link = gendoc.buildLinkSource(p.linkCode)
table += `
<div class="col-12 area-properties mt-2" id="${p.name}" >
<h4 class="name-method"> ${method} </h3>
${params}
${return_}
${link}
${examples}
</div>
`
})
}
return table
}
gendoc.buildDocumentation = (jsfile, container_id, remote_host) => {
gendoc.getLines(jsfile).then( (value) => {
var objects = gendoc.buildTableObjects()
var methods = gendoc.buildTableProperties()
var details = gendoc.buildPropertyDetail(remote_host)
var html=`
<h2>Documentation</h2>
<div class="col-12" >
<h3> Objects </h3>
${objects}
<h3> Properties </h3>
${methods}
<h3> Properties Details </h3>
${details}
</div>
`
document.getElementById(container_id).innerHTML=html
})
}