@canva/cli 0.0.1-beta.9 → 1.0.1
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/README.md +131 -31
- package/cli.js +841 -437
- package/lib/cjs/index.cjs +11 -0
- package/lib/esm/index.mjs +11 -0
- package/package.json +19 -4
- package/templates/base/backend/routers/auth.ts +4 -4
- package/templates/base/backend/routers/oauth.ts +3 -3
- package/templates/base/eslint.config.mjs +2 -25
- package/templates/base/package.json +26 -23
- package/templates/base/scripts/ssl/ssl.ts +1 -1
- package/templates/base/scripts/start/app_runner.ts +42 -5
- package/templates/base/scripts/start/context.ts +12 -6
- package/templates/base/scripts/start/start.ts +12 -1
- package/templates/base/scripts/start/tests/start.tests.ts +61 -0
- package/templates/base/utils/backend/base_backend/create.ts +3 -3
- package/templates/base/utils/backend/bearer_middleware/bearer_middleware.ts +2 -2
- package/templates/base/utils/backend/jwt_middleware/jwt_middleware.ts +4 -4
- package/templates/base/utils/backend/jwt_middleware/tests/jwt_middleware.tests.ts +1 -1
- package/templates/base/utils/use_add_element.ts +1 -1
- package/templates/base/utils/use_feature_support.ts +1 -1
- package/templates/{gen_ai/webpack.config.cjs → base/webpack.config.ts} +50 -68
- package/templates/common/.env.template +3 -3
- package/templates/common/README.md +16 -17
- package/templates/common/jest.config.mjs +1 -1
- package/templates/common/jest.setup.ts +1 -0
- package/templates/common/utils/backend/base_backend/create.ts +3 -3
- package/templates/common/utils/backend/jwt_middleware/jwt_middleware.ts +4 -4
- package/templates/common/utils/backend/jwt_middleware/tests/jwt_middleware.tests.ts +1 -1
- package/templates/common/utils/tests/table_wrapper.tests.ts +1 -1
- package/templates/common/utils/use_add_element.ts +1 -1
- package/templates/common/utils/use_feature_support.ts +1 -1
- package/templates/dam/backend/routers/dam.ts +24 -20
- package/templates/dam/backend/server.ts +1 -1
- package/templates/dam/canva-app.json +16 -0
- package/templates/dam/eslint.config.mjs +2 -28
- package/templates/dam/package.json +38 -41
- package/templates/dam/scripts/ssl/ssl.ts +1 -1
- package/templates/dam/scripts/start/app_runner.ts +42 -5
- package/templates/dam/scripts/start/context.ts +12 -6
- package/templates/dam/scripts/start/start.ts +12 -1
- package/templates/dam/scripts/start/tests/start.tests.ts +61 -0
- package/templates/dam/src/app.tsx +24 -3
- package/templates/dam/src/config.ts +212 -87
- package/templates/dam/src/index.tsx +1 -1
- package/templates/dam/utils/backend/base_backend/create.ts +3 -3
- package/templates/dam/utils/backend/jwt_middleware/jwt_middleware.ts +4 -4
- package/templates/dam/utils/backend/jwt_middleware/tests/jwt_middleware.tests.ts +1 -1
- package/templates/{base/webpack.config.cjs → dam/webpack.config.ts} +50 -68
- package/templates/data_connector/README.md +84 -0
- package/templates/data_connector/canva-app.json +21 -0
- package/templates/data_connector/declarations/declarations.d.ts +29 -0
- package/templates/data_connector/eslint.config.mjs +14 -0
- package/templates/data_connector/package.json +91 -0
- package/templates/data_connector/scripts/ssl/ssl.ts +131 -0
- package/templates/data_connector/scripts/start/app_runner.ts +201 -0
- package/templates/data_connector/scripts/start/context.ts +171 -0
- package/templates/data_connector/scripts/start/start.ts +46 -0
- package/templates/data_connector/scripts/start/tests/start.tests.ts +61 -0
- package/templates/data_connector/src/api/connect_client.ts +6 -0
- package/templates/data_connector/src/api/data_source.ts +96 -0
- package/templates/data_connector/src/api/data_sources/designs.tsx +296 -0
- package/templates/data_connector/src/api/data_sources/index.ts +4 -0
- package/templates/data_connector/src/api/data_sources/templates.tsx +329 -0
- package/templates/data_connector/src/api/fetch_data_table.ts +55 -0
- package/templates/data_connector/src/api/index.ts +4 -0
- package/templates/data_connector/src/api/oauth.ts +8 -0
- package/templates/data_connector/src/api/tests/data_source.test.tsx +99 -0
- package/templates/data_connector/src/app.tsx +20 -0
- package/templates/data_connector/src/components/app_error.tsx +15 -0
- package/templates/data_connector/src/components/footer.tsx +26 -0
- package/templates/data_connector/src/components/header.tsx +40 -0
- package/templates/data_connector/src/components/index.ts +3 -0
- package/templates/data_connector/src/components/inputs/messages.tsx +99 -0
- package/templates/data_connector/src/components/inputs/search_filter.tsx +108 -0
- package/templates/data_connector/src/components/inputs/select_field.tsx +26 -0
- package/templates/data_connector/src/context/app_context.tsx +124 -0
- package/templates/data_connector/src/context/index.ts +2 -0
- package/templates/data_connector/src/context/use_app_context.ts +17 -0
- package/templates/data_connector/src/entrypoint.tsx +70 -0
- package/templates/data_connector/src/home.tsx +21 -0
- package/templates/data_connector/src/index.tsx +68 -0
- package/templates/data_connector/src/pages/data_source_config.tsx +9 -0
- package/templates/data_connector/src/pages/error.tsx +37 -0
- package/templates/data_connector/src/pages/index.ts +4 -0
- package/templates/data_connector/src/pages/login.tsx +145 -0
- package/templates/data_connector/src/pages/select_source.tsx +24 -0
- package/templates/data_connector/src/paths.ts +7 -0
- package/templates/data_connector/src/routes/index.ts +2 -0
- package/templates/data_connector/src/routes/protected_route.tsx +25 -0
- package/templates/data_connector/src/routes/routes.tsx +42 -0
- package/templates/data_connector/src/utils/data_params.ts +17 -0
- package/templates/data_connector/src/utils/data_table.ts +115 -0
- package/templates/data_connector/src/utils/fetch_result.ts +36 -0
- package/templates/data_connector/src/utils/index.ts +2 -0
- package/templates/data_connector/src/utils/tests/data_table.test.ts +133 -0
- package/templates/data_connector/styles/components.css +38 -0
- package/templates/data_connector/tsconfig.json +54 -0
- package/templates/{dam/webpack.config.cjs → data_connector/webpack.config.ts} +50 -68
- package/templates/gen_ai/backend/routers/image.ts +8 -8
- package/templates/gen_ai/backend/server.ts +1 -1
- package/templates/gen_ai/canva-app.json +20 -0
- package/templates/gen_ai/eslint.config.mjs +2 -25
- package/templates/gen_ai/package.json +42 -43
- package/templates/gen_ai/scripts/ssl/ssl.ts +1 -1
- package/templates/gen_ai/scripts/start/app_runner.ts +42 -5
- package/templates/gen_ai/scripts/start/context.ts +12 -6
- package/templates/gen_ai/scripts/start/start.ts +12 -1
- package/templates/gen_ai/scripts/start/tests/start.tests.ts +61 -0
- package/templates/gen_ai/src/app.tsx +3 -3
- package/templates/gen_ai/src/components/footer.tsx +20 -7
- package/templates/gen_ai/src/components/image_grid.tsx +1 -1
- package/templates/gen_ai/src/components/loading_results.tsx +8 -8
- package/templates/gen_ai/src/components/prompt_input.tsx +4 -4
- package/templates/gen_ai/src/components/remaining_credits.tsx +29 -21
- package/templates/gen_ai/src/components/report_box.tsx +2 -2
- package/templates/gen_ai/src/components/tests/remaining_credit.tests.tsx +6 -2
- package/templates/gen_ai/src/context/use_app_context.ts +2 -2
- package/templates/gen_ai/src/home.tsx +2 -2
- package/templates/gen_ai/src/pages/error.tsx +3 -3
- package/templates/gen_ai/src/pages/results.tsx +1 -1
- package/templates/gen_ai/src/paths.ts +4 -0
- package/templates/gen_ai/src/routes/routes.tsx +4 -6
- package/templates/gen_ai/utils/backend/base_backend/create.ts +3 -3
- package/templates/gen_ai/utils/backend/bearer_middleware/bearer_middleware.ts +2 -2
- package/templates/{hello_world/webpack.config.cjs → gen_ai/webpack.config.ts} +50 -68
- package/templates/hello_world/canva-app.json +16 -0
- package/templates/hello_world/eslint.config.mjs +2 -25
- package/templates/hello_world/package.json +35 -38
- package/templates/hello_world/scripts/copy_env.ts +10 -0
- package/templates/hello_world/scripts/ssl/ssl.ts +1 -1
- package/templates/hello_world/scripts/start/app_runner.ts +42 -5
- package/templates/hello_world/scripts/start/context.ts +12 -6
- package/templates/hello_world/scripts/start/start.ts +12 -1
- package/templates/hello_world/scripts/start/tests/start.tests.ts +61 -0
- package/templates/hello_world/src/app.tsx +1 -1
- package/templates/hello_world/src/index.tsx +1 -1
- package/templates/hello_world/src/tests/__snapshots__/app.tests.tsx.snap +5 -5
- package/templates/hello_world/src/tests/app.tests.tsx +3 -3
- package/templates/hello_world/utils/use_add_element.ts +1 -1
- package/templates/hello_world/utils/use_feature_support.ts +1 -1
- package/templates/hello_world/webpack.config.ts +254 -0
- package/templates/optional/.cursor/mcp.json +8 -0
- package/templates/optional/.vscode/mcp.json +9 -0
- package/templates/optional/AGENTS.md +76 -0
- package/templates/optional/CLAUDE.md +76 -0
- package/templates/common/conf/eslint-general.mjs +0 -303
- package/templates/common/conf/eslint-i18n.mjs +0 -41
- package/templates/common/conf/eslint-local-i18n-rules/index.mjs +0 -181
- /package/templates/base/scripts/{copy-env.ts → copy_env.ts} +0 -0
- /package/templates/dam/scripts/{copy-env.ts → copy_env.ts} +0 -0
- /package/templates/{gen_ai/scripts/copy-env.ts → data_connector/scripts/copy_env.ts} +0 -0
- /package/templates/{hello_world/scripts/copy-env.ts → gen_ai/scripts/copy_env.ts} +0 -0
- /package/templates/{common → optional}/.vscode/extensions.json +0 -0
|
@@ -1,31 +1,36 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import type { Configuration } from "webpack";
|
|
2
|
+
import { DefinePlugin, optimize } from "webpack";
|
|
3
|
+
import * as path from "path";
|
|
4
|
+
import * as TerserPlugin from "terser-webpack-plugin";
|
|
5
|
+
import { transform } from "@formatjs/ts-transformer";
|
|
6
|
+
import * as chalk from "chalk";
|
|
7
|
+
import { config } from "dotenv";
|
|
8
|
+
import { Configuration as DevServerConfiguration } from "webpack-dev-server";
|
|
8
9
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
* @returns {Object}
|
|
23
|
-
*/
|
|
24
|
-
function buildConfig({
|
|
10
|
+
config();
|
|
11
|
+
|
|
12
|
+
type DevConfig = {
|
|
13
|
+
port: number;
|
|
14
|
+
enableHmr: boolean;
|
|
15
|
+
enableHttps: boolean;
|
|
16
|
+
appOrigin?: string;
|
|
17
|
+
appId?: string; // Deprecated in favour of appOrigin
|
|
18
|
+
certFile?: string;
|
|
19
|
+
keyFile?: string;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export function buildConfig({
|
|
25
23
|
devConfig,
|
|
26
24
|
appEntry = path.join(process.cwd(), "src", "index.tsx"),
|
|
27
25
|
backendHost = process.env.CANVA_BACKEND_HOST,
|
|
28
|
-
|
|
26
|
+
// For IN_HARNESS, refer to the following docs for more information: https://www.canva.dev/docs/apps/test-harness/
|
|
27
|
+
inHarness = process.env.IN_HARNESS?.toLowerCase() === "true",
|
|
28
|
+
}: {
|
|
29
|
+
devConfig?: DevConfig;
|
|
30
|
+
appEntry?: string;
|
|
31
|
+
backendHost?: string;
|
|
32
|
+
inHarness?: boolean;
|
|
33
|
+
} = {}): Configuration & DevServerConfiguration {
|
|
29
34
|
const mode = devConfig ? "development" : "production";
|
|
30
35
|
|
|
31
36
|
if (!backendHost) {
|
|
@@ -46,9 +51,14 @@ function buildConfig({
|
|
|
46
51
|
return {
|
|
47
52
|
mode,
|
|
48
53
|
context: path.resolve(process.cwd(), "./"),
|
|
49
|
-
entry:
|
|
50
|
-
|
|
51
|
-
|
|
54
|
+
entry: inHarness
|
|
55
|
+
? {
|
|
56
|
+
harness: path.join(process.cwd(), "harness", "harness.tsx"),
|
|
57
|
+
init: path.join(process.cwd(), "harness", "init.ts"),
|
|
58
|
+
}
|
|
59
|
+
: {
|
|
60
|
+
app: appEntry,
|
|
61
|
+
},
|
|
52
62
|
target: "web",
|
|
53
63
|
resolve: {
|
|
54
64
|
alias: {
|
|
@@ -60,7 +70,7 @@ function buildConfig({
|
|
|
60
70
|
extensions: [".ts", ".tsx", ".js", ".css", ".svg", ".woff", ".woff2"],
|
|
61
71
|
},
|
|
62
72
|
infrastructureLogging: {
|
|
63
|
-
level: "none",
|
|
73
|
+
level: inHarness ? "info" : "none",
|
|
64
74
|
},
|
|
65
75
|
module: {
|
|
66
76
|
rules: [
|
|
@@ -172,35 +182,26 @@ function buildConfig({
|
|
|
172
182
|
new DefinePlugin({
|
|
173
183
|
BACKEND_HOST: JSON.stringify(backendHost),
|
|
174
184
|
}),
|
|
175
|
-
// Apps can only submit a single JS file via the
|
|
185
|
+
// Apps can only submit a single JS file via the Developer Portal
|
|
176
186
|
new optimize.LimitChunkCountPlugin({ maxChunks: 1 }),
|
|
177
|
-
mode === "development" && new ReactRefreshWebpackPlugin(),
|
|
178
187
|
].filter(Boolean),
|
|
179
188
|
...buildDevConfig(devConfig),
|
|
180
189
|
};
|
|
181
190
|
}
|
|
182
191
|
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
* @param {boolean} [options.enableHmr]
|
|
188
|
-
* @param {boolean} [options.enableHttps]
|
|
189
|
-
* @param {string} [options.appOrigin]
|
|
190
|
-
* @param {string} [options.appId] - Deprecated in favour of appOrigin
|
|
191
|
-
* @param {string} [options.certFile]
|
|
192
|
-
* @param {string} [options.keyFile]
|
|
193
|
-
* @returns {Object|null}
|
|
194
|
-
*/
|
|
195
|
-
function buildDevConfig(options) {
|
|
192
|
+
function buildDevConfig(options?: DevConfig): {
|
|
193
|
+
devtool?: string;
|
|
194
|
+
devServer?: DevServerConfiguration;
|
|
195
|
+
} {
|
|
196
196
|
if (!options) {
|
|
197
|
-
return
|
|
197
|
+
return {};
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
const { port, enableHmr, appOrigin, appId, enableHttps, certFile, keyFile } =
|
|
201
201
|
options;
|
|
202
|
+
const host = "localhost";
|
|
202
203
|
|
|
203
|
-
let devServer = {
|
|
204
|
+
let devServer: DevServerConfiguration = {
|
|
204
205
|
server: enableHttps
|
|
205
206
|
? {
|
|
206
207
|
type: "https",
|
|
@@ -210,7 +211,8 @@ function buildDevConfig(options) {
|
|
|
210
211
|
},
|
|
211
212
|
}
|
|
212
213
|
: "http",
|
|
213
|
-
host
|
|
214
|
+
host,
|
|
215
|
+
allowedHosts: [host],
|
|
214
216
|
historyApiFallback: {
|
|
215
217
|
rewrites: [{ from: /^\/$/, to: "/app.js" }],
|
|
216
218
|
},
|
|
@@ -227,31 +229,13 @@ function buildDevConfig(options) {
|
|
|
227
229
|
if (enableHmr && appOrigin) {
|
|
228
230
|
devServer = {
|
|
229
231
|
...devServer,
|
|
230
|
-
allowedHosts: new URL(appOrigin).hostname,
|
|
232
|
+
allowedHosts: [host, new URL(appOrigin).hostname],
|
|
231
233
|
headers: {
|
|
232
234
|
"Access-Control-Allow-Origin": appOrigin,
|
|
233
235
|
"Access-Control-Allow-Credentials": "true",
|
|
234
236
|
"Access-Control-Allow-Private-Network": "true",
|
|
235
237
|
},
|
|
236
238
|
};
|
|
237
|
-
} else if (enableHmr && appId) {
|
|
238
|
-
// Deprecated - App ID should not be used to configure HMR in the future and can be safely removed
|
|
239
|
-
// after a few months.
|
|
240
|
-
|
|
241
|
-
console.warn(
|
|
242
|
-
"Enabling Hot Module Replacement (HMR) with an App ID is deprecated, please see the README.md on how to update.",
|
|
243
|
-
);
|
|
244
|
-
|
|
245
|
-
const appDomain = `app-${appId.toLowerCase().trim()}.canva-apps.com`;
|
|
246
|
-
devServer = {
|
|
247
|
-
...devServer,
|
|
248
|
-
allowedHosts: appDomain,
|
|
249
|
-
headers: {
|
|
250
|
-
"Access-Control-Allow-Origin": `https://${appDomain}`,
|
|
251
|
-
"Access-Control-Allow-Credentials": "true",
|
|
252
|
-
"Access-Control-Allow-Private-Network": "true",
|
|
253
|
-
},
|
|
254
|
-
};
|
|
255
239
|
} else {
|
|
256
240
|
if (enableHmr && !appOrigin) {
|
|
257
241
|
console.warn(
|
|
@@ -267,6 +251,4 @@ function buildDevConfig(options) {
|
|
|
267
251
|
};
|
|
268
252
|
}
|
|
269
253
|
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
module.exports.buildConfig = buildConfig;
|
|
254
|
+
export default buildConfig;
|
|
@@ -22,48 +22,48 @@ const imageUrls: ImageResponse[] = [
|
|
|
22
22
|
fullsize: {
|
|
23
23
|
width: 1280,
|
|
24
24
|
height: 853,
|
|
25
|
-
url: "https://
|
|
25
|
+
url: "https://images.pexels.com/photos/1145720/pexels-photo-1145720.jpeg?auto=compress&cs=tinysrgb&w=1280&h=853&dpr=2",
|
|
26
26
|
},
|
|
27
27
|
thumbnail: {
|
|
28
28
|
width: 640,
|
|
29
29
|
height: 427,
|
|
30
|
-
url: "https://
|
|
30
|
+
url: "https://images.pexels.com/photos/1145720/pexels-photo-1145720.jpeg?auto=compress&cs=tinysrgb&w=640&h=427&dpr=2",
|
|
31
31
|
},
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
fullsize: {
|
|
35
35
|
width: 1280,
|
|
36
36
|
height: 853,
|
|
37
|
-
url: "https://
|
|
37
|
+
url: "https://images.pexels.com/photos/4010108/pexels-photo-4010108.jpeg?auto=compress&cs=tinysrgb&w=1280&h=863&dpr=2",
|
|
38
38
|
},
|
|
39
39
|
thumbnail: {
|
|
40
40
|
width: 640,
|
|
41
41
|
height: 427,
|
|
42
|
-
url: "https://
|
|
42
|
+
url: "https://images.pexels.com/photos/4010108/pexels-photo-4010108.jpeg?auto=compress&cs=tinysrgb&w=640&h=427&dpr=2",
|
|
43
43
|
},
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
fullsize: {
|
|
47
47
|
width: 1280,
|
|
48
48
|
height: 853,
|
|
49
|
-
url: "https://
|
|
49
|
+
url: "https://images.pexels.com/photos/1327496/pexels-photo-1327496.jpeg?auto=compress&cs=tinysrgb&w=1280&h=853&dpr=2",
|
|
50
50
|
},
|
|
51
51
|
thumbnail: {
|
|
52
52
|
width: 640,
|
|
53
53
|
height: 427,
|
|
54
|
-
url: "https://
|
|
54
|
+
url: "https://images.pexels.com/photos/1327496/pexels-photo-1327496.jpeg?auto=compress&cs=tinysrgb&w=640&h=427&dpr=2",
|
|
55
55
|
},
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
58
|
fullsize: {
|
|
59
59
|
width: 1280,
|
|
60
60
|
height: 853,
|
|
61
|
-
url: "https://
|
|
61
|
+
url: "https://images.pexels.com/photos/4693135/pexels-photo-4693135.jpeg?auto=compress&cs=tinysrgb&w=1280&h=853&dpr=2",
|
|
62
62
|
},
|
|
63
63
|
thumbnail: {
|
|
64
64
|
width: 640,
|
|
65
65
|
height: 427,
|
|
66
|
-
url: "https://
|
|
66
|
+
url: "https://images.pexels.com/photos/4693135/pexels-photo-4693135.jpeg?auto=compress&cs=tinysrgb&w=640&h=427&dpr=2",
|
|
67
67
|
},
|
|
68
68
|
},
|
|
69
69
|
];
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://www.canva.dev/schemas/app/v1/manifest-schema.json",
|
|
3
|
+
"manifest_schema_version": 1,
|
|
4
|
+
"runtime": {
|
|
5
|
+
"permissions": [
|
|
6
|
+
{
|
|
7
|
+
"name": "canva:asset:private:write",
|
|
8
|
+
"type": "mandatory"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"name": "canva:design:content:read",
|
|
12
|
+
"type": "mandatory"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "canva:design:content:write",
|
|
16
|
+
"type": "mandatory"
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -1,17 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { fileURLToPath } from "node:url";
|
|
3
|
-
import js from "@eslint/js";
|
|
4
|
-
import { FlatCompat } from "@eslint/eslintrc";
|
|
5
|
-
import general from "./conf/eslint-general.mjs";
|
|
6
|
-
import i18n from "./conf/eslint-i18n.mjs";
|
|
7
|
-
|
|
8
|
-
const __filename = fileURLToPath(import.meta.url);
|
|
9
|
-
const __dirname = path.dirname(__filename);
|
|
10
|
-
const compat = new FlatCompat({
|
|
11
|
-
baseDirectory: __dirname,
|
|
12
|
-
recommendedConfig: js.configs.recommended,
|
|
13
|
-
allConfig: js.configs.all,
|
|
14
|
-
});
|
|
1
|
+
import canvaPlugin from "@canva/app-eslint-plugin";
|
|
15
2
|
|
|
16
3
|
export default [
|
|
17
4
|
{
|
|
@@ -23,15 +10,5 @@ export default [
|
|
|
23
10
|
"**/*.config.*",
|
|
24
11
|
],
|
|
25
12
|
},
|
|
26
|
-
...
|
|
27
|
-
"eslint:recommended",
|
|
28
|
-
"plugin:@typescript-eslint/recommended",
|
|
29
|
-
"plugin:@typescript-eslint/eslint-recommended",
|
|
30
|
-
"plugin:@typescript-eslint/strict",
|
|
31
|
-
"plugin:@typescript-eslint/stylistic",
|
|
32
|
-
"plugin:react/recommended",
|
|
33
|
-
"plugin:jest/recommended",
|
|
34
|
-
),
|
|
35
|
-
...general,
|
|
36
|
-
...i18n,
|
|
13
|
+
...canvaPlugin.configs.apps,
|
|
37
14
|
];
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"description": "An example app demonstrating common patterns that you might use in a generative AI app.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"extract": "formatjs extract \"src/**/*.{ts,tsx}\" --out-file dist/messages_en.json",
|
|
7
|
-
"build": "webpack --config webpack.config.
|
|
7
|
+
"build": "webpack --config webpack.config.ts --mode production && npm run extract",
|
|
8
8
|
"format": "prettier '**/*.{css,ts,tsx}' --no-config --write",
|
|
9
9
|
"format:check": "prettier '**/*.{css,ts,tsx}' --no-config --check --ignore-path",
|
|
10
10
|
"format:file": "prettier $1 --no-config --write",
|
|
@@ -12,89 +12,88 @@
|
|
|
12
12
|
"lint:fix": "eslint . --fix",
|
|
13
13
|
"lint:types": "tsc",
|
|
14
14
|
"start": "ts-node ./scripts/start/start.ts",
|
|
15
|
+
"start:preview": "npm run start -- --preview",
|
|
15
16
|
"test": "jest --no-cache",
|
|
16
17
|
"test:watch": "jest --watchAll",
|
|
17
|
-
"postinstall": "ts-node ./scripts/
|
|
18
|
+
"postinstall": "ts-node ./scripts/copy_env.ts"
|
|
18
19
|
},
|
|
19
20
|
"dependencies": {
|
|
20
|
-
"@canva/app-i18n-kit": "^1.0.
|
|
21
|
-
"@canva/app-ui-kit": "^4.
|
|
22
|
-
"@canva/asset": "^2.1
|
|
23
|
-
"@canva/design": "^2.
|
|
21
|
+
"@canva/app-i18n-kit": "^1.0.3",
|
|
22
|
+
"@canva/app-ui-kit": "^4.10.0",
|
|
23
|
+
"@canva/asset": "^2.2.1",
|
|
24
|
+
"@canva/design": "^2.7.2",
|
|
24
25
|
"@canva/error": "^2.1.0",
|
|
25
|
-
"@canva/platform": "^2.
|
|
26
|
-
"@canva/user": "^2.1.
|
|
26
|
+
"@canva/platform": "^2.2.0",
|
|
27
|
+
"@canva/user": "^2.1.1",
|
|
27
28
|
"cookie-parser": "1.4.7",
|
|
28
29
|
"cors": "2.8.5",
|
|
29
|
-
"html-react-parser": "5.2.
|
|
30
|
-
"obscenity": "0.4.
|
|
30
|
+
"html-react-parser": "5.2.5",
|
|
31
|
+
"obscenity": "0.4.4",
|
|
31
32
|
"react": "18.3.1",
|
|
32
33
|
"react-dom": "18.3.1",
|
|
33
|
-
"react-error-boundary": "
|
|
34
|
+
"react-error-boundary": "6.0.0",
|
|
34
35
|
"react-intl": "6.8.7",
|
|
35
|
-
"react-router-dom": "6.
|
|
36
|
+
"react-router-dom": "7.6.3"
|
|
36
37
|
},
|
|
37
38
|
"devDependencies": {
|
|
38
|
-
"@eslint
|
|
39
|
-
"@
|
|
40
|
-
"@formatjs/cli": "6.
|
|
41
|
-
"@formatjs/ts-transformer": "3.
|
|
42
|
-
"@ngrok/ngrok": "1.
|
|
43
|
-
"@pmmmwh/react-refresh-webpack-plugin": "0.
|
|
39
|
+
"@canva/app-eslint-plugin": "^1.0.0-beta.3",
|
|
40
|
+
"@canva/cli": ">= 0.0.1-beta.13",
|
|
41
|
+
"@formatjs/cli": "6.7.2",
|
|
42
|
+
"@formatjs/ts-transformer": "3.14.0",
|
|
43
|
+
"@ngrok/ngrok": "1.5.1",
|
|
44
|
+
"@pmmmwh/react-refresh-webpack-plugin": "0.6.1",
|
|
44
45
|
"@svgr/webpack": "8.1.0",
|
|
45
|
-
"@testing-library/react": "16.
|
|
46
|
+
"@testing-library/react": "16.3.0",
|
|
46
47
|
"@types/debug": "4.1.12",
|
|
47
48
|
"@types/express": "4.17.21",
|
|
48
|
-
"@types/express-serve-static-core": "
|
|
49
|
+
"@types/express-serve-static-core": "5.0.6",
|
|
49
50
|
"@types/jest": "29.5.14",
|
|
50
|
-
"@types/jsonwebtoken": "9.0.
|
|
51
|
-
"@types/node": "20.
|
|
51
|
+
"@types/jsonwebtoken": "9.0.10",
|
|
52
|
+
"@types/node": "20.19.2",
|
|
52
53
|
"@types/node-fetch": "2.6.12",
|
|
53
54
|
"@types/node-forge": "1.3.11",
|
|
54
55
|
"@types/nodemon": "1.19.6",
|
|
55
56
|
"@types/prompts": "2.4.9",
|
|
56
57
|
"@types/react": "18.3.12",
|
|
57
58
|
"@types/react-dom": "18.3.1",
|
|
58
|
-
"@types/webpack
|
|
59
|
-
"@
|
|
60
|
-
"@
|
|
59
|
+
"@types/webpack": "5.28.5",
|
|
60
|
+
"@types/webpack-dev-server": "4.7.2",
|
|
61
|
+
"@types/webpack-env": "1.18.8",
|
|
61
62
|
"chalk": "4.1.2",
|
|
62
63
|
"cli-table3": "0.6.5",
|
|
63
64
|
"css-loader": "7.1.2",
|
|
64
65
|
"css-modules-typescript-loader": "4.0.1",
|
|
65
|
-
"cssnano": "7.0.
|
|
66
|
-
"debug": "4.4.
|
|
67
|
-
"dotenv": "16.
|
|
68
|
-
"
|
|
69
|
-
"eslint-plugin-formatjs": "5.2.8",
|
|
70
|
-
"eslint-plugin-jest": "28.9.0",
|
|
71
|
-
"eslint-plugin-react": "7.37.2",
|
|
72
|
-
"exponential-backoff": "3.1.1",
|
|
66
|
+
"cssnano": "7.0.7",
|
|
67
|
+
"debug": "4.4.1",
|
|
68
|
+
"dotenv": "16.6.0",
|
|
69
|
+
"exponential-backoff": "3.1.2",
|
|
73
70
|
"express": "4.21.2",
|
|
74
71
|
"express-basic-auth": "1.2.1",
|
|
75
72
|
"jest": "29.7.0",
|
|
76
73
|
"jest-css-modules-transform": "4.4.2",
|
|
77
74
|
"jest-environment-jsdom": "29.7.0",
|
|
78
75
|
"jsonwebtoken": "9.0.2",
|
|
79
|
-
"jwks-rsa": "3.
|
|
76
|
+
"jwks-rsa": "3.2.0",
|
|
80
77
|
"mini-css-extract-plugin": "2.9.2",
|
|
81
78
|
"node-fetch": "3.3.2",
|
|
82
79
|
"node-forge": "1.3.1",
|
|
83
80
|
"nodemon": "3.0.1",
|
|
81
|
+
"open": "8.4.2",
|
|
84
82
|
"postcss-loader": "8.1.1",
|
|
85
|
-
"prettier": "3.
|
|
83
|
+
"prettier": "3.6.2",
|
|
86
84
|
"prompts": "2.4.2",
|
|
87
|
-
"react-refresh": "0.
|
|
85
|
+
"react-refresh": "0.17.0",
|
|
88
86
|
"style-loader": "4.0.0",
|
|
89
|
-
"terser-webpack-plugin": "5.3.
|
|
90
|
-
"
|
|
91
|
-
"ts-
|
|
87
|
+
"terser-webpack-plugin": "5.3.14",
|
|
88
|
+
"tree-kill": "1.2.2",
|
|
89
|
+
"ts-jest": "29.4.0",
|
|
90
|
+
"ts-loader": "9.5.2",
|
|
92
91
|
"ts-node": "10.9.2",
|
|
93
|
-
"typescript": "5.
|
|
92
|
+
"typescript": "5.8.2",
|
|
94
93
|
"url-loader": "4.1.1",
|
|
95
|
-
"webpack": "5.
|
|
96
|
-
"webpack-cli": "
|
|
97
|
-
"webpack-dev-server": "5.
|
|
94
|
+
"webpack": "5.99.9",
|
|
95
|
+
"webpack-cli": "6.0.1",
|
|
96
|
+
"webpack-dev-server": "5.2.2",
|
|
98
97
|
"yargs": "17.7.2"
|
|
99
98
|
}
|
|
100
99
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as crypto from "crypto";
|
|
2
|
+
import * as fs from "fs/promises";
|
|
2
3
|
import { pki } from "node-forge";
|
|
3
4
|
import * as path from "path";
|
|
4
|
-
import * as fs from "fs/promises";
|
|
5
5
|
|
|
6
6
|
const SSL_CERT_DIR = path.resolve(process.cwd(), "..", "..", ".ssl");
|
|
7
7
|
const CERT_FILE = path.resolve(SSL_CERT_DIR, "certificate.pem");
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
/* eslint-disable no-console */
|
|
2
|
-
import
|
|
3
|
-
import * as chalk from "chalk";
|
|
4
|
-
import { buildConfig } from "../../webpack.config.cjs";
|
|
2
|
+
import { generatePreviewUrl } from "@canva/cli";
|
|
5
3
|
import * as ngrok from "@ngrok/ngrok";
|
|
6
|
-
import * as
|
|
4
|
+
import * as chalk from "chalk";
|
|
7
5
|
import * as Table from "cli-table3";
|
|
6
|
+
import * as nodemon from "nodemon";
|
|
7
|
+
import * as open from "open";
|
|
8
8
|
import * as webpack from "webpack";
|
|
9
9
|
import * as WebpackDevServer from "webpack-dev-server";
|
|
10
|
+
import { buildConfig } from "../../webpack.config";
|
|
10
11
|
import type { Certificate } from "../ssl/ssl";
|
|
11
12
|
import { createOrRetrieveCertificate } from "../ssl/ssl";
|
|
13
|
+
import type { Context } from "./context";
|
|
12
14
|
|
|
13
15
|
export const infoChalk = chalk.blue.bold;
|
|
14
16
|
export const warnChalk = chalk.bgYellow.bold;
|
|
@@ -46,12 +48,18 @@ export class AppRunner {
|
|
|
46
48
|
}
|
|
47
49
|
}
|
|
48
50
|
|
|
49
|
-
const table = new Table(
|
|
51
|
+
const table = new Table({
|
|
52
|
+
colWidths: [30, 80],
|
|
53
|
+
wordWrap: true,
|
|
54
|
+
wrapOnWordBoundary: true,
|
|
55
|
+
});
|
|
50
56
|
|
|
51
57
|
const server = await this.runWebpackDevServer(ctx, table, cert);
|
|
52
58
|
|
|
53
59
|
await this.maybeRunBackendServer(ctx, table, cert, server);
|
|
54
60
|
|
|
61
|
+
await this.generateAndOpenPreviewUrl(ctx.openPreview, table);
|
|
62
|
+
|
|
55
63
|
console.log(table.toString(), "\n");
|
|
56
64
|
|
|
57
65
|
console.log(
|
|
@@ -161,4 +169,33 @@ export class AppRunner {
|
|
|
161
169
|
|
|
162
170
|
return server;
|
|
163
171
|
};
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Calls the Canva CLI to generate a preview URL for the app
|
|
175
|
+
*/
|
|
176
|
+
private readonly generateAndOpenPreviewUrl = async (
|
|
177
|
+
openPreview: boolean,
|
|
178
|
+
table: Table.Table,
|
|
179
|
+
) => {
|
|
180
|
+
const previewCellHeader = { content: "Preview your app in Canva" };
|
|
181
|
+
|
|
182
|
+
const generatePreviewResult = await generatePreviewUrl();
|
|
183
|
+
|
|
184
|
+
if (!generatePreviewResult.success) {
|
|
185
|
+
table.push([
|
|
186
|
+
previewCellHeader,
|
|
187
|
+
{ content: warnChalk(generatePreviewResult.message) },
|
|
188
|
+
]);
|
|
189
|
+
return;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
table.push([
|
|
193
|
+
previewCellHeader,
|
|
194
|
+
{ content: "Preview URL", href: generatePreviewResult.data },
|
|
195
|
+
]);
|
|
196
|
+
|
|
197
|
+
if (openPreview) {
|
|
198
|
+
open(generatePreviewResult.data);
|
|
199
|
+
}
|
|
200
|
+
};
|
|
164
201
|
}
|
|
@@ -3,8 +3,10 @@ import * as path from "path";
|
|
|
3
3
|
|
|
4
4
|
interface CliArgs {
|
|
5
5
|
example?: string;
|
|
6
|
-
useHttps
|
|
7
|
-
ngrok
|
|
6
|
+
useHttps: boolean;
|
|
7
|
+
ngrok: boolean;
|
|
8
|
+
preview: boolean;
|
|
9
|
+
overrideFrontendPort?: number;
|
|
8
10
|
}
|
|
9
11
|
|
|
10
12
|
interface EnvVars {
|
|
@@ -45,7 +47,7 @@ export class Context {
|
|
|
45
47
|
}
|
|
46
48
|
|
|
47
49
|
get ngrokEnabled() {
|
|
48
|
-
return
|
|
50
|
+
return this.args.ngrok;
|
|
49
51
|
}
|
|
50
52
|
|
|
51
53
|
get hmrEnabled() {
|
|
@@ -53,7 +55,7 @@ export class Context {
|
|
|
53
55
|
}
|
|
54
56
|
|
|
55
57
|
get httpsEnabled() {
|
|
56
|
-
return
|
|
58
|
+
return this.args.useHttps;
|
|
57
59
|
}
|
|
58
60
|
|
|
59
61
|
get frontendEntryPath() {
|
|
@@ -69,11 +71,11 @@ export class Context {
|
|
|
69
71
|
}
|
|
70
72
|
|
|
71
73
|
get frontendUrl() {
|
|
72
|
-
return `${this.protocol}://localhost:${this.
|
|
74
|
+
return `${this.protocol}://localhost:${this.frontendPort}`;
|
|
73
75
|
}
|
|
74
76
|
|
|
75
77
|
get frontendPort() {
|
|
76
|
-
return this.envVars.frontendPort;
|
|
78
|
+
return this.args.overrideFrontendPort || this.envVars.frontendPort;
|
|
77
79
|
}
|
|
78
80
|
|
|
79
81
|
get developerBackendEntryPath(): string | undefined {
|
|
@@ -117,6 +119,10 @@ export class Context {
|
|
|
117
119
|
return this.envVars.appId;
|
|
118
120
|
}
|
|
119
121
|
|
|
122
|
+
get openPreview(): boolean {
|
|
123
|
+
return this.args.preview;
|
|
124
|
+
}
|
|
125
|
+
|
|
120
126
|
private get protocol(): "https" | "http" {
|
|
121
127
|
return this.httpsEnabled ? "https" : "http";
|
|
122
128
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import * as yargs from "yargs";
|
|
3
|
-
import { AppRunner } from "./app_runner";
|
|
4
3
|
import { hideBin } from "yargs/helpers";
|
|
4
|
+
import { AppRunner } from "./app_runner";
|
|
5
5
|
import { Context } from "./context";
|
|
6
6
|
|
|
7
7
|
const appRunner = new AppRunner();
|
|
@@ -23,6 +23,17 @@ yargs(hideBin(process.argv))
|
|
|
23
23
|
default:
|
|
24
24
|
process.env.npm_config_use_https?.toLocaleLowerCase().trim() === "true",
|
|
25
25
|
})
|
|
26
|
+
.option("override-frontend-port", {
|
|
27
|
+
description:
|
|
28
|
+
"Port to run the local development server on. Overrides the frontend port set in the .env file.",
|
|
29
|
+
type: "number",
|
|
30
|
+
alias: "p",
|
|
31
|
+
})
|
|
32
|
+
.option("preview", {
|
|
33
|
+
description: "Open the app in Canva.",
|
|
34
|
+
type: "boolean",
|
|
35
|
+
default: false,
|
|
36
|
+
})
|
|
26
37
|
.command(
|
|
27
38
|
"$0",
|
|
28
39
|
"Starts local development",
|