forked from helpers/handlebars-helpers
-
Notifications
You must be signed in to change notification settings - Fork 14
/
verbfile.js
215 lines (187 loc) · 5.21 KB
/
verbfile.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
'use strict';
var fs = require('fs');
var path = require('path');
var yaml = require('js-yaml');
var link = require('markdown-link');
var exists = require('fs-exists-sync');
var isValid = require('is-valid-app');
var through = require('through2');
var File = require('vinyl');
module.exports = function(app) {
if (!isValid(app, 'verbfile')) return;
app.use(require('verb-generate-readme'));
app.on('error', console.log);
/**
* Helpers
*/
app.helpers(require('template-helpers')());
customDocsHelpers(app);
app.helper('yaml', function(str) {
return yaml.safeLoad(str);
});
/**
* Tasks
*/
app.task('data', function(cb) {
app.data({
before: {
license: 'When this project was created some helpers were sourced from [Swag, by Elving Rodriguez](http://elving.github.com/swag/).'
},
authors: [
{
'name': 'Brian Woodward',
'url': 'https://github.com/doowb',
'twitter': 'doowb',
'username': 'doowb'
},
{
'name': 'Jon Schlinkert',
'url': 'https://github.com/jonschlinkert',
'twitter': 'jonschlinkert',
'username': 'jonschlinkert'
}
]
});
cb();
});
app.task('toc', function(cb) {
return app.src('lib/*.js')
.pipe(toc(app));
});
app.task('docs', function(cb) {
return app.src('README.md')
.pipe(through.obj(function(file, enc, next) {
file.content = file.content.replace(/^(#{2,}\s*)\[\.([^\]]+)\]/gm, '$1[{{$2}}]');
next(null, file);
}))
.pipe(app.dest('.'));
});
app.preRender(/\.md$/, function(file, next) {
file.options.stripEmpty = false;
next();
});
app.task('default', ['data', 'toc', 'readme', 'docs']);
};
function toc(app, options) {
options = options || {};
var total = { categories: 0, helpers: 0 };
var methods = {};
return through.obj(function(file, enc, next) {
if (typeof file.stem === 'undefined') {
file = new File(file);
}
file.base = app.cwd;
file.cwd = app.cwd;
try {
if (file.stem !== 'index') {
file.code = require(file.path);
var newFile = {
methods: require(file.path),
test: {
path: path.join('test', file.basename),
code: {}
},
code: {},
path: file.relative,
base: file.base,
cwd: file.cwd,
relative: file.relative,
stem: file.stem,
data: {
methods: {}
}
};
var testLine = matchTest(newFile.test.path);
var codeLine = matchCode(newFile.path);
for (var key in newFile.methods) {
total.helpers++;
if (newFile.methods.hasOwnProperty(key)) {
newFile.data.methods[key] = {
method: newFile.stem,
stem: key,
code: {
path: newFile.relative,
line: codeLine(key)
},
test: {
path: newFile.test.path,
line: testLine(key)
}
};
}
}
methods[newFile.stem] = newFile;
total.categories++;
}
next();
} catch (err) {
next(err);
}
}, function(next) {
app.data({total: total});
app.data({methods: methods});
next();
});
}
function matchTest(fp) {
if (!fp || !exists(fp)) return function() {};
var str = fs.readFileSync(fp, 'utf8');
var lines = str.split('\n');
return function(method) {
var re = new RegExp('\\s*(describe|it)\\([\'"]\\.?(' + method + ')');
var len = lines.length, i = -1;
while (++i < len) {
var line = lines[i];
if (re.test(line)) {
return i + 1;
}
}
return;
};
}
function matchCode(fp) {
if (!fp || !exists(fp)) return function() {};
var str = fs.readFileSync(fp, 'utf8');
var lines = str.split('\n');
return function(method) {
var re = new RegExp('^helpers\\.(' + method + ')', 'gm');
var len = lines.length, i = -1;
while (++i < len) {
var line = lines[i];
if (re.test(line)) {
return i + 1;
}
}
return;
};
}
function customDocsHelpers(app) {
app.helper('bullet', function(file) {
return '- **' + link(file.stem, '#' + file.stem) + '**';
});
app.helper('issue', function(name) {
var repo = app.cache.data.repository;
return '[create issue](https://github.com/' + repo + '/issues/new?title=' + name + '%20helper)';
});
app.helper('sectionIssue', function(section) {
var repo = app.cache.data.repository;
var url = 'https://github.com/' + repo + '/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+';
return '[issues](' + url + section + '+helpers)';
});
app.helper('anchor', function(file) {
return link(file.stem, '#' + file.stem);
});
app.helper('codeLink', function(file) {
return codeLink('code', file.code.path, file.code.line);
});
app.helper('testLink', function(file) {
var line = file.test.line;
return line ? codeLink('tests', file.test.path, line) : '[no tests]';
});
app.helper('link', function(name, filepath) {
return link(name, filepath);
});
}
function codeLink(title, path, start) {
return link(title, path + '#L' + start);
}