prompt.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. const { notEmpty } = require('../utils.js');
  2. module.exports = {
  3. description: 'generate product',
  4. prompts: [
  5. {
  6. type: 'input',
  7. name: 'name',
  8. message: 'product name please',
  9. validate: notEmpty('name'),
  10. },
  11. {
  12. type: 'checkbox',
  13. name: 'blocks',
  14. message: 'Blocks:',
  15. choices: [
  16. {
  17. name: 'state',
  18. value: 'state',
  19. checked: true,
  20. },
  21. {
  22. name: 'mutations',
  23. value: 'mutations',
  24. checked: true,
  25. },
  26. {
  27. name: 'actions',
  28. value: 'actions',
  29. checked: true,
  30. },
  31. ],
  32. validate(value) {
  33. if (!value.includes('state') || !value.includes('mutations')) {
  34. return 'product require at least state and mutations';
  35. }
  36. return true;
  37. },
  38. },
  39. ],
  40. actions(data) {
  41. const name = '{{name}}';
  42. const { blocks } = data;
  43. const options = ['state', 'mutations'];
  44. const joinFlag = `,
  45. `;
  46. if (blocks.length === 3) {
  47. options.push('actions');
  48. }
  49. const actions = [
  50. {
  51. type: 'add',
  52. path: `src/store/modules/${name}.js`,
  53. templateFile: 'plop-templates/product/index.hbs',
  54. data: {
  55. options: options.join(joinFlag),
  56. state: blocks.includes('state'),
  57. mutations: blocks.includes('mutations'),
  58. actions: blocks.includes('actions'),
  59. },
  60. },
  61. ];
  62. return actions;
  63. },
  64. };