prompt.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. const { notEmpty } = require('../utils.js');
  2. module.exports = {
  3. description: 'generate vue component',
  4. prompts: [
  5. {
  6. type: 'input',
  7. name: 'name',
  8. message: 'component name please',
  9. validate: notEmpty('name'),
  10. },
  11. {
  12. type: 'checkbox',
  13. name: 'blocks',
  14. message: 'Blocks:',
  15. choices: [
  16. {
  17. name: '<wxTemplate>',
  18. value: 'template',
  19. checked: true,
  20. },
  21. {
  22. name: '<script>',
  23. value: 'script',
  24. checked: true,
  25. },
  26. {
  27. name: 'style',
  28. value: 'style',
  29. checked: true,
  30. },
  31. ],
  32. validate(value) {
  33. if (value.indexOf('script') === -1 && value.indexOf('template') === -1) {
  34. return 'Components require at least a <script> or <wxTemplate> tag.';
  35. }
  36. return true;
  37. },
  38. },
  39. ],
  40. actions: (data) => {
  41. const name = '{{properCase name}}';
  42. const actions = [
  43. {
  44. type: 'add',
  45. path: `src/components/${name}/index.vue`,
  46. templateFile: 'plop-templates/component/index.hbs',
  47. data: {
  48. name: name,
  49. template: data.blocks.includes('template'),
  50. script: data.blocks.includes('script'),
  51. style: data.blocks.includes('style'),
  52. },
  53. },
  54. ];
  55. return actions;
  56. },
  57. };