File size: 1,773 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 slice = (plop) => {
    plop.setGenerator('slice', {
        description: 'Создает слайс',
        prompts: [
            {
                type: 'list',
                name: 'layerName',
                message: 'В какой слой положить?',
                choices: [
                    {
                        name: 'entities',
                        value: 'entities',
                    },
                    {
                        name: 'features',
                        value: 'features',
                    },
                    {
                        name: 'widgets',
                        value: 'widgets',
                    },
                ],
            },
            {
                type: 'input',
                name: 'name',
                message: 'Название слайса?',
            },
        ],
        actions: [
            {
                type: 'add',
                path: '../src/{{layerName}}/{{name}}/ui/{{name}}.tsx',
                templateFile: './templates/component/component.hbs',
            },
            {
                type: 'add',
                path: '../src/{{layerName}}/{{name}}/ui/{{name}}.module.scss',
                templateFile: './templates/component/component.style.hbs',
            },
            {
                type: 'add',
                path: '../src/{{layerName}}/{{name}}/ui/{{name}}.stories.tsx',
                templateFile: './templates/component/component.stories.hbs',
            },
            {
                type: 'add',
                path: '../src/{{layerName}}/{{name}}/index.ts',
                templateFile: './templates/layers/rootIndex/rootIndex.hbs',
            },
        ],
    });
};

module.exports = slice;