-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplopfile.js
98 lines (96 loc) · 2.37 KB
/
plopfile.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
const schemesList = require('./gulp/schemesList.js');
const ESPANOL_REGEXP = /^[ A-Za-záéóíúüñ-]+$/i;
const RUSSIAN_REGEXP = /^[ А-Яа-яЁё-]+$/i;
const ID_REGEXP = /^[a-z_]+$/;
const END_OF_FILE_REGEXP = /\n$/gm;
const MUSIC_ARRAY_REGEXP = /music: \[/gm;
const MODULE_EXPORTS_REGEXP = /module.exports = {/;
module.exports = function (plop) {
plop.setGenerator('scheme', {
description: 'Новая схема танца',
prompts: [
{
type: 'input',
name: 'nameEs',
message: 'Название танца (español)',
validate: (value) => ESPANOL_REGEXP.test(value)
},
{
type: 'input',
name: 'nameRu',
message: 'Название танца (по-русски)',
validate: (value) => RUSSIAN_REGEXP.test(value)
},
{
type: 'input',
name: 'id',
message: 'Идентификатор танца',
validate: (value) => ID_REGEXP.test(value)
},
],
actions: [
{
type: 'add',
path: 'src/music/{{id}}/index.js',
templateFile: 'plop-templates/scheme-index.hbs',
},
{
type: 'add',
path: 'src/music/{{id}}/scheme.yaml',
templateFile: 'plop-templates/scheme.hbs',
},
{
type: 'append',
path: 'src/config/menu.yaml',
templateFile: 'plop-templates/menu-item.hbs',
pattern: END_OF_FILE_REGEXP
},
{
type: 'append',
path: 'src/js/schemes.js',
templateFile: 'plop-templates/scheme-require.hbs',
pattern: MODULE_EXPORTS_REGEXP
},
],
});
plop.setGenerator('music', {
description: 'Новая музыка',
prompts: [
{
type: 'list',
name: 'danceId',
message: 'Идентификатор танца',
choices: schemesList
},
{
type: 'input',
name: 'musicName',
message: 'Название композиции',
validate: (value) => ESPANOL_REGEXP.test(value)
},
{
type: 'input',
name: 'musicId',
message: 'Идентификатор композиции',
validate: (value) => ID_REGEXP.test(value)
},
],
actions: [
{
type: 'add',
path: 'src/music/{{danceId}}/music/{{musicId}}.js',
templateFile: 'plop-templates/music-index.hbs',
},
{
type: 'add',
path: 'src/music/{{danceId}}/music/{{musicId}}.yaml',
},
{
type: 'append',
path: 'src/music/{{danceId}}/index.js',
templateFile: 'plop-templates/music-item.hbs',
pattern: MUSIC_ARRAY_REGEXP
},
],
});
};