fragment-ts 2.0.3 → 2.0.4
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/dist/platform/cli/commands/install/command.d.ts +14 -0
- package/dist/platform/cli/commands/install/command.d.ts.map +1 -0
- package/dist/platform/cli/commands/install/command.js +145 -0
- package/dist/platform/cli/commands/install/command.js.map +1 -0
- package/dist/platform/cli/commands/register.d.ts.map +1 -1
- package/dist/platform/cli/commands/register.js +37 -28
- package/dist/platform/cli/commands/register.js.map +1 -1
- package/dist/platform/cli/index.js +61 -1
- package/dist/platform/cli/index.js.map +1 -1
- package/dist/platform/cli/web/commands/create/feature.d.ts +11 -0
- package/dist/platform/cli/web/commands/create/feature.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/create/feature.js +43 -0
- package/dist/platform/cli/web/commands/create/feature.js.map +1 -0
- package/dist/platform/cli/web/commands/create/module.d.ts +11 -0
- package/dist/platform/cli/web/commands/create/module.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/create/module.js +44 -0
- package/dist/platform/cli/web/commands/create/module.js.map +1 -0
- package/dist/platform/cli/web/commands/create/mvvm.d.ts +11 -0
- package/dist/platform/cli/web/commands/create/mvvm.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/create/mvvm.js +43 -0
- package/dist/platform/cli/web/commands/create/mvvm.js.map +1 -0
- package/dist/platform/cli/web/commands/init-fullstack.d.ts +12 -0
- package/dist/platform/cli/web/commands/init-fullstack.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/init-fullstack.js +42 -0
- package/dist/platform/cli/web/commands/init-fullstack.js.map +1 -0
- package/dist/platform/cli/web/commands/init-web.d.ts +12 -0
- package/dist/platform/cli/web/commands/init-web.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/init-web.js +70 -0
- package/dist/platform/cli/web/commands/init-web.js.map +1 -0
- package/dist/platform/cli/web/commands/install-api.d.ts +11 -0
- package/dist/platform/cli/web/commands/install-api.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/install-api.js +92 -0
- package/dist/platform/cli/web/commands/install-api.js.map +1 -0
- package/dist/platform/cli/web/commands/install-web.d.ts +13 -0
- package/dist/platform/cli/web/commands/install-web.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/install-web.js +102 -0
- package/dist/platform/cli/web/commands/install-web.js.map +1 -0
- package/dist/platform/cli/web/commands/install.d.ts +3 -0
- package/dist/platform/cli/web/commands/install.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/install.js +23 -0
- package/dist/platform/cli/web/commands/install.js.map +1 -0
- package/dist/platform/cli/web/commands/make/component.d.ts +16 -0
- package/dist/platform/cli/web/commands/make/component.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/make/component.js +73 -0
- package/dist/platform/cli/web/commands/make/component.js.map +1 -0
- package/dist/platform/cli/web/commands/make/guard.d.ts +13 -0
- package/dist/platform/cli/web/commands/make/guard.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/make/guard.js +46 -0
- package/dist/platform/cli/web/commands/make/guard.js.map +1 -0
- package/dist/platform/cli/web/commands/make/layout.d.ts +12 -0
- package/dist/platform/cli/web/commands/make/layout.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/make/layout.js +44 -0
- package/dist/platform/cli/web/commands/make/layout.js.map +1 -0
- package/dist/platform/cli/web/commands/make/page.d.ts +17 -0
- package/dist/platform/cli/web/commands/make/page.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/make/page.js +66 -0
- package/dist/platform/cli/web/commands/make/page.js.map +1 -0
- package/dist/platform/cli/web/commands/make/resource.d.ts +17 -0
- package/dist/platform/cli/web/commands/make/resource.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/make/resource.js +37 -0
- package/dist/platform/cli/web/commands/make/resource.js.map +1 -0
- package/dist/platform/cli/web/commands/make/service.d.ts +16 -0
- package/dist/platform/cli/web/commands/make/service.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/make/service.js +137 -0
- package/dist/platform/cli/web/commands/make/service.js.map +1 -0
- package/dist/platform/cli/web/commands/make/store.d.ts +16 -0
- package/dist/platform/cli/web/commands/make/store.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/make/store.js +72 -0
- package/dist/platform/cli/web/commands/make/store.js.map +1 -0
- package/dist/platform/cli/web/commands/web-sync.d.ts +10 -0
- package/dist/platform/cli/web/commands/web-sync.d.ts.map +1 -0
- package/dist/platform/cli/web/commands/web-sync.js +307 -0
- package/dist/platform/cli/web/commands/web-sync.js.map +1 -0
- package/dist/platform/cli/web/index.d.ts +3 -0
- package/dist/platform/cli/web/index.d.ts.map +1 -0
- package/dist/platform/cli/web/index.js +40 -0
- package/dist/platform/cli/web/index.js.map +1 -0
- package/dist/platform/cli/web/utils/config.d.ts +52 -0
- package/dist/platform/cli/web/utils/config.d.ts.map +1 -0
- package/dist/platform/cli/web/utils/config.js +89 -0
- package/dist/platform/cli/web/utils/config.js.map +1 -0
- package/dist/platform/cli/web/utils/format.d.ts +2 -0
- package/dist/platform/cli/web/utils/format.d.ts.map +1 -0
- package/dist/platform/cli/web/utils/format.js +28 -0
- package/dist/platform/cli/web/utils/format.js.map +1 -0
- package/dist/platform/cli/web/utils/header.d.ts +3 -0
- package/dist/platform/cli/web/utils/header.d.ts.map +1 -0
- package/dist/platform/cli/web/utils/header.js +11 -0
- package/dist/platform/cli/web/utils/header.js.map +1 -0
- package/dist/platform/cli/web/utils/logger.d.ts +10 -0
- package/dist/platform/cli/web/utils/logger.d.ts.map +1 -0
- package/dist/platform/cli/web/utils/logger.js +47 -0
- package/dist/platform/cli/web/utils/logger.js.map +1 -0
- package/dist/platform/cli/web/utils/names.d.ts +7 -0
- package/dist/platform/cli/web/utils/names.d.ts.map +1 -0
- package/dist/platform/cli/web/utils/names.js +43 -0
- package/dist/platform/cli/web/utils/names.js.map +1 -0
- package/dist/platform/cli/web/utils/resolve-paths.d.ts +10 -0
- package/dist/platform/cli/web/utils/resolve-paths.d.ts.map +1 -0
- package/dist/platform/cli/web/utils/resolve-paths.js +87 -0
- package/dist/platform/cli/web/utils/resolve-paths.js.map +1 -0
- package/dist/platform/cli/web/utils/write-file.d.ts +7 -0
- package/dist/platform/cli/web/utils/write-file.d.ts.map +1 -0
- package/dist/platform/cli/web/utils/write-file.js +31 -0
- package/dist/platform/cli/web/utils/write-file.js.map +1 -0
- package/dist/web/cli/commands/create/feature.d.ts +11 -0
- package/dist/web/cli/commands/create/feature.d.ts.map +1 -0
- package/dist/web/cli/commands/create/feature.js +43 -0
- package/dist/web/cli/commands/create/feature.js.map +1 -0
- package/dist/web/cli/commands/create/module.d.ts +11 -0
- package/dist/web/cli/commands/create/module.d.ts.map +1 -0
- package/dist/web/cli/commands/create/module.js +44 -0
- package/dist/web/cli/commands/create/module.js.map +1 -0
- package/dist/web/cli/commands/create/mvvm.d.ts +11 -0
- package/dist/web/cli/commands/create/mvvm.d.ts.map +1 -0
- package/dist/web/cli/commands/create/mvvm.js +43 -0
- package/dist/web/cli/commands/create/mvvm.js.map +1 -0
- package/dist/web/cli/commands/init-fullstack.d.ts +12 -0
- package/dist/web/cli/commands/init-fullstack.d.ts.map +1 -0
- package/dist/web/cli/commands/init-fullstack.js +42 -0
- package/dist/web/cli/commands/init-fullstack.js.map +1 -0
- package/dist/web/cli/commands/init-web.d.ts +12 -0
- package/dist/web/cli/commands/init-web.d.ts.map +1 -0
- package/dist/web/cli/commands/init-web.js +70 -0
- package/dist/web/cli/commands/init-web.js.map +1 -0
- package/dist/web/cli/commands/install-api.d.ts +10 -0
- package/dist/web/cli/commands/install-api.d.ts.map +1 -0
- package/dist/web/cli/commands/install-api.js +91 -0
- package/dist/web/cli/commands/install-api.js.map +1 -0
- package/dist/web/cli/commands/install-web.d.ts +12 -0
- package/dist/web/cli/commands/install-web.d.ts.map +1 -0
- package/dist/web/cli/commands/install-web.js +101 -0
- package/dist/web/cli/commands/install-web.js.map +1 -0
- package/dist/web/cli/commands/make/component.d.ts +13 -0
- package/dist/web/cli/commands/make/component.d.ts.map +1 -0
- package/dist/web/cli/commands/make/component.js +40 -0
- package/dist/web/cli/commands/make/component.js.map +1 -0
- package/dist/web/cli/commands/make/guard.d.ts +11 -0
- package/dist/web/cli/commands/make/guard.d.ts.map +1 -0
- package/dist/web/cli/commands/make/guard.js +37 -0
- package/dist/web/cli/commands/make/guard.js.map +1 -0
- package/dist/web/cli/commands/make/layout.d.ts +11 -0
- package/dist/web/cli/commands/make/layout.d.ts.map +1 -0
- package/dist/web/cli/commands/make/layout.js +37 -0
- package/dist/web/cli/commands/make/layout.js.map +1 -0
- package/dist/web/cli/commands/make/page.d.ts +14 -0
- package/dist/web/cli/commands/make/page.d.ts.map +1 -0
- package/dist/web/cli/commands/make/page.js +42 -0
- package/dist/web/cli/commands/make/page.js.map +1 -0
- package/dist/web/cli/commands/make/resource.d.ts +13 -0
- package/dist/web/cli/commands/make/resource.d.ts.map +1 -0
- package/dist/web/cli/commands/make/resource.js +33 -0
- package/dist/web/cli/commands/make/resource.js.map +1 -0
- package/dist/web/cli/commands/make/service.d.ts +14 -0
- package/dist/web/cli/commands/make/service.d.ts.map +1 -0
- package/dist/web/cli/commands/make/service.js +56 -0
- package/dist/web/cli/commands/make/service.js.map +1 -0
- package/dist/web/cli/commands/make/store.d.ts +14 -0
- package/dist/web/cli/commands/make/store.d.ts.map +1 -0
- package/dist/web/cli/commands/make/store.js +47 -0
- package/dist/web/cli/commands/make/store.js.map +1 -0
- package/dist/web/cli/commands/web-sync.d.ts +10 -0
- package/dist/web/cli/commands/web-sync.d.ts.map +1 -0
- package/dist/web/cli/commands/web-sync.js +48 -0
- package/dist/web/cli/commands/web-sync.js.map +1 -0
- package/dist/web/cli/index.d.mts +5 -0
- package/dist/web/cli/index.d.ts +5 -0
- package/dist/web/cli/index.d.ts.map +1 -0
- package/dist/web/cli/index.js +36 -0
- package/dist/web/cli/index.js.map +1 -0
- package/dist/web/cli/index.mjs +984 -0
- package/dist/web/cli/utils/config.d.ts +52 -0
- package/dist/web/cli/utils/config.d.ts.map +1 -0
- package/dist/web/cli/utils/config.js +89 -0
- package/dist/web/cli/utils/config.js.map +1 -0
- package/dist/web/cli/utils/format.d.ts +2 -0
- package/dist/web/cli/utils/format.d.ts.map +1 -0
- package/dist/web/cli/utils/format.js +28 -0
- package/dist/web/cli/utils/format.js.map +1 -0
- package/dist/web/cli/utils/logger.d.ts +10 -0
- package/dist/web/cli/utils/logger.d.ts.map +1 -0
- package/dist/web/cli/utils/logger.js +34 -0
- package/dist/web/cli/utils/logger.js.map +1 -0
- package/dist/web/cli/utils/names.d.ts +7 -0
- package/dist/web/cli/utils/names.d.ts.map +1 -0
- package/dist/web/cli/utils/names.js +43 -0
- package/dist/web/cli/utils/names.js.map +1 -0
- package/dist/web/cli/utils/resolve-paths.d.ts +10 -0
- package/dist/web/cli/utils/resolve-paths.d.ts.map +1 -0
- package/dist/web/cli/utils/resolve-paths.js +87 -0
- package/dist/web/cli/utils/resolve-paths.js.map +1 -0
- package/dist/web/cli/utils/write-file.d.ts +7 -0
- package/dist/web/cli/utils/write-file.d.ts.map +1 -0
- package/dist/web/cli/utils/write-file.js +31 -0
- package/dist/web/cli/utils/write-file.js.map +1 -0
- package/dist/web/platform/cli/web/index.d.mts +5 -0
- package/dist/web/platform/cli/web/index.d.ts +5 -0
- package/dist/web/platform/cli/web/index.js +2035 -0
- package/dist/web/platform/cli/web/index.mjs +1998 -0
- package/dist/web/src/adapters/jotai.d.ts +2 -0
- package/dist/web/src/adapters/jotai.d.ts.map +1 -0
- package/dist/web/src/adapters/jotai.js +7 -0
- package/dist/web/src/adapters/jotai.js.map +1 -0
- package/dist/web/src/adapters/mobx.d.ts +2 -0
- package/dist/web/src/adapters/mobx.d.ts.map +1 -0
- package/dist/web/src/adapters/mobx.js +7 -0
- package/dist/web/src/adapters/mobx.js.map +1 -0
- package/dist/web/src/adapters/redux.d.ts +2 -0
- package/dist/web/src/adapters/redux.d.ts.map +1 -0
- package/dist/web/src/adapters/redux.js +7 -0
- package/dist/web/src/adapters/redux.js.map +1 -0
- package/dist/web/src/adapters/zustand.d.ts +2 -0
- package/dist/web/src/adapters/zustand.d.ts.map +1 -0
- package/dist/web/src/adapters/zustand.js +7 -0
- package/dist/web/src/adapters/zustand.js.map +1 -0
- package/dist/web/src/config/web-config.d.ts +34 -0
- package/dist/web/src/config/web-config.d.ts.map +1 -0
- package/dist/web/src/config/web-config.js +73 -0
- package/dist/web/src/config/web-config.js.map +1 -0
- package/dist/web/src/core/application.d.ts +8 -0
- package/dist/web/src/core/application.d.ts.map +1 -0
- package/dist/web/src/core/application.js +45 -0
- package/dist/web/src/core/application.js.map +1 -0
- package/dist/web/src/core/decorators/component.d.ts +20 -0
- package/dist/web/src/core/decorators/component.d.ts.map +1 -0
- package/dist/web/src/core/decorators/component.js +83 -0
- package/dist/web/src/core/decorators/component.js.map +1 -0
- package/dist/web/src/core/decorators/page.d.ts +27 -0
- package/dist/web/src/core/decorators/page.d.ts.map +1 -0
- package/dist/web/src/core/decorators/page.js +58 -0
- package/dist/web/src/core/decorators/page.js.map +1 -0
- package/dist/web/src/core/di/container.d.ts +8 -0
- package/dist/web/src/core/di/container.d.ts.map +1 -0
- package/dist/web/src/core/di/container.js +26 -0
- package/dist/web/src/core/di/container.js.map +1 -0
- package/dist/web/src/core/runtime.d.ts +3 -0
- package/dist/web/src/core/runtime.d.ts.map +1 -0
- package/dist/web/src/core/runtime.js +15 -0
- package/dist/web/src/core/runtime.js.map +1 -0
- package/dist/web/src/http/fragment-fetch.d.ts +55 -0
- package/dist/web/src/http/fragment-fetch.d.ts.map +1 -0
- package/dist/web/src/http/fragment-fetch.js +290 -0
- package/dist/web/src/http/fragment-fetch.js.map +1 -0
- package/dist/web/src/index.d.mts +137 -0
- package/dist/web/src/index.d.ts +7 -0
- package/dist/web/src/index.d.ts.map +1 -0
- package/dist/web/src/index.js +31 -0
- package/dist/web/src/index.js.map +1 -0
- package/dist/web/src/index.mjs +643 -0
- package/dist/web/src/router/fragment-router.d.ts +14 -0
- package/dist/web/src/router/fragment-router.d.ts.map +1 -0
- package/dist/web/src/router/fragment-router.js +94 -0
- package/dist/web/src/router/fragment-router.js.map +1 -0
- package/dist/web/web/src/index.d.mts +137 -0
- package/dist/web/web/src/index.d.ts +137 -0
- package/dist/web/web/src/index.js +702 -0
- package/dist/web/web/src/index.mjs +644 -0
- package/package.json +15 -3
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.runWebSync = runWebSync;
|
|
7
|
+
exports.registerWebSync = registerWebSync;
|
|
8
|
+
const node_fs_1 = __importDefault(require("node:fs"));
|
|
9
|
+
const node_path_1 = __importDefault(require("node:path"));
|
|
10
|
+
const config_1 = require("../utils/config");
|
|
11
|
+
const header_1 = require("../utils/header");
|
|
12
|
+
const logger_1 = require("../utils/logger");
|
|
13
|
+
const write_file_1 = require("../utils/write-file");
|
|
14
|
+
function toTypeName(raw) {
|
|
15
|
+
return raw
|
|
16
|
+
.replace(/[^a-zA-Z0-9]+/g, " ")
|
|
17
|
+
.split(" ")
|
|
18
|
+
.filter(Boolean)
|
|
19
|
+
.map((part) => part.charAt(0).toUpperCase() + part.slice(1))
|
|
20
|
+
.join("");
|
|
21
|
+
}
|
|
22
|
+
function toIdentifier(raw) {
|
|
23
|
+
const cleaned = raw
|
|
24
|
+
.replace(/[^a-zA-Z0-9]+/g, " ")
|
|
25
|
+
.split(" ")
|
|
26
|
+
.filter(Boolean)
|
|
27
|
+
.map((part, idx) => idx === 0 ? part.charAt(0).toLowerCase() + part.slice(1) : part.charAt(0).toUpperCase() + part.slice(1))
|
|
28
|
+
.join("");
|
|
29
|
+
return cleaned || "value";
|
|
30
|
+
}
|
|
31
|
+
function toConstKey(value) {
|
|
32
|
+
return value
|
|
33
|
+
.replace(/[{}]/g, "")
|
|
34
|
+
.replace(/[^a-zA-Z0-9]+/g, "_")
|
|
35
|
+
.replace(/_+/g, "_")
|
|
36
|
+
.replace(/^_|_$/g, "")
|
|
37
|
+
.toUpperCase();
|
|
38
|
+
}
|
|
39
|
+
function toFileName(raw) {
|
|
40
|
+
const out = raw
|
|
41
|
+
.trim()
|
|
42
|
+
.replace(/([a-z\d])([A-Z])/g, "$1-$2")
|
|
43
|
+
.replace(/[^a-zA-Z0-9]+/g, "-")
|
|
44
|
+
.replace(/-{2,}/g, "-")
|
|
45
|
+
.replace(/^-+|-+$/g, "")
|
|
46
|
+
.toLowerCase();
|
|
47
|
+
return out || "default";
|
|
48
|
+
}
|
|
49
|
+
function resolveRefName(ref) {
|
|
50
|
+
const parts = ref.split("/");
|
|
51
|
+
return parts[parts.length - 1] || "UnknownRef";
|
|
52
|
+
}
|
|
53
|
+
function schemaToTs(schema) {
|
|
54
|
+
if (!schema)
|
|
55
|
+
return "unknown";
|
|
56
|
+
if (schema.$ref) {
|
|
57
|
+
return toTypeName(resolveRefName(schema.$ref));
|
|
58
|
+
}
|
|
59
|
+
if (schema.oneOf?.length) {
|
|
60
|
+
return schema.oneOf.map((s) => schemaToTs(s)).join(" | ");
|
|
61
|
+
}
|
|
62
|
+
if (schema.anyOf?.length) {
|
|
63
|
+
return schema.anyOf.map((s) => schemaToTs(s)).join(" | ");
|
|
64
|
+
}
|
|
65
|
+
if (schema.allOf?.length) {
|
|
66
|
+
return schema.allOf.map((s) => schemaToTs(s)).join(" & ");
|
|
67
|
+
}
|
|
68
|
+
if (schema.enum?.length) {
|
|
69
|
+
return schema.enum.map((v) => JSON.stringify(v)).join(" | ");
|
|
70
|
+
}
|
|
71
|
+
switch (schema.type) {
|
|
72
|
+
case "integer":
|
|
73
|
+
case "number":
|
|
74
|
+
return "number";
|
|
75
|
+
case "boolean":
|
|
76
|
+
return "boolean";
|
|
77
|
+
case "array":
|
|
78
|
+
return `${schemaToTs(schema.items)}[]`;
|
|
79
|
+
case "object": {
|
|
80
|
+
const properties = schema.properties || {};
|
|
81
|
+
const required = new Set(schema.required || []);
|
|
82
|
+
const fields = Object.entries(properties).map(([key, prop]) => `${key}${required.has(key) ? "" : "?"}: ${schemaToTs(prop)};`);
|
|
83
|
+
if (schema.additionalProperties && typeof schema.additionalProperties === "object") {
|
|
84
|
+
fields.push(`[key: string]: ${schemaToTs(schema.additionalProperties)};`);
|
|
85
|
+
}
|
|
86
|
+
if (fields.length === 0) {
|
|
87
|
+
return "Record<string, unknown>";
|
|
88
|
+
}
|
|
89
|
+
return `{ ${fields.join(" ")} }`;
|
|
90
|
+
}
|
|
91
|
+
case "string":
|
|
92
|
+
default:
|
|
93
|
+
return "string";
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
function buildDtos(doc, source) {
|
|
97
|
+
const schemas = doc.components?.schemas || {};
|
|
98
|
+
const blocks = Object.entries(schemas).map(([rawName, schema]) => {
|
|
99
|
+
const name = toTypeName(rawName);
|
|
100
|
+
if (schema.type === "object" || schema.properties || schema.allOf?.length) {
|
|
101
|
+
const properties = schema.properties || {};
|
|
102
|
+
const required = new Set(schema.required || []);
|
|
103
|
+
const fields = Object.entries(properties)
|
|
104
|
+
.map(([key, prop]) => ` ${key}${required.has(key) ? "" : "?"}: ${schemaToTs(prop)};`)
|
|
105
|
+
.join("\n");
|
|
106
|
+
if (fields) {
|
|
107
|
+
return `export interface ${name} {\n${fields}\n}`;
|
|
108
|
+
}
|
|
109
|
+
return `export type ${name} = ${schemaToTs(schema)};`;
|
|
110
|
+
}
|
|
111
|
+
return `export type ${name} = ${schemaToTs(schema)};`;
|
|
112
|
+
});
|
|
113
|
+
return `${(0, header_1.autoGeneratedSyncHeader)(source)}\n\n${blocks.join("\n\n")}\n`;
|
|
114
|
+
}
|
|
115
|
+
function getPreferredSchema(response) {
|
|
116
|
+
if (!response?.content)
|
|
117
|
+
return undefined;
|
|
118
|
+
const appJson = response.content["application/json"]?.schema;
|
|
119
|
+
if (appJson)
|
|
120
|
+
return appJson;
|
|
121
|
+
const first = Object.values(response.content)[0];
|
|
122
|
+
return first?.schema;
|
|
123
|
+
}
|
|
124
|
+
function getSuccessResponseTypes(operation) {
|
|
125
|
+
const responses = operation.responses || {};
|
|
126
|
+
const types = [];
|
|
127
|
+
Object.entries(responses).forEach(([code, response]) => {
|
|
128
|
+
if (!/^2\d\d$/.test(code))
|
|
129
|
+
return;
|
|
130
|
+
const schema = getPreferredSchema(response);
|
|
131
|
+
types.push(schemaToTs(schema));
|
|
132
|
+
});
|
|
133
|
+
const unique = Array.from(new Set(types.filter(Boolean)));
|
|
134
|
+
return unique.length ? unique : ["unknown"];
|
|
135
|
+
}
|
|
136
|
+
function getRequestBodySchema(operation) {
|
|
137
|
+
const content = operation.requestBody?.content;
|
|
138
|
+
if (!content)
|
|
139
|
+
return undefined;
|
|
140
|
+
const appJson = content["application/json"]?.schema;
|
|
141
|
+
if (appJson)
|
|
142
|
+
return appJson;
|
|
143
|
+
const first = Object.values(content)[0];
|
|
144
|
+
return first?.schema;
|
|
145
|
+
}
|
|
146
|
+
function toFunctionName(route, method, operationId) {
|
|
147
|
+
if (operationId)
|
|
148
|
+
return toIdentifier(operationId);
|
|
149
|
+
const routePart = route
|
|
150
|
+
.replace(/[{}]/g, "")
|
|
151
|
+
.split("/")
|
|
152
|
+
.filter(Boolean)
|
|
153
|
+
.map((part) => toTypeName(part))
|
|
154
|
+
.join("");
|
|
155
|
+
return toIdentifier(`${method}${routePart || "Root"}`);
|
|
156
|
+
}
|
|
157
|
+
function buildPathTemplate(route) {
|
|
158
|
+
return "`" + route.replace(/\{([^}]+)\}/g, (_, token) => `\${${toIdentifier(token)}}`) + "`";
|
|
159
|
+
}
|
|
160
|
+
function buildServiceFunction(descriptor) {
|
|
161
|
+
const { method, route, operation } = descriptor;
|
|
162
|
+
const fn = toFunctionName(route, method, operation.operationId);
|
|
163
|
+
const responseTypeName = `${toTypeName(fn)}Response`;
|
|
164
|
+
const responseUnion = getSuccessResponseTypes(operation).join(" | ");
|
|
165
|
+
const requestType = schemaToTs(getRequestBodySchema(operation));
|
|
166
|
+
const allParams = operation.parameters || [];
|
|
167
|
+
const pathParams = allParams.filter((p) => p.in === "path");
|
|
168
|
+
const queryParams = allParams.filter((p) => p.in === "query");
|
|
169
|
+
const args = [];
|
|
170
|
+
pathParams.forEach((param) => {
|
|
171
|
+
args.push(`${toIdentifier(param.name)}: ${schemaToTs(param.schema)}`);
|
|
172
|
+
});
|
|
173
|
+
if (requestType !== "unknown" && ["post", "put", "patch"].includes(method)) {
|
|
174
|
+
args.push(`payload${operation.requestBody?.required ? "" : "?"}: ${requestType}`);
|
|
175
|
+
}
|
|
176
|
+
if (queryParams.length) {
|
|
177
|
+
const queryType = `{ ${queryParams
|
|
178
|
+
.map((p) => `${toIdentifier(p.name)}${p.required ? "" : "?"}: ${schemaToTs(p.schema)};`)
|
|
179
|
+
.join(" ")} }`;
|
|
180
|
+
args.push(`query?: ${queryType}`);
|
|
181
|
+
}
|
|
182
|
+
const pathExpr = buildPathTemplate(route);
|
|
183
|
+
if (method === "get") {
|
|
184
|
+
return `export type ${responseTypeName} = ${responseUnion};\n\nexport async function ${fn}(${args.join(", ")}): Promise<${responseTypeName}> {\n return FragmentFetch.get<${responseTypeName}>(${pathExpr}${queryParams.length ? ", { params: query }" : ""});\n}`;
|
|
185
|
+
}
|
|
186
|
+
if (method === "delete") {
|
|
187
|
+
return `export type ${responseTypeName} = ${responseUnion};\n\nexport async function ${fn}(${args.join(", ")}): Promise<${responseTypeName}> {\n return FragmentFetch.delete<${responseTypeName}>(${pathExpr}${queryParams.length ? ", { params: query }" : ""});\n}`;
|
|
188
|
+
}
|
|
189
|
+
const methodCall = method === "post" ? "post" : method === "put" ? "put" : "patch";
|
|
190
|
+
const bodyArg = requestType !== "unknown" ? "payload" : "undefined";
|
|
191
|
+
return `export type ${responseTypeName} = ${responseUnion};\n\nexport async function ${fn}(${args.join(", ")}): Promise<${responseTypeName}> {\n return FragmentFetch.${methodCall}<${responseTypeName}>(${pathExpr}, ${bodyArg}${queryParams.length ? ", { params: query }" : ""});\n}`;
|
|
192
|
+
}
|
|
193
|
+
function groupOperationsByTag(doc) {
|
|
194
|
+
const byTag = {};
|
|
195
|
+
Object.entries(doc.paths || {}).forEach(([route, methods]) => {
|
|
196
|
+
["get", "post", "put", "patch", "delete"].forEach((method) => {
|
|
197
|
+
const operation = methods?.[method];
|
|
198
|
+
if (!operation)
|
|
199
|
+
return;
|
|
200
|
+
const tags = operation.tags?.length ? operation.tags : ["default"];
|
|
201
|
+
tags.forEach((tag) => {
|
|
202
|
+
byTag[tag] = byTag[tag] || [];
|
|
203
|
+
byTag[tag].push({ route, method, operation });
|
|
204
|
+
});
|
|
205
|
+
});
|
|
206
|
+
});
|
|
207
|
+
return byTag;
|
|
208
|
+
}
|
|
209
|
+
function buildTagServiceFile(tag, operations, source) {
|
|
210
|
+
const fns = operations.map((op) => buildServiceFunction(op));
|
|
211
|
+
return `${(0, header_1.autoGeneratedSyncHeader)(source)}\n\nimport { FragmentFetch } from 'fragment-web';\n\n${fns.join("\n\n")}\n`;
|
|
212
|
+
}
|
|
213
|
+
function buildRootServiceBarrel(tags, source) {
|
|
214
|
+
const exports = tags
|
|
215
|
+
.map((tag) => `export * from './services/${toFileName(tag)}.service';`)
|
|
216
|
+
.join("\n");
|
|
217
|
+
return `${(0, header_1.autoGeneratedSyncHeader)(source)}\n\n${exports}\n`;
|
|
218
|
+
}
|
|
219
|
+
function buildServicesIndex(tags, source) {
|
|
220
|
+
const exports = tags.map((tag) => `export * from './${toFileName(tag)}.service';`).join("\n");
|
|
221
|
+
return `${(0, header_1.autoGeneratedSyncHeader)(source)}\n\n${exports}\n`;
|
|
222
|
+
}
|
|
223
|
+
function buildRoutes(doc, source) {
|
|
224
|
+
const lines = Object.keys(doc.paths || {}).map((route) => ` ${toConstKey(route)}: '${route}',`);
|
|
225
|
+
return `${(0, header_1.autoGeneratedSyncHeader)(source)}\n\nexport const ApiRoutes = {\n${lines.join("\n")}\n} as const;\n`;
|
|
226
|
+
}
|
|
227
|
+
async function fetchOpenApi(source) {
|
|
228
|
+
const response = await fetch(source);
|
|
229
|
+
if (!response.ok) {
|
|
230
|
+
throw new Error(`Could not connect to ${source}`);
|
|
231
|
+
}
|
|
232
|
+
return (await response.json());
|
|
233
|
+
}
|
|
234
|
+
async function syncOnce(options) {
|
|
235
|
+
const config = (0, config_1.ensureWebConfig)();
|
|
236
|
+
const base = (options.url || config.fetch.baseUrl).replace(/\/$/, "");
|
|
237
|
+
const source = `${base}${config.serverRoot}/docs/api-json`;
|
|
238
|
+
const generatedDir = node_path_1.default.join(process.cwd(), "src/generated");
|
|
239
|
+
const servicesDir = node_path_1.default.join(generatedDir, "services");
|
|
240
|
+
const doc = await fetchOpenApi(source);
|
|
241
|
+
(0, write_file_1.writeFileIfAllowed)(node_path_1.default.join(generatedDir, "routes.ts"), buildRoutes(doc, source), {
|
|
242
|
+
dryRun: options.dryRun,
|
|
243
|
+
force: true,
|
|
244
|
+
});
|
|
245
|
+
(0, write_file_1.writeFileIfAllowed)(node_path_1.default.join(generatedDir, "dtos.ts"), buildDtos(doc, source), {
|
|
246
|
+
dryRun: options.dryRun,
|
|
247
|
+
force: true,
|
|
248
|
+
});
|
|
249
|
+
const grouped = groupOperationsByTag(doc);
|
|
250
|
+
const tags = Object.keys(grouped).sort();
|
|
251
|
+
const expectedServiceFiles = new Set(tags.map((tag) => `${toFileName(tag)}.service.ts`));
|
|
252
|
+
if (node_fs_1.default.existsSync(servicesDir)) {
|
|
253
|
+
const existing = node_fs_1.default.readdirSync(servicesDir);
|
|
254
|
+
existing
|
|
255
|
+
.filter((file) => file.endsWith(".service.ts"))
|
|
256
|
+
.filter((file) => !expectedServiceFiles.has(file))
|
|
257
|
+
.forEach((staleFile) => {
|
|
258
|
+
const stalePath = node_path_1.default.join(servicesDir, staleFile);
|
|
259
|
+
if (options.dryRun) {
|
|
260
|
+
logger_1.logger.dryRun(stalePath);
|
|
261
|
+
return;
|
|
262
|
+
}
|
|
263
|
+
node_fs_1.default.unlinkSync(stalePath);
|
|
264
|
+
logger_1.logger.updated(stalePath, "removed stale generated file");
|
|
265
|
+
});
|
|
266
|
+
}
|
|
267
|
+
tags.forEach((tag) => {
|
|
268
|
+
(0, write_file_1.writeFileIfAllowed)(node_path_1.default.join(servicesDir, `${toFileName(tag)}.service.ts`), buildTagServiceFile(tag, grouped[tag], source), {
|
|
269
|
+
dryRun: options.dryRun,
|
|
270
|
+
force: true,
|
|
271
|
+
});
|
|
272
|
+
});
|
|
273
|
+
(0, write_file_1.writeFileIfAllowed)(node_path_1.default.join(servicesDir, "index.ts"), buildServicesIndex(tags, source), {
|
|
274
|
+
dryRun: options.dryRun,
|
|
275
|
+
force: true,
|
|
276
|
+
});
|
|
277
|
+
(0, write_file_1.writeFileIfAllowed)(node_path_1.default.join(generatedDir, "services.ts"), buildRootServiceBarrel(tags, source), {
|
|
278
|
+
dryRun: options.dryRun,
|
|
279
|
+
force: true,
|
|
280
|
+
});
|
|
281
|
+
}
|
|
282
|
+
async function runWebSync(options = {}) {
|
|
283
|
+
await syncOnce(options);
|
|
284
|
+
if (options.watch) {
|
|
285
|
+
logger_1.logger.section("fragment-web", "web:sync --watch");
|
|
286
|
+
setInterval(() => {
|
|
287
|
+
syncOnce(options).catch((error) => {
|
|
288
|
+
logger_1.logger.error(error instanceof Error ? error.message : "web:sync watch failed");
|
|
289
|
+
});
|
|
290
|
+
}, 5000);
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
function registerWebSync(program) {
|
|
294
|
+
program
|
|
295
|
+
.command("web:sync")
|
|
296
|
+
.description("Generate typed web API artifacts into src/generated")
|
|
297
|
+
.option("--url <url>", "Backend base URL")
|
|
298
|
+
.option("--watch", "Watch and resync")
|
|
299
|
+
.option("--dry-run", "Preview changes")
|
|
300
|
+
.action((opts) => {
|
|
301
|
+
runWebSync(opts).catch((error) => {
|
|
302
|
+
logger_1.logger.error(error instanceof Error ? error.message : "web:sync failed");
|
|
303
|
+
process.exitCode = 1;
|
|
304
|
+
});
|
|
305
|
+
});
|
|
306
|
+
}
|
|
307
|
+
//# sourceMappingURL=web-sync.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"web-sync.js","sourceRoot":"","sources":["../../../../../src/platform/cli/web/commands/web-sync.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/platform/cli/web/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAsBzC,wBAAgB,mBAAmB,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI,CAiB3D"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.registerWebCommands = registerWebCommands;
|
|
4
|
+
const web_sync_1 = require("./commands/web-sync");
|
|
5
|
+
const component_1 = require("./commands/make/component");
|
|
6
|
+
const page_1 = require("./commands/make/page");
|
|
7
|
+
const service_1 = require("./commands/make/service");
|
|
8
|
+
const guard_1 = require("./commands/make/guard");
|
|
9
|
+
const layout_1 = require("./commands/make/layout");
|
|
10
|
+
const store_1 = require("./commands/make/store");
|
|
11
|
+
const resource_1 = require("./commands/make/resource");
|
|
12
|
+
const module_1 = require("./commands/create/module");
|
|
13
|
+
const feature_1 = require("./commands/create/feature");
|
|
14
|
+
const mvvm_1 = require("./commands/create/mvvm");
|
|
15
|
+
function removeCommandIfExists(registry, name) {
|
|
16
|
+
const commands = registry.commands;
|
|
17
|
+
if (!commands)
|
|
18
|
+
return;
|
|
19
|
+
const idx = commands.findIndex((cmd) => cmd.name() === name);
|
|
20
|
+
if (idx >= 0) {
|
|
21
|
+
commands.splice(idx, 1);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
function registerWebCommands(registry) {
|
|
25
|
+
removeCommandIfExists(registry, "make:service");
|
|
26
|
+
removeCommandIfExists(registry, "make:guard");
|
|
27
|
+
removeCommandIfExists(registry, "make:resource");
|
|
28
|
+
(0, web_sync_1.registerWebSync)(registry);
|
|
29
|
+
(0, component_1.registerMakeComponent)(registry);
|
|
30
|
+
(0, page_1.registerMakePage)(registry);
|
|
31
|
+
(0, service_1.registerMakeService)(registry);
|
|
32
|
+
(0, guard_1.registerMakeGuard)(registry);
|
|
33
|
+
(0, layout_1.registerMakeLayout)(registry);
|
|
34
|
+
(0, store_1.registerMakeStore)(registry);
|
|
35
|
+
(0, resource_1.registerMakeResource)(registry);
|
|
36
|
+
(0, module_1.registerCreateModule)(registry);
|
|
37
|
+
(0, feature_1.registerCreateFeature)(registry);
|
|
38
|
+
(0, mvvm_1.registerCreateMvvm)(registry);
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/platform/cli/web/index.ts"],"names":[],"mappings":";;AAsBA,kDAiBC;AAtCD,kDAAsD;AACtD,yDAAkE;AAClE,+CAAwD;AACxD,qDAA8D;AAC9D,iDAA0D;AAC1D,mDAA4D;AAC5D,iDAA0D;AAC1D,uDAAgE;AAChE,qDAAgE;AAChE,uDAAkE;AAClE,iDAA4D;AAE5D,SAAS,qBAAqB,CAAC,QAAiB,EAAE,IAAY;IAC5D,MAAM,QAAQ,GAAI,QAAoE,CAAC,QAAQ,CAAC;IAChG,IAAI,CAAC,QAAQ;QAAE,OAAO;IACtB,MAAM,GAAG,GAAG,QAAQ,CAAC,SAAS,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,IAAI,CAAC,CAAC;IAC7D,IAAI,GAAG,IAAI,CAAC,EAAE,CAAC;QACb,QAAQ,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;IAC1B,CAAC;AACH,CAAC;AAED,SAAgB,mBAAmB,CAAC,QAAiB;IACnD,qBAAqB,CAAC,QAAQ,EAAE,cAAc,CAAC,CAAC;IAChD,qBAAqB,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC;IAC9C,qBAAqB,CAAC,QAAQ,EAAE,eAAe,CAAC,CAAC;IACjD,IAAA,0BAAe,EAAC,QAAQ,CAAC,CAAC;IAE1B,IAAA,iCAAqB,EAAC,QAAQ,CAAC,CAAC;IAChC,IAAA,uBAAgB,EAAC,QAAQ,CAAC,CAAC;IAC3B,IAAA,6BAAmB,EAAC,QAAQ,CAAC,CAAC;IAC9B,IAAA,yBAAiB,EAAC,QAAQ,CAAC,CAAC;IAC5B,IAAA,2BAAkB,EAAC,QAAQ,CAAC,CAAC;IAC7B,IAAA,yBAAiB,EAAC,QAAQ,CAAC,CAAC;IAC5B,IAAA,+BAAoB,EAAC,QAAQ,CAAC,CAAC;IAE/B,IAAA,6BAAoB,EAAC,QAAQ,CAAC,CAAC;IAC/B,IAAA,+BAAqB,EAAC,QAAQ,CAAC,CAAC;IAChC,IAAA,yBAAkB,EAAC,QAAQ,CAAC,CAAC;AAC/B,CAAC"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export type StructureMode = "layered" | "module" | "feature" | "mvvm";
|
|
2
|
+
export type StoreAdapter = "zustand" | "jotai" | "redux" | "mobx";
|
|
3
|
+
export interface FragmentWebConfig {
|
|
4
|
+
webRoot: string;
|
|
5
|
+
serverRoot: string;
|
|
6
|
+
publicRoutes: string[];
|
|
7
|
+
authenticatedRoutes: string[];
|
|
8
|
+
app: {
|
|
9
|
+
name: string;
|
|
10
|
+
rootElement: string;
|
|
11
|
+
strict: boolean;
|
|
12
|
+
router: "react-router";
|
|
13
|
+
stateAdapter: StoreAdapter;
|
|
14
|
+
};
|
|
15
|
+
fetch: {
|
|
16
|
+
baseUrl: string;
|
|
17
|
+
timeout: number;
|
|
18
|
+
retries: number;
|
|
19
|
+
retryDelay: number;
|
|
20
|
+
tokenTransport: "cookie" | "localStorage" | "memory";
|
|
21
|
+
tokenKey: string;
|
|
22
|
+
onUnauthorized: string;
|
|
23
|
+
onForbidden: string;
|
|
24
|
+
};
|
|
25
|
+
structure: StructureMode;
|
|
26
|
+
di: {
|
|
27
|
+
autoScan: boolean;
|
|
28
|
+
scanPaths: string[];
|
|
29
|
+
};
|
|
30
|
+
theme?: {
|
|
31
|
+
mode: "light" | "dark" | "system";
|
|
32
|
+
primaryColor: string;
|
|
33
|
+
fontFamily: string;
|
|
34
|
+
};
|
|
35
|
+
devtools?: {
|
|
36
|
+
enabled: boolean;
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
export interface FragmentApiConfig {
|
|
40
|
+
serverRoot?: string;
|
|
41
|
+
[key: string]: unknown;
|
|
42
|
+
}
|
|
43
|
+
export declare function resolveCwd(cwd?: string): string;
|
|
44
|
+
export declare function webConfigPath(cwd?: string): string;
|
|
45
|
+
export declare function apiConfigPath(cwd?: string): string;
|
|
46
|
+
export declare function createDefaultWebConfig(partial?: Partial<FragmentWebConfig>): FragmentWebConfig;
|
|
47
|
+
export declare function readJsonFile<T>(filePath: string): T | null;
|
|
48
|
+
export declare function writeJsonFile(filePath: string, payload: unknown): void;
|
|
49
|
+
export declare function readWebConfig(cwd?: string): FragmentWebConfig | null;
|
|
50
|
+
export declare function readApiConfig(cwd?: string): FragmentApiConfig | null;
|
|
51
|
+
export declare function ensureWebConfig(cwd?: string): FragmentWebConfig;
|
|
52
|
+
//# sourceMappingURL=config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../src/platform/cli/web/utils/config.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM,CAAC;AACtE,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,OAAO,GAAG,OAAO,GAAG,MAAM,CAAC;AAElE,MAAM,WAAW,iBAAiB;IAChC,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,mBAAmB,EAAE,MAAM,EAAE,CAAC;IAC9B,GAAG,EAAE;QACH,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,EAAE,MAAM,CAAC;QACpB,MAAM,EAAE,OAAO,CAAC;QAChB,MAAM,EAAE,cAAc,CAAC;QACvB,YAAY,EAAE,YAAY,CAAC;KAC5B,CAAC;IACF,KAAK,EAAE;QACL,OAAO,EAAE,MAAM,CAAC;QAChB,OAAO,EAAE,MAAM,CAAC;QAChB,OAAO,EAAE,MAAM,CAAC;QAChB,UAAU,EAAE,MAAM,CAAC;QACnB,cAAc,EAAE,QAAQ,GAAG,cAAc,GAAG,QAAQ,CAAC;QACrD,QAAQ,EAAE,MAAM,CAAC;QACjB,cAAc,EAAE,MAAM,CAAC;QACvB,WAAW,EAAE,MAAM,CAAC;KACrB,CAAC;IACF,SAAS,EAAE,aAAa,CAAC;IACzB,EAAE,EAAE;QACF,QAAQ,EAAE,OAAO,CAAC;QAClB,SAAS,EAAE,MAAM,EAAE,CAAC;KACrB,CAAC;IACF,KAAK,CAAC,EAAE;QACN,IAAI,EAAE,OAAO,GAAG,MAAM,GAAG,QAAQ,CAAC;QAClC,YAAY,EAAE,MAAM,CAAC;QACrB,UAAU,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,QAAQ,CAAC,EAAE;QACT,OAAO,EAAE,OAAO,CAAC;KAClB,CAAC;CACH;AAED,MAAM,WAAW,iBAAiB;IAChC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAKD,wBAAgB,UAAU,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAE/C;AAED,wBAAgB,aAAa,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAElD;AAED,wBAAgB,aAAa,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAElD;AAED,wBAAgB,sBAAsB,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,iBAAiB,CAqC9F;AAED,wBAAgB,YAAY,CAAC,CAAC,EAAE,QAAQ,EAAE,MAAM,GAAG,CAAC,GAAG,IAAI,CAM1D;AAED,wBAAgB,aAAa,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,IAAI,CAEtE;AAED,wBAAgB,aAAa,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,iBAAiB,GAAG,IAAI,CAEpE;AAED,wBAAgB,aAAa,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,iBAAiB,GAAG,IAAI,CAEpE;AAED,wBAAgB,eAAe,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,iBAAiB,CAM/D"}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.resolveCwd = resolveCwd;
|
|
7
|
+
exports.webConfigPath = webConfigPath;
|
|
8
|
+
exports.apiConfigPath = apiConfigPath;
|
|
9
|
+
exports.createDefaultWebConfig = createDefaultWebConfig;
|
|
10
|
+
exports.readJsonFile = readJsonFile;
|
|
11
|
+
exports.writeJsonFile = writeJsonFile;
|
|
12
|
+
exports.readWebConfig = readWebConfig;
|
|
13
|
+
exports.readApiConfig = readApiConfig;
|
|
14
|
+
exports.ensureWebConfig = ensureWebConfig;
|
|
15
|
+
const node_fs_1 = __importDefault(require("node:fs"));
|
|
16
|
+
const node_path_1 = __importDefault(require("node:path"));
|
|
17
|
+
const WEB_CONFIG_FILE = "fragment.web.json";
|
|
18
|
+
const API_CONFIG_FILE = "fragment.json";
|
|
19
|
+
function resolveCwd(cwd) {
|
|
20
|
+
return cwd ? node_path_1.default.resolve(cwd) : process.cwd();
|
|
21
|
+
}
|
|
22
|
+
function webConfigPath(cwd) {
|
|
23
|
+
return node_path_1.default.join(resolveCwd(cwd), WEB_CONFIG_FILE);
|
|
24
|
+
}
|
|
25
|
+
function apiConfigPath(cwd) {
|
|
26
|
+
return node_path_1.default.join(resolveCwd(cwd), API_CONFIG_FILE);
|
|
27
|
+
}
|
|
28
|
+
function createDefaultWebConfig(partial) {
|
|
29
|
+
return {
|
|
30
|
+
webRoot: "/",
|
|
31
|
+
serverRoot: partial?.serverRoot ?? "/api",
|
|
32
|
+
publicRoutes: ["/", "/login", "/register"],
|
|
33
|
+
authenticatedRoutes: ["/dashboard", "/profile", "/settings"],
|
|
34
|
+
app: {
|
|
35
|
+
name: partial?.app?.name ?? "My App",
|
|
36
|
+
rootElement: "#root",
|
|
37
|
+
strict: true,
|
|
38
|
+
router: "react-router",
|
|
39
|
+
stateAdapter: partial?.app?.stateAdapter ?? "zustand",
|
|
40
|
+
},
|
|
41
|
+
fetch: {
|
|
42
|
+
baseUrl: partial?.fetch?.baseUrl ?? "${VITE_API_URL:http://localhost:3000}",
|
|
43
|
+
timeout: 10000,
|
|
44
|
+
retries: 2,
|
|
45
|
+
retryDelay: 300,
|
|
46
|
+
tokenTransport: "cookie",
|
|
47
|
+
tokenKey: "fragment_token",
|
|
48
|
+
onUnauthorized: "redirect:/login",
|
|
49
|
+
onForbidden: "redirect:/403",
|
|
50
|
+
},
|
|
51
|
+
structure: partial?.structure ?? "layered",
|
|
52
|
+
di: {
|
|
53
|
+
autoScan: true,
|
|
54
|
+
scanPaths: ["src/components", "src/pages", "src/services"],
|
|
55
|
+
},
|
|
56
|
+
theme: {
|
|
57
|
+
mode: "system",
|
|
58
|
+
primaryColor: "#6366f1",
|
|
59
|
+
fontFamily: "Geist, system-ui",
|
|
60
|
+
},
|
|
61
|
+
devtools: {
|
|
62
|
+
enabled: true,
|
|
63
|
+
},
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
function readJsonFile(filePath) {
|
|
67
|
+
if (!node_fs_1.default.existsSync(filePath)) {
|
|
68
|
+
return null;
|
|
69
|
+
}
|
|
70
|
+
const raw = node_fs_1.default.readFileSync(filePath, "utf8");
|
|
71
|
+
return JSON.parse(raw);
|
|
72
|
+
}
|
|
73
|
+
function writeJsonFile(filePath, payload) {
|
|
74
|
+
node_fs_1.default.writeFileSync(filePath, `${JSON.stringify(payload, null, 2)}\n`, "utf8");
|
|
75
|
+
}
|
|
76
|
+
function readWebConfig(cwd) {
|
|
77
|
+
return readJsonFile(webConfigPath(cwd));
|
|
78
|
+
}
|
|
79
|
+
function readApiConfig(cwd) {
|
|
80
|
+
return readJsonFile(apiConfigPath(cwd));
|
|
81
|
+
}
|
|
82
|
+
function ensureWebConfig(cwd) {
|
|
83
|
+
const config = readWebConfig(cwd);
|
|
84
|
+
if (!config) {
|
|
85
|
+
throw new Error("fragment.web.json was not found in the current project");
|
|
86
|
+
}
|
|
87
|
+
return config;
|
|
88
|
+
}
|
|
89
|
+
//# sourceMappingURL=config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../../../src/platform/cli/web/utils/config.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"format.d.ts","sourceRoot":"","sources":["../../../../../src/platform/cli/web/utils/format.ts"],"names":[],"mappings":"AASA,wBAAsB,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAcpF"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.formatSource = formatSource;
|
|
7
|
+
const prettier_1 = __importDefault(require("prettier"));
|
|
8
|
+
const parserByExt = {
|
|
9
|
+
".ts": "typescript",
|
|
10
|
+
".tsx": "typescript",
|
|
11
|
+
".json": "json",
|
|
12
|
+
".js": "babel",
|
|
13
|
+
};
|
|
14
|
+
async function formatSource(filePath, source) {
|
|
15
|
+
const ext = filePath.slice(filePath.lastIndexOf("."));
|
|
16
|
+
const parser = parserByExt[ext];
|
|
17
|
+
if (!parser) {
|
|
18
|
+
return source;
|
|
19
|
+
}
|
|
20
|
+
return prettier_1.default.format(source, {
|
|
21
|
+
parser,
|
|
22
|
+
singleQuote: false,
|
|
23
|
+
semi: true,
|
|
24
|
+
trailingComma: "all",
|
|
25
|
+
printWidth: 100,
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=format.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"format.js","sourceRoot":"","sources":["../../../../../src/platform/cli/web/utils/format.ts"],"names":[],"mappings":";;;;;AASA,oCAcC;AAvBD,wDAAgC;AAEhC,MAAM,WAAW,GAA+C;IAC9D,KAAK,EAAE,YAAY;IACnB,MAAM,EAAE,YAAY;IACpB,OAAO,EAAE,MAAM;IACf,KAAK,EAAE,OAAO;CACf,CAAC;AAEK,KAAK,UAAU,YAAY,CAAC,QAAgB,EAAE,MAAc;IACjE,MAAM,GAAG,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC;IACtD,MAAM,MAAM,GAAG,WAAW,CAAC,GAAG,CAAC,CAAC;IAChC,IAAI,CAAC,MAAM,EAAE,CAAC;QACZ,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,OAAO,kBAAQ,CAAC,MAAM,CAAC,MAAM,EAAE;QAC7B,MAAM;QACN,WAAW,EAAE,KAAK;QAClB,IAAI,EAAE,IAAI;QACV,aAAa,EAAE,KAAK;QACpB,UAAU,EAAE,GAAG;KAChB,CAAC,CAAC;AACL,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"header.d.ts","sourceRoot":"","sources":["../../../../../src/platform/cli/web/utils/header.ts"],"names":[],"mappings":"AAAA,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,SAAU,GAAG,MAAM,CAE9E;AAED,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAE9D"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.generatedFileHeader = generatedFileHeader;
|
|
4
|
+
exports.autoGeneratedSyncHeader = autoGeneratedSyncHeader;
|
|
5
|
+
function generatedFileHeader(command, version = "0.1.0") {
|
|
6
|
+
return `// Generated by: ${command}\n// Generated at: ${new Date().toISOString()}\n// fragment-web v${version}`;
|
|
7
|
+
}
|
|
8
|
+
function autoGeneratedSyncHeader(source) {
|
|
9
|
+
return `// ⚠️ AUTO-GENERATED by frg web:sync — do not edit manually\n// Source: ${source}\n// Synced at: ${new Date().toISOString()}`;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=header.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"header.js","sourceRoot":"","sources":["../../../../../src/platform/cli/web/utils/header.ts"],"names":[],"mappings":";;AAAA,kDAEC;AAED,0DAEC;AAND,SAAgB,mBAAmB,CAAC,OAAe,EAAE,OAAO,GAAG,OAAO;IACpE,OAAO,oBAAoB,OAAO,sBAAsB,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE,sBAAsB,OAAO,EAAE,CAAC;AAClH,CAAC;AAED,SAAgB,uBAAuB,CAAC,MAAc;IACpD,OAAO,4EAA4E,MAAM,mBAAmB,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE,EAAE,CAAC;AACzI,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const logger: {
|
|
2
|
+
section(title: string, subtitle?: string): void;
|
|
3
|
+
created(path: string): void;
|
|
4
|
+
updated(path: string, detail?: string): void;
|
|
5
|
+
exists(path: string, detail?: string): void;
|
|
6
|
+
dryRun(path: string): void;
|
|
7
|
+
error(message: string): void;
|
|
8
|
+
done(message: string): void;
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=logger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../../../../src/platform/cli/web/utils/logger.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,MAAM;mBACF,MAAM,aAAa,MAAM,GAAG,IAAI;kBAGjC,MAAM,GAAG,IAAI;kBAGb,MAAM,WAAW,MAAM,GAAG,IAAI;iBAK/B,MAAM,oBAAwC,IAAI;iBAGlD,MAAM,GAAG,IAAI;mBAGX,MAAM,GAAG,IAAI;kBAGd,MAAM,GAAG,IAAI;CAG5B,CAAC"}
|