39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
import tsUtils from '@strapi/typescript-utils';
|
|
import getDestinationPrompts from './prompts/get-destination-prompts.mjs';
|
|
import getFilePath from './utils/get-file-path.mjs';
|
|
import validateInput from './utils/validate-input.mjs';
|
|
|
|
var generateController = ((plop)=>{
|
|
// Controller generator
|
|
plop.setGenerator('controller', {
|
|
description: 'Generate a controller for an API',
|
|
prompts: [
|
|
{
|
|
type: 'input',
|
|
name: 'id',
|
|
message: 'Controller name',
|
|
validate: (input)=>validateInput(input)
|
|
},
|
|
...getDestinationPrompts('controller', plop.getDestBasePath())
|
|
],
|
|
actions (answers) {
|
|
if (!answers) {
|
|
return [];
|
|
}
|
|
const filePath = getFilePath(answers.destination);
|
|
const currentDir = process.cwd();
|
|
const language = tsUtils.isUsingTypeScriptSync(currentDir) ? 'ts' : 'js';
|
|
return [
|
|
{
|
|
type: 'add',
|
|
path: `${filePath}/controllers/{{ id }}.${language}`,
|
|
templateFile: `templates/${language}/controller.${language}.hbs`
|
|
}
|
|
];
|
|
}
|
|
});
|
|
});
|
|
|
|
export { generateController as default };
|
|
//# sourceMappingURL=controller.mjs.map
|