File size: 1,347 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
const shared = (plop) => {
    plop.setGenerator('shared', {
        description: 'Создает ui компонент в shared слое',
        prompts: [
            {
                type: 'input',
                name: 'name',
                message: 'Название компонента?',
            },
        ],
        actions: (data) => {
            data.layerName = 'shared';

            return [
                {
                    type: 'add',
                    path: '../src/shared/ui/{{name}}/{{name}}.tsx',
                    templateFile: './templates/component/component.hbs',
                },
                {
                    type: 'add',
                    path: '../src/shared/ui/{{name}}/{{name}}.module.scss',
                    templateFile: './templates/component/component.style.hbs',
                },
                {
                    type: 'add',
                    path: '../src/shared/ui/{{name}}/{{name}}.stories.tsx',
                    templateFile: './templates/component/component.stories.hbs',
                },
                {
                    type: 'add',
                    path: '../src/shared/ui/{{name}}/index.ts',
                    templateFile: './templates/component/index.hbs',
                },
            ];
        },
    });
};

module.exports = shared;