File size: 1,764 Bytes
41a71fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
const form = (plop) => {
    plop.setGenerator('form', {
        description: 'Создает стандартную форму',
        prompts: [
            {
                type: 'list',
                name: 'layerName',
                message: 'В какой слой положить?',
                choices: [
                    {
                        name: 'entities',
                        value: 'entities',
                    },
                    {
                        name: 'features',
                        value: 'features',
                    },
                    {
                        name: 'widgets',
                        value: 'widgets',
                    },
                ],
            },
            {
                type: 'input',
                name: 'sliceName',
                message: 'В какой слайс?',
            },
            {
                type: 'input',
                name: 'name',
                message: 'Название компонента?',
            },
        ],
        actions: [
            {
                type: 'add',
                path: '../src/{{layerName}}/{{sliceName}}/ui/{{name}}/{{name}}.tsx',
                templateFile: './templates/form/form.hbs',
            },
            {
                type: 'add',
                path: '../src/{{layerName}}/{{sliceName}}/ui/{{name}}/{{name}}.module.scss',
                templateFile: './templates/form/form.style.hbs',
            },
            {
                type: 'add',
                path: '../src/{{layerName}}/{{sliceName}}/ui/{{name}}/{{name}}.stories.tsx',
                templateFile: './templates/form/form.stories.hbs',
            },
        ],
    });
};

module.exports = form;