nitro-nightly 3.0.1-20260119-145349-d0c4950f → 3.0.1-20260120-020848-6786d069
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/_build/rolldown.mjs +13 -8
- package/dist/_build/vite.build.mjs +1 -1
- package/dist/_chunks/dev.mjs +5 -3
- package/dist/_chunks/nitro.mjs +24 -1183
- package/dist/_chunks/nitro2.mjs +248 -91
- package/dist/_chunks/nitro3.mjs +2696 -0
- package/dist/_chunks/nitro4.mjs +176 -0
- package/dist/_chunks/nitro5.mjs +733 -0
- package/dist/_chunks/nitro6.mjs +1458 -0
- package/dist/_chunks/nitro7.mjs +7561 -0
- package/dist/_chunks/nitro8.mjs +3524 -0
- package/dist/_chunks/nitro9.mjs +1729 -0
- package/dist/_libs/_.mjs +3 -0
- package/dist/_libs/_2.mjs +3 -0
- package/dist/_libs/_3.mjs +4 -0
- package/dist/_libs/_4.mjs +6 -0
- package/dist/_libs/_5.mjs +3 -0
- package/dist/_libs/_6.mjs +3 -0
- package/dist/_libs/acorn+confbox+js-tokens+magic-string+mlly+pkg-types+sourcemap-codec+strip-literal+unimport.mjs +8900 -0
- package/dist/_libs/{c12.mjs → c12+dotenv+rc9.mjs} +12 -105
- package/dist/_libs/{chokidar.mjs → chokidar+readdirp.mjs} +2 -9
- package/dist/_libs/confbox+exsolve+pkg-types.mjs +1249 -0
- package/dist/_libs/confbox.mjs +70 -2488
- package/dist/_libs/confbox2.mjs +786 -0
- package/dist/_libs/confbox3.mjs +404 -0
- package/dist/_libs/confbox4.mjs +3 -0
- package/dist/_libs/estree-walker+unimport.mjs +378 -0
- package/dist/_libs/fdir+picomatch+tinyglobby.mjs +2471 -0
- package/dist/_libs/gen-mapping+remapping+resolve-uri+trace-mapping+unimport+unplugin+unplugin-utils+webpack-virtual-modules.mjs +2150 -0
- package/dist/_libs/giget+node-fetch-native.mjs +2692 -0
- package/dist/_libs/httpxy.mjs +1 -6
- package/dist/_libs/local-pkg+quansync+unimport.mjs +1526 -0
- package/dist/_libs/nypm+tinyexec.mjs +858 -0
- package/dist/_libs/pathe.mjs +164 -0
- package/dist/_libs/perfect-debounce.mjs +89 -0
- package/dist/_libs/{@rollup/plugin-inject.mjs → plugin-alias+plugin-inject.mjs} +65 -2
- package/dist/_libs/std-env.mjs +158 -0
- package/dist/_libs/unimport.mjs +5 -1781
- package/dist/_libs/vite-plugin-fullstack.mjs +26 -0
- package/dist/_presets.mjs +8 -3
- package/dist/builder.mjs +8 -6
- package/dist/cli/_chunks/build.mjs +1 -1
- package/dist/cli/_chunks/dev.mjs +3 -2
- package/dist/cli/_chunks/list.mjs +1 -1
- package/dist/cli/_chunks/prepare.mjs +1 -1
- package/dist/cli/_chunks/run.mjs +1 -1
- package/dist/cli/index.mjs +1 -1
- package/dist/types/index.d.mts +2410 -1174
- package/dist/vite.d.mts +13 -13
- package/dist/vite.mjs +640 -16
- package/package.json +9 -9
- package/dist/_build/common.mjs +0 -24931
- package/dist/_build/rollup.mjs +0 -201
- package/dist/_chunks/utils.mjs +0 -254
- package/dist/_common.mjs +0 -45
- package/dist/_libs/@hiogawa/vite-plugin-fullstack.mjs +0 -652
- package/dist/_libs/@jridgewell/gen-mapping.mjs +0 -448
- package/dist/_libs/@jridgewell/remapping.mjs +0 -117
- package/dist/_libs/@rollup/plugin-alias.mjs +0 -64
- package/dist/_libs/@rollup/plugin-commonjs.mjs +0 -1300
- package/dist/_libs/@rollup/plugin-json.mjs +0 -36
- package/dist/_libs/@rollup/plugin-node-resolve.mjs +0 -1972
- package/dist/_libs/escape-string-regexp.mjs +0 -8
- package/dist/_libs/estree-walker.mjs +0 -187
- package/dist/_libs/giget.mjs +0 -3550
- package/dist/_libs/klona.mjs +0 -38
- package/dist/_libs/rou3.mjs +0 -322
- package/dist/_libs/tsconfck.mjs +0 -832
- package/dist/_libs/ultrahtml.mjs +0 -138
- package/dist/cli/_chunks/task.mjs +0 -16
package/dist/_libs/klona.mjs
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
//#region node_modules/.pnpm/klona@2.0.6/node_modules/klona/full/index.mjs
|
|
2
|
-
function set(obj, key, val) {
|
|
3
|
-
if (typeof val.value === "object") val.value = klona(val.value);
|
|
4
|
-
if (!val.enumerable || val.get || val.set || !val.configurable || !val.writable || key === "__proto__") Object.defineProperty(obj, key, val);
|
|
5
|
-
else obj[key] = val.value;
|
|
6
|
-
}
|
|
7
|
-
function klona(x) {
|
|
8
|
-
if (typeof x !== "object") return x;
|
|
9
|
-
var i = 0, k, list, tmp, str = Object.prototype.toString.call(x);
|
|
10
|
-
if (str === "[object Object]") tmp = Object.create(x.__proto__ || null);
|
|
11
|
-
else if (str === "[object Array]") tmp = Array(x.length);
|
|
12
|
-
else if (str === "[object Set]") {
|
|
13
|
-
tmp = /* @__PURE__ */ new Set();
|
|
14
|
-
x.forEach(function(val) {
|
|
15
|
-
tmp.add(klona(val));
|
|
16
|
-
});
|
|
17
|
-
} else if (str === "[object Map]") {
|
|
18
|
-
tmp = /* @__PURE__ */ new Map();
|
|
19
|
-
x.forEach(function(val, key) {
|
|
20
|
-
tmp.set(klona(key), klona(val));
|
|
21
|
-
});
|
|
22
|
-
} else if (str === "[object Date]") tmp = /* @__PURE__ */ new Date(+x);
|
|
23
|
-
else if (str === "[object RegExp]") tmp = new RegExp(x.source, x.flags);
|
|
24
|
-
else if (str === "[object DataView]") tmp = new x.constructor(klona(x.buffer));
|
|
25
|
-
else if (str === "[object ArrayBuffer]") tmp = x.slice(0);
|
|
26
|
-
else if (str.slice(-6) === "Array]") tmp = new x.constructor(x);
|
|
27
|
-
if (tmp) {
|
|
28
|
-
for (list = Object.getOwnPropertySymbols(x); i < list.length; i++) set(tmp, list[i], Object.getOwnPropertyDescriptor(x, list[i]));
|
|
29
|
-
for (i = 0, list = Object.getOwnPropertyNames(x); i < list.length; i++) {
|
|
30
|
-
if (Object.hasOwnProperty.call(tmp, k = list[i]) && tmp[k] === x[k]) continue;
|
|
31
|
-
set(tmp, k, Object.getOwnPropertyDescriptor(x, k));
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
return tmp || x;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
//#endregion
|
|
38
|
-
export { klona as t };
|
package/dist/_libs/rou3.mjs
DELETED
|
@@ -1,322 +0,0 @@
|
|
|
1
|
-
//#region node_modules/.pnpm/rou3@0.7.12/node_modules/rou3/dist/index.mjs
|
|
2
|
-
const NullProtoObj = /* @__PURE__ */ (() => {
|
|
3
|
-
const e = function() {};
|
|
4
|
-
return e.prototype = Object.create(null), Object.freeze(e.prototype), e;
|
|
5
|
-
})();
|
|
6
|
-
/**
|
|
7
|
-
* Create a new router context.
|
|
8
|
-
*/
|
|
9
|
-
function createRouter() {
|
|
10
|
-
return {
|
|
11
|
-
root: { key: "" },
|
|
12
|
-
static: new NullProtoObj()
|
|
13
|
-
};
|
|
14
|
-
}
|
|
15
|
-
function splitPath(path) {
|
|
16
|
-
const [_, ...s] = path.split("/");
|
|
17
|
-
return s[s.length - 1] === "" ? s.slice(0, -1) : s;
|
|
18
|
-
}
|
|
19
|
-
function getMatchParams(segments, paramsMap) {
|
|
20
|
-
const params = new NullProtoObj();
|
|
21
|
-
for (const [index, name] of paramsMap) {
|
|
22
|
-
const segment = index < 0 ? segments.slice(-(index + 1)).join("/") : segments[index];
|
|
23
|
-
if (typeof name === "string") params[name] = segment;
|
|
24
|
-
else {
|
|
25
|
-
const match = segment.match(name);
|
|
26
|
-
if (match) for (const key in match.groups) params[key] = match.groups[key];
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
return params;
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* Add a route to the router context.
|
|
33
|
-
*/
|
|
34
|
-
function addRoute(ctx, method = "", path, data) {
|
|
35
|
-
method = method.toUpperCase();
|
|
36
|
-
if (path.charCodeAt(0) !== 47) path = `/${path}`;
|
|
37
|
-
path = path.replace(/\\:/g, "%3A");
|
|
38
|
-
const segments = splitPath(path);
|
|
39
|
-
let node = ctx.root;
|
|
40
|
-
let _unnamedParamIndex = 0;
|
|
41
|
-
const paramsMap = [];
|
|
42
|
-
const paramsRegexp = [];
|
|
43
|
-
for (let i = 0; i < segments.length; i++) {
|
|
44
|
-
let segment = segments[i];
|
|
45
|
-
if (segment.startsWith("**")) {
|
|
46
|
-
if (!node.wildcard) node.wildcard = { key: "**" };
|
|
47
|
-
node = node.wildcard;
|
|
48
|
-
paramsMap.push([
|
|
49
|
-
-(i + 1),
|
|
50
|
-
segment.split(":")[1] || "_",
|
|
51
|
-
segment.length === 2
|
|
52
|
-
]);
|
|
53
|
-
break;
|
|
54
|
-
}
|
|
55
|
-
if (segment === "*" || segment.includes(":")) {
|
|
56
|
-
if (!node.param) node.param = { key: "*" };
|
|
57
|
-
node = node.param;
|
|
58
|
-
if (segment === "*") paramsMap.push([
|
|
59
|
-
i,
|
|
60
|
-
`_${_unnamedParamIndex++}`,
|
|
61
|
-
true
|
|
62
|
-
]);
|
|
63
|
-
else if (segment.includes(":", 1)) {
|
|
64
|
-
const regexp = getParamRegexp(segment);
|
|
65
|
-
paramsRegexp[i] = regexp;
|
|
66
|
-
node.hasRegexParam = true;
|
|
67
|
-
paramsMap.push([
|
|
68
|
-
i,
|
|
69
|
-
regexp,
|
|
70
|
-
false
|
|
71
|
-
]);
|
|
72
|
-
} else paramsMap.push([
|
|
73
|
-
i,
|
|
74
|
-
segment.slice(1),
|
|
75
|
-
false
|
|
76
|
-
]);
|
|
77
|
-
continue;
|
|
78
|
-
}
|
|
79
|
-
if (segment === "\\*") segment = segments[i] = "*";
|
|
80
|
-
else if (segment === "\\*\\*") segment = segments[i] = "**";
|
|
81
|
-
const child = node.static?.[segment];
|
|
82
|
-
if (child) node = child;
|
|
83
|
-
else {
|
|
84
|
-
const staticNode = { key: segment };
|
|
85
|
-
if (!node.static) node.static = new NullProtoObj();
|
|
86
|
-
node.static[segment] = staticNode;
|
|
87
|
-
node = staticNode;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
const hasParams = paramsMap.length > 0;
|
|
91
|
-
if (!node.methods) node.methods = new NullProtoObj();
|
|
92
|
-
node.methods[method] ??= [];
|
|
93
|
-
node.methods[method].push({
|
|
94
|
-
data: data || null,
|
|
95
|
-
paramsRegexp,
|
|
96
|
-
paramsMap: hasParams ? paramsMap : void 0
|
|
97
|
-
});
|
|
98
|
-
if (!hasParams) ctx.static["/" + segments.join("/")] = node;
|
|
99
|
-
}
|
|
100
|
-
function getParamRegexp(segment) {
|
|
101
|
-
const regex = segment.replace(/:(\w+)/g, (_, id) => `(?<${id}>[^/]+)`).replace(/\./g, "\\.");
|
|
102
|
-
return /* @__PURE__ */ new RegExp(`^${regex}$`);
|
|
103
|
-
}
|
|
104
|
-
/**
|
|
105
|
-
* Find a route by path.
|
|
106
|
-
*/
|
|
107
|
-
function findRoute(ctx, method = "", path, opts) {
|
|
108
|
-
if (path.charCodeAt(path.length - 1) === 47) path = path.slice(0, -1);
|
|
109
|
-
const staticNode = ctx.static[path];
|
|
110
|
-
if (staticNode && staticNode.methods) {
|
|
111
|
-
const staticMatch = staticNode.methods[method] || staticNode.methods[""];
|
|
112
|
-
if (staticMatch !== void 0) return staticMatch[0];
|
|
113
|
-
}
|
|
114
|
-
const segments = splitPath(path);
|
|
115
|
-
const match = _lookupTree(ctx, ctx.root, method, segments, 0)?.[0];
|
|
116
|
-
if (match === void 0) return;
|
|
117
|
-
if (opts?.params === false) return match;
|
|
118
|
-
return {
|
|
119
|
-
data: match.data,
|
|
120
|
-
params: match.paramsMap ? getMatchParams(segments, match.paramsMap) : void 0
|
|
121
|
-
};
|
|
122
|
-
}
|
|
123
|
-
function _lookupTree(ctx, node, method, segments, index) {
|
|
124
|
-
if (index === segments.length) {
|
|
125
|
-
if (node.methods) {
|
|
126
|
-
const match = node.methods[method] || node.methods[""];
|
|
127
|
-
if (match) return match;
|
|
128
|
-
}
|
|
129
|
-
if (node.param && node.param.methods) {
|
|
130
|
-
const match = node.param.methods[method] || node.param.methods[""];
|
|
131
|
-
if (match) {
|
|
132
|
-
const pMap = match[0].paramsMap;
|
|
133
|
-
if (pMap?.[pMap?.length - 1]?.[2]) return match;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
if (node.wildcard && node.wildcard.methods) {
|
|
137
|
-
const match = node.wildcard.methods[method] || node.wildcard.methods[""];
|
|
138
|
-
if (match) {
|
|
139
|
-
const pMap = match[0].paramsMap;
|
|
140
|
-
if (pMap?.[pMap?.length - 1]?.[2]) return match;
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
return;
|
|
144
|
-
}
|
|
145
|
-
const segment = segments[index];
|
|
146
|
-
if (node.static) {
|
|
147
|
-
const staticChild = node.static[segment];
|
|
148
|
-
if (staticChild) {
|
|
149
|
-
const match = _lookupTree(ctx, staticChild, method, segments, index + 1);
|
|
150
|
-
if (match) return match;
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
if (node.param) {
|
|
154
|
-
const match = _lookupTree(ctx, node.param, method, segments, index + 1);
|
|
155
|
-
if (match) {
|
|
156
|
-
if (node.param.hasRegexParam) {
|
|
157
|
-
const exactMatch = match.find((m) => m.paramsRegexp[index]?.test(segment)) || match.find((m) => !m.paramsRegexp[index]);
|
|
158
|
-
return exactMatch ? [exactMatch] : void 0;
|
|
159
|
-
}
|
|
160
|
-
return match;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
if (node.wildcard && node.wildcard.methods) return node.wildcard.methods[method] || node.wildcard.methods[""];
|
|
164
|
-
}
|
|
165
|
-
/**
|
|
166
|
-
* Find all route patterns that match the given path.
|
|
167
|
-
*/
|
|
168
|
-
function findAllRoutes(ctx, method = "", path, opts) {
|
|
169
|
-
if (path.charCodeAt(path.length - 1) === 47) path = path.slice(0, -1);
|
|
170
|
-
const segments = splitPath(path);
|
|
171
|
-
const matches = _findAll(ctx, ctx.root, method, segments, 0);
|
|
172
|
-
if (opts?.params === false) return matches;
|
|
173
|
-
return matches.map((m) => {
|
|
174
|
-
return {
|
|
175
|
-
data: m.data,
|
|
176
|
-
params: m.paramsMap ? getMatchParams(segments, m.paramsMap) : void 0
|
|
177
|
-
};
|
|
178
|
-
});
|
|
179
|
-
}
|
|
180
|
-
function _findAll(ctx, node, method, segments, index, matches = []) {
|
|
181
|
-
const segment = segments[index];
|
|
182
|
-
if (node.wildcard && node.wildcard.methods) {
|
|
183
|
-
const match = node.wildcard.methods[method] || node.wildcard.methods[""];
|
|
184
|
-
if (match) matches.push(...match);
|
|
185
|
-
}
|
|
186
|
-
if (node.param) {
|
|
187
|
-
_findAll(ctx, node.param, method, segments, index + 1, matches);
|
|
188
|
-
if (index === segments.length && node.param.methods) {
|
|
189
|
-
const match = node.param.methods[method] || node.param.methods[""];
|
|
190
|
-
if (match) {
|
|
191
|
-
const pMap = match[0].paramsMap;
|
|
192
|
-
if (pMap?.[pMap?.length - 1]?.[2]) matches.push(...match);
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
const staticChild = node.static?.[segment];
|
|
197
|
-
if (staticChild) _findAll(ctx, staticChild, method, segments, index + 1, matches);
|
|
198
|
-
if (index === segments.length && node.methods) {
|
|
199
|
-
const match = node.methods[method] || node.methods[""];
|
|
200
|
-
if (match) matches.push(...match);
|
|
201
|
-
}
|
|
202
|
-
return matches;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
//#endregion
|
|
206
|
-
//#region node_modules/.pnpm/rou3@0.7.12/node_modules/rou3/dist/compiler.mjs
|
|
207
|
-
/**
|
|
208
|
-
* Compile the router instance into a compact runnable code.
|
|
209
|
-
*
|
|
210
|
-
* **IMPORTANT:** Route data must be serializable to JSON (i.e., no functions or classes) or implement the `toJSON()` method to render custom code or you can pass custom `serialize` function in options.
|
|
211
|
-
*
|
|
212
|
-
* @example
|
|
213
|
-
* import { createRouter, addRoute } from "rou3";
|
|
214
|
-
* import { compileRouterToString } from "rou3/compiler";
|
|
215
|
-
* const router = createRouter();
|
|
216
|
-
* // [add some routes with serializable data]
|
|
217
|
-
* const compilerCode = compileRouterToString(router, "findRoute");
|
|
218
|
-
* // "const findRoute=(m, p) => {}"
|
|
219
|
-
*/
|
|
220
|
-
function compileRouterToString(router, functionName, opts) {
|
|
221
|
-
const ctx = {
|
|
222
|
-
opts: opts || {},
|
|
223
|
-
router,
|
|
224
|
-
data: [],
|
|
225
|
-
compileToString: true
|
|
226
|
-
};
|
|
227
|
-
let compiled = `(m,p)=>{${compileRouteMatch(ctx)}}`;
|
|
228
|
-
if (ctx.data.length > 0) compiled = `/* @__PURE__ */ (() => { ${`const ${ctx.data.map((v, i) => `$${i}=${v}`).join(",")};`}; return ${compiled}})()`;
|
|
229
|
-
return functionName ? `const ${functionName}=${compiled};` : compiled;
|
|
230
|
-
}
|
|
231
|
-
function compileRouteMatch(ctx) {
|
|
232
|
-
let code = "";
|
|
233
|
-
const staticNodes = /* @__PURE__ */ new Set();
|
|
234
|
-
for (const key in ctx.router.static) {
|
|
235
|
-
const node = ctx.router.static[key];
|
|
236
|
-
if (node?.methods) {
|
|
237
|
-
staticNodes.add(node);
|
|
238
|
-
code += `if(p===${JSON.stringify(key.replace(/\/$/, "") || "/")}){${compileMethodMatch(ctx, node.methods, [], -1)}}`;
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
const match = compileNode(ctx, ctx.router.root, [], 0, staticNodes);
|
|
242
|
-
if (match) code += `let s=p.split("/"),l=s.length-1;${match}`;
|
|
243
|
-
if (!code) return ctx.opts?.matchAll ? `return [];` : "";
|
|
244
|
-
return `${ctx.opts?.matchAll ? `let r=[];` : ""}if(p.charCodeAt(p.length-1)===47)p=p.slice(0,-1)||"/";${code}${ctx.opts?.matchAll ? "return r;" : ""}`;
|
|
245
|
-
}
|
|
246
|
-
function compileMethodMatch(ctx, methods, params, currentIdx) {
|
|
247
|
-
let code = "";
|
|
248
|
-
for (const key in methods) {
|
|
249
|
-
const matchers = methods[key];
|
|
250
|
-
if (matchers && matchers?.length > 0) {
|
|
251
|
-
if (key !== "") code += `if(m==="${key}")${matchers.length > 1 ? "{" : ""}`;
|
|
252
|
-
const _matchers = matchers.map((m) => compileFinalMatch(ctx, m, currentIdx, params)).sort((a, b) => b.weight - a.weight);
|
|
253
|
-
for (const matcher of _matchers) code += matcher.code;
|
|
254
|
-
if (key !== "") code += matchers.length > 1 ? "}" : "";
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
return code;
|
|
258
|
-
}
|
|
259
|
-
function compileFinalMatch(ctx, data, currentIdx, params) {
|
|
260
|
-
let ret = `{data:${serializeData(ctx, data.data)}`;
|
|
261
|
-
const conditions = [];
|
|
262
|
-
const { paramsMap, paramsRegexp } = data;
|
|
263
|
-
if (paramsMap && paramsMap.length > 0) {
|
|
264
|
-
if (!paramsMap[paramsMap.length - 1][2] && currentIdx !== -1) conditions.push(`l>=${currentIdx}`);
|
|
265
|
-
for (let i = 0; i < paramsRegexp.length; i++) {
|
|
266
|
-
const regexp = paramsRegexp[i];
|
|
267
|
-
if (!regexp) continue;
|
|
268
|
-
conditions.push(`${regexp.toString()}.test(s[${i + 1}])`);
|
|
269
|
-
}
|
|
270
|
-
ret += ",params:{";
|
|
271
|
-
for (let i = 0; i < paramsMap.length; i++) {
|
|
272
|
-
const map = paramsMap[i];
|
|
273
|
-
ret += typeof map[1] === "string" ? `${JSON.stringify(map[1])}:${params[i]},` : `...(${map[1].toString()}.exec(${params[i]}))?.groups,`;
|
|
274
|
-
}
|
|
275
|
-
ret += "}";
|
|
276
|
-
}
|
|
277
|
-
return {
|
|
278
|
-
code: (conditions.length > 0 ? `if(${conditions.join("&&")})` : "") + (ctx.opts?.matchAll ? `r.unshift(${ret}});` : `return ${ret}};`),
|
|
279
|
-
weight: conditions.length
|
|
280
|
-
};
|
|
281
|
-
}
|
|
282
|
-
function compileNode(ctx, node, params, startIdx, staticNodes) {
|
|
283
|
-
let code = "";
|
|
284
|
-
if (node.methods && !staticNodes.has(node)) {
|
|
285
|
-
const match = compileMethodMatch(ctx, node.methods, params, node.key === "*" ? startIdx : -1);
|
|
286
|
-
if (match) {
|
|
287
|
-
const hasLastOptionalParam = node.key === "*";
|
|
288
|
-
code += `if(l===${startIdx}${hasLastOptionalParam ? `||l===${startIdx - 1}` : ""}){${match}}`;
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
if (node.static) for (const key in node.static) {
|
|
292
|
-
const match = compileNode(ctx, node.static[key], params, startIdx + 1, staticNodes);
|
|
293
|
-
if (match) code += `if(s[${startIdx + 1}]===${JSON.stringify(key)}){${match}}`;
|
|
294
|
-
}
|
|
295
|
-
if (node.param) {
|
|
296
|
-
const match = compileNode(ctx, node.param, [...params, `s[${startIdx + 1}]`], startIdx + 1, staticNodes);
|
|
297
|
-
if (match) code += match;
|
|
298
|
-
}
|
|
299
|
-
if (node.wildcard) {
|
|
300
|
-
const { wildcard } = node;
|
|
301
|
-
if (wildcard.static || wildcard.param || wildcard.wildcard) throw new Error("Compiler mode does not support patterns after wildcard");
|
|
302
|
-
if (wildcard.methods) {
|
|
303
|
-
const match = compileMethodMatch(ctx, wildcard.methods, [...params, `s.slice(${startIdx + 1}).join('/')`], startIdx);
|
|
304
|
-
if (match) code += match;
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
return code;
|
|
308
|
-
}
|
|
309
|
-
function serializeData(ctx, value) {
|
|
310
|
-
if (ctx.compileToString) if (ctx.opts?.serialize) value = ctx.opts.serialize(value);
|
|
311
|
-
else if (typeof value?.toJSON === "function") value = value.toJSON();
|
|
312
|
-
else value = JSON.stringify(value);
|
|
313
|
-
let index = ctx.data.indexOf(value);
|
|
314
|
-
if (index === -1) {
|
|
315
|
-
ctx.data.push(value);
|
|
316
|
-
index = ctx.data.length - 1;
|
|
317
|
-
}
|
|
318
|
-
return `$${index}`;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
//#endregion
|
|
322
|
-
export { findRoute as a, findAllRoutes as i, addRoute as n, createRouter as r, compileRouterToString as t };
|