-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·69 lines (52 loc) · 1.67 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
#! /usr/bin/env node
//
// Simple tool to create a React component with accompanying Jest test
// The generated files are oppinionated
// Usage: newRctFile <filename>
var args = process.argv;
var path = require('path');
var fs = require('fs');
var mkdirp = require('mkdirp');
if (args.length < 3) {
console.error('Usage: node reactfile <path>');
process.exit(1);
}
//
// templates
//
var jsFile = fs.readFileSync(path.join(__dirname, 'templates', 'js.js')).toString();
var testFile = fs.readFileSync(path.join(__dirname, 'templates', 'jsTest.js')).toString();
var newJsFile = args[2];
if (!newJsFile.match('^[\.\/]')) {
newJsFile = path.join('.', newJsFile);
}
var filePath = path.parse(newJsFile);
var reactName = filePath.name;
var baseName = filePath.base;
var newTestFileDir = path.join(filePath.dir, '__tests__', reactName + '-test.js');
var jsFileContent = jsFile.replace(/__REACT_CLASS__/g, reactName);
var jsTestFileContent = testFile
.replace(/__REACT_CLASS__/g, reactName)
.replace(/__JSFILENAME__/g, baseName)
.replace(/__CLASSINSTANCE__/g, reactName + 'Comp');
writeFile(newJsFile, jsFileContent, function (err) {
handleError(err);
writeFile(newTestFileDir, jsTestFileContent, function (err) {
handleError(err);
console.log('Created ', baseName, '__tests__' + reactName + '-test.js')
process.exit(0);
});
});
function handleError(err) {
if (err) {
console.error(err);
process.exit(1);
}
}
function writeFile (file, contents, cb) {
var fileDirectory = path.parse(file).dir;
mkdirp(fileDirectory, function (err) {
if (err) return cb(err)
fs.writeFile(file, contents, cb)
})
}