File size: 1,894 Bytes
1e92f2d |
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 |
/**
* generator/index.js
*
* Exports the generators so plop knows them
*/
const fs = require('fs');
const path = require('path');
const { execSync } = require('child_process');
const componentGenerator = require('./component/index.js');
const containerGenerator = require('./container/index.js');
const languageGenerator = require('./language/index.js');
/**
* Every generated backup file gets this extension
* @type {string}
*/
const BACKUPFILE_EXTENSION = 'rbgen';
module.exports = plop => {
plop.setGenerator('component', componentGenerator);
plop.setGenerator('container', containerGenerator);
plop.setGenerator('language', languageGenerator);
plop.addHelper('directory', comp => {
try {
fs.accessSync(
path.join(__dirname, `../../app/containers/${comp}`),
fs.F_OK,
);
return `containers/${comp}`;
} catch (e) {
return `components/${comp}`;
}
});
plop.addHelper('curly', (object, open) => (open ? '{' : '}'));
plop.setActionType('prettify', (answers, config) => {
const folderPath = `${path.join(
__dirname,
'/../../app/',
config.path,
plop.getHelper('properCase')(answers.name),
'**',
'**.js',
)}`;
try {
execSync(`npm run prettify -- "${folderPath}"`);
return folderPath;
} catch (err) {
throw err;
}
});
plop.setActionType('backup', (answers, config) => {
try {
fs.copyFileSync(
path.join(__dirname, config.path, config.file),
path.join(
__dirname,
config.path,
`${config.file}.${BACKUPFILE_EXTENSION}`,
),
'utf8',
);
return path.join(
__dirname,
config.path,
`${config.file}.${BACKUPFILE_EXTENSION}`,
);
} catch (err) {
throw err;
}
});
};
module.exports.BACKUPFILE_EXTENSION = BACKUPFILE_EXTENSION;
|