-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathgenerator.ts
More file actions
178 lines (164 loc) · 4.87 KB
/
generator.ts
File metadata and controls
178 lines (164 loc) · 4.87 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
import {
addDependenciesToPackageJson,
generateFiles,
installPackagesTask,
joinPathFragments,
OverwriteStrategy,
Tree,
} from '@nx/devkit';
import { ReactGeneratorSchema } from './schema';
import { runtimeConfigGenerator } from '../../ts/react-website/runtime-config/generator';
import { toScopeAlias } from '../../utils/npm-scope';
import { withVersions } from '../../utils/versions';
import { addSingleImport, applyGritQL } from '../../utils/ast';
import { toClassName } from '../../utils/names';
import { formatFilesInSubtree } from '../../utils/format';
import {
NxGeneratorInfo,
getGeneratorInfo,
readProjectConfigurationUnqualified,
} from '../../utils/nx';
import { addGeneratorMetricsIfApplicable } from '../../utils/metrics';
import { addTargetToServeLocal } from '../../connection/serve-local';
export const TRPC_REACT_GENERATOR_INFO: NxGeneratorInfo =
getGeneratorInfo(__filename);
export async function reactGenerator(
tree: Tree,
options: ReactGeneratorSchema,
) {
const frontendProjectConfig = readProjectConfigurationUnqualified(
tree,
options.frontendProjectName,
);
const backendProjectConfig = readProjectConfigurationUnqualified(
tree,
options.backendProjectName,
);
/* eslint-disable @typescript-eslint/no-explicit-any */
const metadata = backendProjectConfig.metadata as any;
const apiName = metadata.apiName;
const auth = metadata.auth ?? 'IAM';
const port = metadata.port ?? metadata.ports?.[0] ?? 2022;
const isRestApi = metadata.computeType === 'ServerlessApiGatewayRestApi';
const apiNameClassName = toClassName(apiName);
const backendProjectAlias = toScopeAlias(backendProjectConfig.name);
generateFiles(
tree,
joinPathFragments(__dirname, 'files'),
frontendProjectConfig.root,
{
apiName,
apiNameClassName: toClassName(apiName),
...options,
auth,
isRestApi,
backendProjectAlias,
},
{
overwriteStrategy: OverwriteStrategy.KeepExisting,
},
);
// Generate the tanstack query provider if it does not exist already
generateFiles(
tree,
joinPathFragments(
__dirname,
'../../utils/files/website/components/tanstack-query',
),
joinPathFragments(frontendProjectConfig.sourceRoot, 'components'),
{},
{
overwriteStrategy: OverwriteStrategy.KeepExisting,
},
);
if (auth === 'IAM') {
generateFiles(
tree,
joinPathFragments(__dirname, '../../utils/files/website/hooks/sigv4'),
joinPathFragments(frontendProjectConfig.sourceRoot, 'hooks'),
{},
{
overwriteStrategy: OverwriteStrategy.KeepExisting,
},
);
}
await runtimeConfigGenerator(tree, {
project: frontendProjectConfig.name,
});
// update main.tsx
const mainTsxPath = joinPathFragments(
frontendProjectConfig.sourceRoot,
'main.tsx',
);
await addSingleImport(
tree,
mainTsxPath,
'QueryClientProvider',
'./components/QueryClientProvider',
);
const clientProviderName = `${apiNameClassName}ClientProvider`;
await addSingleImport(
tree,
mainTsxPath,
clientProviderName,
`./components/${clientProviderName}`,
);
// Wrap <App /> in QueryClientProvider if not already present
await applyGritQL(
tree,
mainTsxPath,
'`<App />` => `<QueryClientProvider><App /></QueryClientProvider>` where { $program <: not contains `<QueryClientProvider>$_</QueryClientProvider>` }',
);
// Wrap <App /> in the tRPC client provider if not already present
await applyGritQL(
tree,
mainTsxPath,
`\`<App />\` => \`<${clientProviderName}><App /></${clientProviderName}>\` where { $program <: not contains \`<${clientProviderName}>$_</${clientProviderName}>\` }`,
);
await addTargetToServeLocal(
tree,
frontendProjectConfig.name,
backendProjectConfig.name,
{
url: `http://localhost:${port}/`,
apiName,
},
);
addDependenciesToPackageJson(
tree,
withVersions([
'@trpc/client',
'@trpc/tanstack-react-query',
'@tanstack/react-query',
'@tanstack/react-query-devtools',
...((isRestApi && auth !== 'None'
? ['event-source-polyfill']
: []) as any),
...((auth === 'IAM'
? [
'oidc-client-ts',
'aws4fetch',
'@aws-sdk/credential-providers',
'react-oidc-context',
]
: []) as any),
...((auth === 'Cognito' ? ['react-oidc-context'] : []) as any),
]),
withVersions([
'@smithy/types',
...((isRestApi && auth !== 'None'
? ['@types/event-source-polyfill']
: []) as any),
]),
);
await addGeneratorMetricsIfApplicable(tree, [TRPC_REACT_GENERATOR_INFO]);
await formatFilesInSubtree(tree);
return () => {
installPackagesTask(tree);
};
}
export default reactGenerator;