-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocgen.js
39 lines (37 loc) · 903 Bytes
/
docgen.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
const path = require('path');
const docgen = require('react-docgen-typescript');
const options = path.join(process.cwd(), 'tsconfig.json');
const tsConfigParser = docgen.withCustomConfig(options, {
savePropValueAsString: true,
shouldRemoveUndefinedFromOptional: true,
propFilter: (prop) => {
if (prop.parent) {
return !prop.parent.fileName.includes('node_modules');
}
return true;
},
});
const parseTs = (path, callback) => {
const docs = tsConfigParser.parse(path, {
savePropValueAsString: true,
});
let result;
if (docs && docs.length) {
docs.forEach((doc) => {
if (doc && doc.props) {
const keys = Object.keys(doc.props);
if (keys.length) {
result = callback({
keys,
props: doc.props,
path,
});
}
}
});
}
return result;
};
module.exports = {
parseTs,
};