@aerogel/cli 0.0.0-next.f8cdd39997c56dcd46e07c26af8a84d04d610fce → 0.0.0-next.f9394854509d71d644498ac087706a2f8f8eea1c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierignore +1 -0
- package/dist/aerogel-cli.cjs.js +1 -1
- package/dist/aerogel-cli.cjs.js.map +1 -1
- package/dist/aerogel-cli.d.ts +2 -2
- package/dist/aerogel-cli.esm.js +1 -1
- package/dist/aerogel-cli.esm.js.map +1 -1
- package/package.json +10 -4
- package/src/cli.ts +23 -3
- package/src/commands/Command.ts +11 -6
- package/src/commands/create.test.ts +1 -2
- package/src/commands/create.ts +5 -5
- package/src/commands/generate-component.test.ts +49 -2
- package/src/commands/generate-component.ts +60 -14
- package/src/commands/generate-model.test.ts +1 -1
- package/src/commands/generate-model.ts +7 -8
- package/src/commands/generate-overrides.ts +85 -0
- package/src/commands/generate-service.test.ts +1 -1
- package/src/commands/generate-service.ts +6 -7
- package/src/commands/info.ts +14 -0
- package/src/commands/install.test.ts +24 -1
- package/src/commands/install.ts +6 -5
- package/src/lib/Editor.ts +9 -7
- package/src/lib/File.mock.ts +1 -5
- package/src/lib/File.ts +1 -1
- package/src/lib/Log.mock.ts +1 -5
- package/src/lib/Log.ts +1 -1
- package/src/lib/Shell.mock.ts +2 -2
- package/src/lib/Shell.ts +1 -1
- package/src/lib/Template.ts +5 -1
- package/src/lib/utils/app.ts +1 -1
- package/src/lib/utils/paths.ts +1 -1
- package/src/plugins/Histoire.ts +113 -0
- package/src/plugins/Plugin.ts +58 -5
- package/src/plugins/Solid.ts +15 -48
- package/src/testing/setup.ts +3 -6
- package/templates/app/.github/workflows/ci.yml +4 -4
- package/templates/app/cypress/cypress.config.ts +14 -0
- package/templates/app/cypress/support/e2e.ts +1 -3
- package/templates/app/cypress/tsconfig.json +3 -1
- package/templates/app/index.html +3 -2
- package/templates/app/package.json +16 -4
- package/templates/app/src/App.vue +2 -2
- package/templates/app/src/assets/public/robots.txt +2 -0
- package/templates/app/src/main.ts +4 -4
- package/templates/app/vite.config.ts +3 -1
- package/templates/component-button/[component.name].vue +42 -0
- package/templates/component-button-story/[component.name].story.vue +77 -0
- package/templates/component-checkbox/[component.name].vue +34 -0
- package/templates/component-checkbox-story/[component.name].story.vue +63 -0
- package/templates/component-input/[component.name].vue +17 -0
- package/templates/component-input-story/[component.name].story.vue +63 -0
- package/templates/histoire/histoire.config.ts +7 -0
- package/templates/histoire/patches/histoire+0.17.6.patch +13 -0
- package/templates/histoire/src/main.histoire.ts +8 -0
- package/templates/overrides/components/index.ts +15 -0
- package/templates/overrides/components/overrides/AlertModal.vue +11 -0
- package/templates/overrides/components/overrides/ConfirmModal.vue +20 -0
- package/templates/overrides/components/overrides/ErrorReportModal.vue +35 -0
- package/templates/overrides/components/overrides/LoadingModal.vue +12 -0
- package/templates/overrides/components/overrides/ModalWrapper.vue +22 -0
- package/templates/overrides/components/overrides/SnackbarNotification.vue +34 -0
- package/templates/overrides-story/Overrides.story.vue +86 -0
- package/templates/postcss-pseudo-classes/postcss.config.js +15 -0
- package/templates/service/[service.name].ts +1 -1
- package/.eslintrc.js +0 -7
- package/src/lib/utils/format.test.ts +0 -33
- package/src/lib/utils/format.ts +0 -38
- package/templates/app/.eslintrc.js +0 -3
- package/templates/app/cypress.config.ts +0 -12
- package/templates/app/prettier.config.js +0 -5
- /package/bin/{ag → gel} +0 -0
- /package/templates/app/src/assets/{styles.css → css/main.css} +0 -0
package/src/cli.ts
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { Command } from 'commander';
|
|
2
|
+
import { facade, fail } from '@noeldemartin/utils';
|
|
3
|
+
import { resolve } from 'path';
|
|
4
|
+
import { existsSync, readFileSync } from 'fs';
|
|
5
|
+
|
|
2
6
|
import { CreateCommand } from '@/commands/create';
|
|
3
|
-
import { facade } from '@noeldemartin/utils';
|
|
4
7
|
import { GenerateComponentCommand } from '@/commands/generate-component';
|
|
5
8
|
import { GenerateModelCommand } from '@/commands/generate-model';
|
|
9
|
+
import { GenerateOverridesCommand } from '@/commands/generate-overrides';
|
|
6
10
|
import { GenerateServiceCommand } from '@/commands/generate-service';
|
|
11
|
+
import { InfoCommand } from '@/commands/info';
|
|
7
12
|
import { InstallCommand } from '@/commands/install';
|
|
8
13
|
|
|
9
14
|
export class CLIService {
|
|
@@ -11,17 +16,32 @@ export class CLIService {
|
|
|
11
16
|
public run(argv?: string[]): void {
|
|
12
17
|
const program = new Command();
|
|
13
18
|
|
|
14
|
-
program.name('
|
|
19
|
+
program.name('gel').description('AerogelJS CLI').version(this.getVersion());
|
|
15
20
|
|
|
16
21
|
CreateCommand.define(program);
|
|
17
22
|
GenerateComponentCommand.define(program);
|
|
18
23
|
GenerateModelCommand.define(program);
|
|
24
|
+
GenerateOverridesCommand.define(program);
|
|
19
25
|
GenerateServiceCommand.define(program);
|
|
26
|
+
InfoCommand.define(program);
|
|
20
27
|
InstallCommand.define(program);
|
|
21
28
|
|
|
22
29
|
program.parse(argv);
|
|
23
30
|
}
|
|
24
31
|
|
|
32
|
+
public getVersion(): string {
|
|
33
|
+
const errorMessage = 'Could not find CLI\'s version, please report this bug.';
|
|
34
|
+
const packageJsonPath = resolve(__dirname, '../package.json');
|
|
35
|
+
|
|
36
|
+
if (!existsSync(packageJsonPath)) {
|
|
37
|
+
throw new Error(errorMessage);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const packageJson = JSON.parse(readFileSync(packageJsonPath).toString()) as { version?: string };
|
|
41
|
+
|
|
42
|
+
return packageJson.version ?? fail(errorMessage);
|
|
43
|
+
}
|
|
44
|
+
|
|
25
45
|
}
|
|
26
46
|
|
|
27
|
-
export default facade(
|
|
47
|
+
export default facade(CLIService);
|
package/src/commands/Command.ts
CHANGED
|
@@ -8,10 +8,10 @@ export type CommandOptions = Record<string, string | { description: string; type
|
|
|
8
8
|
|
|
9
9
|
export default class Command {
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
protected static command: string = '';
|
|
12
|
+
protected static description: string = '';
|
|
13
|
+
protected static parameters: [string, string][] = [];
|
|
14
|
+
protected static options: CommandOptions = {};
|
|
15
15
|
|
|
16
16
|
public static define(program: CommanderCommand): void {
|
|
17
17
|
program = program.command(this.command).description(this.description);
|
|
@@ -33,11 +33,16 @@ export default class Command {
|
|
|
33
33
|
public static async run<T extends CommandConstructor>(this: T, ...args: ConstructorParameters<T>): Promise<void> {
|
|
34
34
|
const instance = new this(...args);
|
|
35
35
|
|
|
36
|
+
await instance.validate();
|
|
36
37
|
await instance.run();
|
|
37
38
|
}
|
|
38
39
|
|
|
39
|
-
|
|
40
|
-
//
|
|
40
|
+
protected async validate(): Promise<void> {
|
|
41
|
+
// Placeholder for overrides, don't place any functionality here.
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
protected async run(): Promise<void> {
|
|
45
|
+
// Placeholder for overrides, don't place any functionality here.
|
|
41
46
|
}
|
|
42
47
|
|
|
43
48
|
protected assertAerogelOrDirectory(path?: string): void {
|
|
@@ -15,7 +15,7 @@ describe('Create command', () => {
|
|
|
15
15
|
FileMock.expectCreated('./app/.gitignore').toContain('node_modules');
|
|
16
16
|
FileMock.expectCreated('./app/package.json').toContain('"name": "my-app"');
|
|
17
17
|
FileMock.expectCreated('./app/package.json').toContain('"@aerogel/core": "next"');
|
|
18
|
-
FileMock.expectCreated('./app/index.html').toContain('
|
|
18
|
+
FileMock.expectCreated('./app/index.html').toContain('{{ app.name }}');
|
|
19
19
|
FileMock.expectCreated('./app/README.md').toContain('My App');
|
|
20
20
|
FileMock.expectCreated('./app/src/App.vue').toContain('<h1 class="text-4xl font-semibold">');
|
|
21
21
|
FileMock.expectCreated('./app/src/App.vue').toContain('{{ $t(\'home.title\') }}');
|
|
@@ -38,7 +38,6 @@ describe('Create command', () => {
|
|
|
38
38
|
|
|
39
39
|
// Assert
|
|
40
40
|
FileMock.expectCreated('./my-app/package.json').toContain('"name": "my-app"');
|
|
41
|
-
FileMock.expectCreated('./my-app/index.html').toContain('My App');
|
|
42
41
|
});
|
|
43
42
|
|
|
44
43
|
});
|
package/src/commands/create.ts
CHANGED
|
@@ -15,10 +15,10 @@ export interface Options {
|
|
|
15
15
|
|
|
16
16
|
export class CreateCommand extends Command {
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
protected static command: string = 'create';
|
|
19
|
+
protected static description: string = 'Create AerogelJS app';
|
|
20
|
+
protected static parameters: [string, string][] = [['path', 'Application path']];
|
|
21
|
+
protected static options: CommandOptions = {
|
|
22
22
|
name: 'Application name',
|
|
23
23
|
local: {
|
|
24
24
|
type: 'boolean',
|
|
@@ -40,7 +40,7 @@ export class CreateCommand extends Command {
|
|
|
40
40
|
this.options = options;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
protected async run(): Promise<void> {
|
|
44
44
|
const path = this.path;
|
|
45
45
|
const name = this.options.name ?? stringToTitleCase(basename(path));
|
|
46
46
|
|
|
@@ -30,8 +30,13 @@ describe('Generate Component command', () => {
|
|
|
30
30
|
|
|
31
31
|
it('generates components with stories', async () => {
|
|
32
32
|
// Arrange
|
|
33
|
-
FileMock.stub(
|
|
34
|
-
|
|
33
|
+
FileMock.stub(
|
|
34
|
+
'package.json',
|
|
35
|
+
`
|
|
36
|
+
"@aerogel/core": "*",
|
|
37
|
+
"histoire": "*"
|
|
38
|
+
`,
|
|
39
|
+
);
|
|
35
40
|
|
|
36
41
|
// Act
|
|
37
42
|
await GenerateComponentCommand.run('FooBar', { story: true });
|
|
@@ -41,4 +46,46 @@ describe('Generate Component command', () => {
|
|
|
41
46
|
FileMock.expectCreated('src/components/FooBar.story.vue').toContain('<FooBar />');
|
|
42
47
|
});
|
|
43
48
|
|
|
49
|
+
it('generates input components with stories', async () => {
|
|
50
|
+
// Arrange
|
|
51
|
+
FileMock.stub(
|
|
52
|
+
'package.json',
|
|
53
|
+
`
|
|
54
|
+
"@aerogel/core": "*",
|
|
55
|
+
"histoire": "*"
|
|
56
|
+
`,
|
|
57
|
+
);
|
|
58
|
+
|
|
59
|
+
// Act
|
|
60
|
+
await GenerateComponentCommand.run('FooBar', { input: true, story: true });
|
|
61
|
+
|
|
62
|
+
// Assert
|
|
63
|
+
FileMock.expectCreated('src/components/FooBar.vue').toContain('<AGHeadlessInputInput v-bind="attrs" />');
|
|
64
|
+
FileMock.expectCreated('src/components/FooBar.story.vue').toContain('.story-foobar .variant-playground');
|
|
65
|
+
FileMock.expectCreated('src/components/FooBar.story.vue').toContain(
|
|
66
|
+
'<FooBar name="food" :label="label" :placeholder="placeholder" />',
|
|
67
|
+
);
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
it('generates button components with stories', async () => {
|
|
71
|
+
// Arrange
|
|
72
|
+
FileMock.stub(
|
|
73
|
+
'package.json',
|
|
74
|
+
`
|
|
75
|
+
"@aerogel/core": "*",
|
|
76
|
+
"histoire": "*"
|
|
77
|
+
`,
|
|
78
|
+
);
|
|
79
|
+
|
|
80
|
+
// Act
|
|
81
|
+
await GenerateComponentCommand.run('FooBar', { button: true, story: true });
|
|
82
|
+
|
|
83
|
+
// Assert
|
|
84
|
+
FileMock.expectCreated('src/components/FooBar.vue').toContain(
|
|
85
|
+
'<AGHeadlessButton :class="variantClasses" :disabled="disabled">',
|
|
86
|
+
);
|
|
87
|
+
FileMock.expectCreated('src/components/FooBar.story.vue').toContain('.story-foobar .variant-playground');
|
|
88
|
+
FileMock.expectCreated('src/components/FooBar.story.vue').toContain('<FooBar :color="color">');
|
|
89
|
+
});
|
|
90
|
+
|
|
44
91
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { arrayFrom } from '@noeldemartin/utils';
|
|
1
|
+
import { arrayFilter, arrayFrom, stringToSlug } from '@noeldemartin/utils';
|
|
2
2
|
import { Node, SyntaxKind } from 'ts-morph';
|
|
3
3
|
import type { ArrayLiteralExpression, CallExpression, SourceFile } from 'ts-morph';
|
|
4
4
|
|
|
@@ -12,18 +12,33 @@ import { templatePath } from '@/lib/utils/paths';
|
|
|
12
12
|
import type { CommandOptions } from '@/commands/Command';
|
|
13
13
|
|
|
14
14
|
export interface Options {
|
|
15
|
+
button?: boolean;
|
|
16
|
+
checkbox?: boolean;
|
|
17
|
+
input?: boolean;
|
|
15
18
|
story?: boolean;
|
|
16
19
|
}
|
|
17
20
|
|
|
18
21
|
export class GenerateComponentCommand extends Command {
|
|
19
22
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
protected static command: string = 'generate:component';
|
|
24
|
+
protected static description: string = 'Generate an AerogelJS Component';
|
|
25
|
+
protected static parameters: [string, string][] = [
|
|
23
26
|
['path', 'Component path (relative to components folder; extension not necessary)'],
|
|
24
27
|
];
|
|
25
28
|
|
|
26
|
-
|
|
29
|
+
protected static options: CommandOptions = {
|
|
30
|
+
button: {
|
|
31
|
+
description: 'Create a custom button',
|
|
32
|
+
type: 'boolean',
|
|
33
|
+
},
|
|
34
|
+
checkbox: {
|
|
35
|
+
description: 'Create a custom checkbox',
|
|
36
|
+
type: 'boolean',
|
|
37
|
+
},
|
|
38
|
+
input: {
|
|
39
|
+
description: 'Create a custom input',
|
|
40
|
+
type: 'boolean',
|
|
41
|
+
},
|
|
27
42
|
story: {
|
|
28
43
|
description: 'Create component story using Histoire',
|
|
29
44
|
type: 'boolean',
|
|
@@ -40,7 +55,15 @@ export class GenerateComponentCommand extends Command {
|
|
|
40
55
|
this.options = options;
|
|
41
56
|
}
|
|
42
57
|
|
|
43
|
-
|
|
58
|
+
protected async validate(): Promise<void> {
|
|
59
|
+
const components = arrayFilter([this.options.button, this.options.input, this.options.checkbox]).length;
|
|
60
|
+
|
|
61
|
+
if (components > 1) {
|
|
62
|
+
Log.fail('Can only use one of \'button\', \'input\', or \'checkbox\' flags!');
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
protected async run(): Promise<void> {
|
|
44
67
|
this.assertAerogelOrDirectory('src/components');
|
|
45
68
|
this.assertHistoireInstalled();
|
|
46
69
|
|
|
@@ -48,7 +71,7 @@ export class GenerateComponentCommand extends Command {
|
|
|
48
71
|
const [directoryName, componentName] = this.parsePathComponents();
|
|
49
72
|
|
|
50
73
|
await this.createComponent(directoryName, componentName, files);
|
|
51
|
-
await this.createStory(componentName, files);
|
|
74
|
+
await this.createStory(directoryName, componentName, files);
|
|
52
75
|
await this.declareComponents();
|
|
53
76
|
|
|
54
77
|
const filesList = arrayFrom(files)
|
|
@@ -63,8 +86,11 @@ export class GenerateComponentCommand extends Command {
|
|
|
63
86
|
return;
|
|
64
87
|
}
|
|
65
88
|
|
|
66
|
-
if (!File.
|
|
67
|
-
Log.fail(
|
|
89
|
+
if (!File.contains('package.json', '"histoire"') && !File.contains('package.json', '"@aerogel/histoire"')) {
|
|
90
|
+
Log.fail(`
|
|
91
|
+
Histoire is not installed yet! You can install it running:
|
|
92
|
+
npx gel install histoire
|
|
93
|
+
`);
|
|
68
94
|
}
|
|
69
95
|
}
|
|
70
96
|
|
|
@@ -74,22 +100,42 @@ export class GenerateComponentCommand extends Command {
|
|
|
74
100
|
Log.fail(`${this.path} component already exists!`);
|
|
75
101
|
}
|
|
76
102
|
|
|
77
|
-
const
|
|
78
|
-
component
|
|
103
|
+
const templateName = this.options.input
|
|
104
|
+
? 'component-input'
|
|
105
|
+
: this.options.button
|
|
106
|
+
? 'component-button'
|
|
107
|
+
: this.options.checkbox
|
|
108
|
+
? 'component-checkbox'
|
|
109
|
+
: 'component';
|
|
110
|
+
const componentFiles = Template.instantiate(templatePath(templateName), `src/components/${directoryName}`, {
|
|
111
|
+
component: {
|
|
112
|
+
name: componentName,
|
|
113
|
+
slug: stringToSlug(componentName),
|
|
114
|
+
},
|
|
79
115
|
});
|
|
80
116
|
|
|
81
117
|
componentFiles.forEach((file) => files.add(file));
|
|
82
118
|
});
|
|
83
119
|
}
|
|
84
120
|
|
|
85
|
-
protected async createStory(componentName: string, files: Set<string>): Promise<void> {
|
|
121
|
+
protected async createStory(directoryName: string, componentName: string, files: Set<string>): Promise<void> {
|
|
86
122
|
if (!this.options.story) {
|
|
87
123
|
return;
|
|
88
124
|
}
|
|
89
125
|
|
|
90
126
|
await Log.animate('Creating story', async () => {
|
|
91
|
-
const
|
|
92
|
-
component
|
|
127
|
+
const templateName = this.options.input
|
|
128
|
+
? 'component-input-story'
|
|
129
|
+
: this.options.button
|
|
130
|
+
? 'component-button-story'
|
|
131
|
+
: this.options.checkbox
|
|
132
|
+
? 'component-checkbox-story'
|
|
133
|
+
: 'component-story';
|
|
134
|
+
const storyFiles = Template.instantiate(templatePath(templateName), `src/components/${directoryName}`, {
|
|
135
|
+
component: {
|
|
136
|
+
name: componentName,
|
|
137
|
+
slug: stringToSlug(componentName),
|
|
138
|
+
},
|
|
93
139
|
});
|
|
94
140
|
|
|
95
141
|
storyFiles.forEach((file) => files.add(file));
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import { stringToStudlyCase } from '@noeldemartin/utils';
|
|
1
|
+
import { formatCodeBlock, stringToStudlyCase } from '@noeldemartin/utils';
|
|
2
2
|
|
|
3
3
|
import Command from '@/commands/Command';
|
|
4
4
|
import File from '@/lib/File';
|
|
5
5
|
import Log from '@/lib/Log';
|
|
6
6
|
import Template from '@/lib/Template';
|
|
7
7
|
import { templatePath } from '@/lib/utils/paths';
|
|
8
|
-
import { formatCodeBlock } from '@/lib/utils/format';
|
|
9
8
|
import type { CommandOptions } from '@/commands/Command';
|
|
10
9
|
|
|
11
10
|
interface Options {
|
|
@@ -14,10 +13,10 @@ interface Options {
|
|
|
14
13
|
|
|
15
14
|
export class GenerateModelCommand extends Command {
|
|
16
15
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
protected static command: string = 'generate:model';
|
|
17
|
+
protected static description: string = 'Generate an AerogelJS Model';
|
|
18
|
+
protected static parameters: [string, string][] = [['name', 'Model name']];
|
|
19
|
+
protected static options: CommandOptions = {
|
|
21
20
|
fields: 'Create model with the given fields',
|
|
22
21
|
};
|
|
23
22
|
|
|
@@ -31,7 +30,7 @@ export class GenerateModelCommand extends Command {
|
|
|
31
30
|
this.options = options;
|
|
32
31
|
}
|
|
33
32
|
|
|
34
|
-
|
|
33
|
+
protected async run(): Promise<void> {
|
|
35
34
|
this.assertAerogelOrDirectory('src/models');
|
|
36
35
|
|
|
37
36
|
if (File.exists(`src/models/${this.name}.ts`)) {
|
|
@@ -91,7 +90,7 @@ export class GenerateModelCommand extends Command {
|
|
|
91
90
|
if (!File.contains('package.json', '"soukai"') && !File.contains('package.json', '"@aerogel/plugin-soukai"')) {
|
|
92
91
|
Log.fail(`
|
|
93
92
|
Soukai is not installed yet! You can install it running:
|
|
94
|
-
npx
|
|
93
|
+
npx gel install soukai
|
|
95
94
|
`);
|
|
96
95
|
}
|
|
97
96
|
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { arrayFrom } from '@noeldemartin/utils';
|
|
2
|
+
|
|
3
|
+
import Command from '@/commands/Command';
|
|
4
|
+
import File from '@/lib/File';
|
|
5
|
+
import Log from '@/lib/Log';
|
|
6
|
+
import Template from '@/lib/Template';
|
|
7
|
+
import { templatePath } from '@/lib/utils/paths';
|
|
8
|
+
import type { CommandOptions } from '@/commands/Command';
|
|
9
|
+
|
|
10
|
+
export interface Options {
|
|
11
|
+
story?: boolean;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export class GenerateOverridesCommand extends Command {
|
|
15
|
+
|
|
16
|
+
protected static command: string = 'generate:overrides';
|
|
17
|
+
protected static description: string = 'Generate AerogelJS component overrides';
|
|
18
|
+
|
|
19
|
+
protected static options: CommandOptions = {
|
|
20
|
+
story: {
|
|
21
|
+
description: 'Create overrides story using Histoire',
|
|
22
|
+
type: 'boolean',
|
|
23
|
+
},
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
private options: Options;
|
|
27
|
+
|
|
28
|
+
constructor(options: Options = {}) {
|
|
29
|
+
super();
|
|
30
|
+
|
|
31
|
+
this.options = options;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
protected async run(): Promise<void> {
|
|
35
|
+
this.assertAerogelOrDirectory('src/components');
|
|
36
|
+
this.assertHistoireInstalled();
|
|
37
|
+
|
|
38
|
+
const files = new Set<string>();
|
|
39
|
+
|
|
40
|
+
await this.createComponents(files);
|
|
41
|
+
await this.createStory(files);
|
|
42
|
+
|
|
43
|
+
const filesList = arrayFrom(files)
|
|
44
|
+
.map((file) => `- ${file}`)
|
|
45
|
+
.join('\n');
|
|
46
|
+
|
|
47
|
+
Log.info(`Overrides created successfully! The following files were created:\n\n${filesList}`);
|
|
48
|
+
Log.info('\nRemember to declare your components in main.ts and main.histoire.ts!');
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
protected assertHistoireInstalled(): void {
|
|
52
|
+
if (!this.options.story) {
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if (!File.contains('package.json', '"histoire"') && !File.contains('package.json', '"@aerogel/histoire"')) {
|
|
57
|
+
Log.fail(`
|
|
58
|
+
Histoire is not installed yet! You can install it running:
|
|
59
|
+
npx gel install histoire
|
|
60
|
+
`);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
protected async createComponents(files: Set<string>): Promise<void> {
|
|
65
|
+
await Log.animate('Creating components', async () => {
|
|
66
|
+
if (File.exists('src/components/ModalWrapper.vue')) {
|
|
67
|
+
Log.fail('ModalWrapper component already exists!');
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
Template.instantiate(templatePath('overrides'), 'src').forEach((file) => files.add(file));
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
protected async createStory(files: Set<string>): Promise<void> {
|
|
75
|
+
if (!this.options.story) {
|
|
76
|
+
return;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
await Log.animate('Creating story', async () => {
|
|
80
|
+
Template.instantiate(templatePath('overrides-story'), 'src/components/overrides/').forEach((file) =>
|
|
81
|
+
files.add(file));
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
}
|
|
@@ -15,7 +15,7 @@ describe('Generate Service command', () => {
|
|
|
15
15
|
|
|
16
16
|
// Assert
|
|
17
17
|
FileMock.expectCreated('src/services/FooBar.ts').toContain('class FooBarService extends Service');
|
|
18
|
-
FileMock.expectCreated('src/services/FooBar.ts').toContain('export default facade(
|
|
18
|
+
FileMock.expectCreated('src/services/FooBar.ts').toContain('export default facade(FooBarService);');
|
|
19
19
|
});
|
|
20
20
|
|
|
21
21
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { arrayFrom, stringToCamelCase } from '@noeldemartin/utils';
|
|
1
|
+
import { arrayFrom, formatCodeBlock, stringToCamelCase } from '@noeldemartin/utils';
|
|
2
2
|
import { Node, SyntaxKind } from 'ts-morph';
|
|
3
3
|
import type { ObjectLiteralExpression, SourceFile } from 'ts-morph';
|
|
4
4
|
|
|
@@ -9,14 +9,13 @@ import Template from '@/lib/Template';
|
|
|
9
9
|
import { app } from '@/lib/utils/app';
|
|
10
10
|
import { templatePath } from '@/lib/utils/paths';
|
|
11
11
|
import { editFiles, findDescendant } from '@/lib/utils/edit';
|
|
12
|
-
import { formatCodeBlock } from '@/lib/utils/format';
|
|
13
12
|
import type { Editor } from '@/lib/Editor';
|
|
14
13
|
|
|
15
14
|
export class GenerateServiceCommand extends Command {
|
|
16
15
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
protected static command: string = 'generate:service';
|
|
17
|
+
protected static description: string = 'Generate an AerogelJS Service';
|
|
18
|
+
protected static parameters: [string, string][] = [['name', 'Service name']];
|
|
20
19
|
|
|
21
20
|
private name: string;
|
|
22
21
|
|
|
@@ -26,7 +25,7 @@ export class GenerateServiceCommand extends Command {
|
|
|
26
25
|
this.name = name;
|
|
27
26
|
}
|
|
28
27
|
|
|
29
|
-
|
|
28
|
+
protected async run(): Promise<void> {
|
|
30
29
|
this.assertAerogelOrDirectory('src/services');
|
|
31
30
|
|
|
32
31
|
const files = new Set<string>();
|
|
@@ -123,7 +122,7 @@ export class GenerateServiceCommand extends Command {
|
|
|
123
122
|
protected getBootstrapOptions(mainConfig: SourceFile): ObjectLiteralExpression | null {
|
|
124
123
|
const bootstrapAppCall = findDescendant(mainConfig, {
|
|
125
124
|
guard: Node.isCallExpression,
|
|
126
|
-
validate: (callExpression) => callExpression.getExpression().getText() === '
|
|
125
|
+
validate: (callExpression) => callExpression.getExpression().getText() === 'bootstrap',
|
|
127
126
|
skip: SyntaxKind.ImportDeclaration,
|
|
128
127
|
});
|
|
129
128
|
const bootstrapOptions = bootstrapAppCall?.getArguments()[1];
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import Command from '@/commands/Command';
|
|
2
|
+
import Log from '@/lib/Log';
|
|
3
|
+
|
|
4
|
+
export class InfoCommand extends Command {
|
|
5
|
+
|
|
6
|
+
protected static command: string = 'info';
|
|
7
|
+
protected static description: string = 'Show debugging information about the CLI';
|
|
8
|
+
|
|
9
|
+
protected async run(): Promise<void> {
|
|
10
|
+
Log.info('[AerogelJS CLI info]');
|
|
11
|
+
Log.info('Installation directory: ' + __dirname);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { describe, it } from 'vitest';
|
|
2
2
|
|
|
3
|
+
import FileMock from '@/lib/File.mock';
|
|
3
4
|
import ShellMock from '@/lib/Shell.mock';
|
|
4
5
|
|
|
5
6
|
import { InstallCommand } from './install';
|
|
6
7
|
|
|
7
8
|
describe('Install plugin command', () => {
|
|
8
9
|
|
|
9
|
-
it('installs
|
|
10
|
+
it('installs solid', async () => {
|
|
10
11
|
// Act
|
|
11
12
|
await InstallCommand.run('solid');
|
|
12
13
|
|
|
@@ -15,4 +16,26 @@ describe('Install plugin command', () => {
|
|
|
15
16
|
ShellMock.expectRan('npm install @aerogel/plugin-solid@next --save-exact');
|
|
16
17
|
});
|
|
17
18
|
|
|
19
|
+
it('installs soukai', async () => {
|
|
20
|
+
// Act
|
|
21
|
+
await InstallCommand.run('soukai');
|
|
22
|
+
|
|
23
|
+
// Assert
|
|
24
|
+
ShellMock.expectRan('npm install soukai@next --save-exact');
|
|
25
|
+
ShellMock.expectRan('npm install @aerogel/plugin-soukai@next --save-exact');
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
it('installs histoire', async () => {
|
|
29
|
+
// Arrange
|
|
30
|
+
FileMock.stub('package.json', '"@aerogel/core"');
|
|
31
|
+
|
|
32
|
+
// Act
|
|
33
|
+
await InstallCommand.run('histoire');
|
|
34
|
+
|
|
35
|
+
// Assert
|
|
36
|
+
ShellMock.expectRan('npm install histoire@0.17.6 --save-dev');
|
|
37
|
+
ShellMock.expectRan('npm install @aerogel/histoire@next --save-exact --save-dev');
|
|
38
|
+
ShellMock.expectRan('npm install patch-package --save-dev');
|
|
39
|
+
});
|
|
40
|
+
|
|
18
41
|
});
|
package/src/commands/install.ts
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
import Command from '@/commands/Command';
|
|
2
2
|
import Log from '@/lib/Log';
|
|
3
|
+
import { Histoire } from '@/plugins/Histoire';
|
|
3
4
|
import { Solid } from '@/plugins/Solid';
|
|
4
5
|
import { Soukai } from '@/plugins/Soukai';
|
|
5
6
|
import type Plugin from '@/plugins/Plugin';
|
|
6
7
|
|
|
7
|
-
const plugins = [new Soukai(), new Solid()].reduce(
|
|
8
|
+
const plugins = [new Soukai(), new Solid(), new Histoire()].reduce(
|
|
8
9
|
(pluginsObject, plugin) => Object.assign(pluginsObject, { [plugin.name]: plugin }),
|
|
9
10
|
{} as Record<string, Plugin>,
|
|
10
11
|
);
|
|
11
12
|
|
|
12
13
|
export class InstallCommand extends Command {
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
protected static command: string = 'install';
|
|
16
|
+
protected static description: string = 'Install an AerogelJS plugin';
|
|
17
|
+
protected static parameters: [string, string][] = [['plugin', 'Plugin to install']];
|
|
17
18
|
|
|
18
19
|
private plugin: Plugin;
|
|
19
20
|
|
|
@@ -25,7 +26,7 @@ export class InstallCommand extends Command {
|
|
|
25
26
|
Log.fail(`Plugin '${plugin}' doesn't exist. Available plugins: ${Object.keys(plugins).join(', ')}`);
|
|
26
27
|
}
|
|
27
28
|
|
|
28
|
-
|
|
29
|
+
protected async run(): Promise<void> {
|
|
29
30
|
await this.plugin.install();
|
|
30
31
|
}
|
|
31
32
|
|
package/src/lib/Editor.ts
CHANGED
|
@@ -31,15 +31,17 @@ export class Editor {
|
|
|
31
31
|
|
|
32
32
|
public async format(): Promise<void> {
|
|
33
33
|
await Log.animate('Formatting modified files', async () => {
|
|
34
|
-
const usingPrettier = File.exists('prettier.config.js');
|
|
35
|
-
const usingESLint = File.exists('.eslintrc.js');
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
34
|
+
const usingPrettier = File.exists('prettier.config.js') || File.contains('package.json', '"prettier": {');
|
|
35
|
+
const usingESLint = File.exists('.eslintrc.js') || File.contains('package.json', '"eslintConfig"');
|
|
36
|
+
const usingPrettierESLint = File.contains('package.json', '"prettier-eslint-cli"');
|
|
37
|
+
const formatFile = usingPrettierESLint
|
|
38
|
+
? (file: string) => Shell.run(`npx prettier-eslint ${file} --write`)
|
|
39
|
+
: async (file: string) => {
|
|
39
40
|
usingPrettier && (await Shell.run(`npx prettier ${file} --write`));
|
|
40
41
|
file.match(/\.(ts|js|vue)$/) && usingESLint && (await Shell.run(`npx eslint ${file} --fix`));
|
|
41
|
-
}
|
|
42
|
-
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
await Promise.all(arrayFrom(this.modifiedFiles).map(async (file) => formatFile(file)));
|
|
43
45
|
});
|
|
44
46
|
}
|
|
45
47
|
|
package/src/lib/File.mock.ts
CHANGED
|
@@ -41,10 +41,6 @@ export class FileMockService extends FileService {
|
|
|
41
41
|
this.virtualFilesystem[path] = contents;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
public reset(): void {
|
|
45
|
-
this.virtualFilesystem = {};
|
|
46
|
-
}
|
|
47
|
-
|
|
48
44
|
public expectCreated(path: string, expectContent?: (contents: string) => void): Assertion<string> {
|
|
49
45
|
expect(typeof this.virtualFilesystem[path] === 'string', `expected '${path}' file to have been created`).toBe(
|
|
50
46
|
true,
|
|
@@ -63,4 +59,4 @@ export class FileMockService extends FileService {
|
|
|
63
59
|
|
|
64
60
|
}
|
|
65
61
|
|
|
66
|
-
export default facade(
|
|
62
|
+
export default facade(FileMockService);
|
package/src/lib/File.ts
CHANGED