-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
133 lines (125 loc) · 3.62 KB
/
index.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
var fs = require('fs'),
path = require('path'),
File = require('vinyl'),
vfs = require('vinyl-fs'),
_ = require('lodash'),
concat = require('concat-stream'),
GithubSlugger = require('github-slugger'),
createFormatters = require('documentation').util.createFormatters,
LinkerStack = require('documentation').util.LinkerStack,
hljs = require('highlight.js');
function isFunction(section) {
return (
section.kind === 'function' ||
(section.kind === 'typedef' &&
section.type.type === 'NameExpression' &&
section.type.name === 'Function')
);
}
module.exports = function(
comments: Array<Comment>,
config: DocumentationConfig
) {
var linkerStack = new LinkerStack(config).namespaceResolver(
comments,
function(namespace) {
var slugger = new GithubSlugger();
return '#' + slugger.slug(namespace);
}
);
var formatters = createFormatters(linkerStack.link);
hljs.configure(config.hljs || {});
var sharedImports = {
imports: {
slug(str) {
var slugger = new GithubSlugger();
return slugger.slug(str);
},
shortSignature(section) {
var prefix = '';
if (section.kind === 'class') {
prefix = 'new ';
} else if (!isFunction(section)) {
return section.name;
}
return prefix + section.name + formatters.parameters(section, true);
},
signature(section) {
var returns = '';
var prefix = '';
if (section.kind === 'class') {
prefix = 'new ';
} else if (!isFunction(section)) {
return section.name;
}
if (section.returns.length) {
returns = ': ' + formatters.type(section.returns[0].type);
}
return prefix + section.name + formatters.parameters(section) + returns;
},
md(ast, inline) {
if (
inline &&
ast &&
ast.children.length &&
ast.children[0].type === 'paragraph'
) {
ast = {
type: 'root',
children: ast.children[0].children.concat(ast.children.slice(1))
};
}
return formatters.markdown(ast);
},
formatType: formatters.type,
autolink: formatters.autolink,
highlight(example) {
if (config.hljs && config.hljs.highlightAuto) {
return hljs.highlightAuto(example).value;
}
return hljs.highlight('js', example).value;
}
}
};
sharedImports.imports.renderSectionList = _.template(
fs.readFileSync(path.join(__dirname, 'section_list._'), 'utf8'),
sharedImports
);
sharedImports.imports.renderSection = _.template(
fs.readFileSync(path.join(__dirname, 'section._'), 'utf8'),
sharedImports
);
sharedImports.imports.renderNote = _.template(
fs.readFileSync(path.join(__dirname, 'note._'), 'utf8'),
sharedImports
);
sharedImports.imports.renderParamProperty = _.template(
fs.readFileSync(path.join(__dirname, 'paramProperty._'), 'utf8'),
sharedImports
);
var pageTemplate = _.template(
fs.readFileSync(path.join(__dirname, 'index._'), 'utf8'),
sharedImports
);
// push assets into the pipeline as well.
return new Promise(resolve => {
vfs.src([__dirname + '/assets/**'], { base: __dirname }).pipe(
concat(function(files) {
resolve(
files.concat(
new File({
path: 'index.html',
contents: new Buffer(
pageTemplate({
docs: comments,
config
}),
'utf8'
)
})
)
);
})
);
});
};