@noego/forge 0.0.10 → 0.0.12
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/client.cjs +1 -1
- package/dist/client.cjs.map +1 -1
- package/dist/client.mjs +224 -219
- package/dist/client.mjs.map +1 -1
- package/dist/options/ServerOptions.cjs +28 -0
- package/dist/options/ServerOptions.cjs.map +1 -0
- package/dist/options/ServerOptions.d.ts +19 -0
- package/dist/options/ServerOptions.mjs +21 -0
- package/dist/options/ServerOptions.mjs.map +1 -0
- package/dist/options/assets.cjs +42 -0
- package/dist/options/assets.cjs.map +1 -0
- package/dist/options/assets.d.ts +46 -0
- package/dist/options/assets.mjs +38 -0
- package/dist/options/assets.mjs.map +1 -0
- package/dist/plugins/serverOnlyStub.d.ts +6 -0
- package/dist/plugins-cjs/index.plugins.js +9 -0
- package/dist/plugins-cjs/index.plugins.js.map +1 -0
- package/dist/plugins-cjs/options/ServerOptions.js +28 -0
- package/dist/plugins-cjs/options/ServerOptions.js.map +1 -0
- package/dist/plugins-cjs/options/assets.js +42 -0
- package/dist/plugins-cjs/options/assets.js.map +1 -0
- package/dist/plugins-cjs/plugins/serverOnlyStub.js +226 -0
- package/dist/plugins-cjs/plugins/serverOnlyStub.js.map +1 -0
- package/dist/plugins-cjs/routing/html_render/html_render.js +62 -0
- package/dist/plugins-cjs/routing/html_render/html_render.js.map +1 -0
- package/dist/plugins-cjs/stubs/server-only.js +10 -0
- package/dist/plugins-cjs/stubs/server-only.js.map +1 -0
- package/dist/plugins-es/index.plugins.d.ts +2 -0
- package/dist/plugins-es/index.plugins.js +2 -0
- package/dist/plugins-es/index.plugins.js.map +1 -0
- package/dist/plugins-es/options/ServerOptions.d.ts +19 -0
- package/dist/plugins-es/options/ServerOptions.js +21 -0
- package/dist/plugins-es/options/ServerOptions.js.map +1 -0
- package/dist/plugins-es/options/assets.d.ts +46 -0
- package/dist/plugins-es/options/assets.js +38 -0
- package/dist/plugins-es/options/assets.js.map +1 -0
- package/dist/plugins-es/plugins/serverOnlyStub.d.ts +6 -0
- package/dist/plugins-es/plugins/serverOnlyStub.js +200 -0
- package/dist/plugins-es/plugins/serverOnlyStub.js.map +1 -0
- package/dist/plugins-es/routing/html_render/html_render.d.ts +19 -0
- package/dist/plugins-es/routing/html_render/html_render.js +53 -0
- package/dist/plugins-es/routing/html_render/html_render.js.map +1 -0
- package/dist/plugins-es/stubs/server-only.d.ts +3 -0
- package/dist/plugins-es/stubs/server-only.js +7 -0
- package/dist/plugins-es/stubs/server-only.js.map +1 -0
- package/dist/routing/html_render/html_render.d.ts +19 -0
- package/dist/routing/html_render/html_render.js +53 -0
- package/dist/routing/html_render/html_render.js.map +1 -0
- package/dist-ssr/server.cjs +179 -23
- package/dist-ssr/server.cjs.map +1 -1
- package/dist-ssr/server.js +179 -23
- package/dist-ssr/server.js.map +1 -1
- package/package.json +11 -4
- package/src/components/RecursiveRender.svelte +55 -14
package/dist/client.mjs
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
import { p as G, a as y } from "./page.svelte-Bq1Q01H0.js";
|
|
2
2
|
import { s as vt } from "./page.svelte-Bq1Q01H0.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as H from "svelte/internal/client";
|
|
4
4
|
import { hydrate as Y } from "svelte";
|
|
5
5
|
import J from "../src/components/RecursiveRender.svelte";
|
|
6
6
|
function K(t) {
|
|
7
7
|
const i = new G(t);
|
|
8
|
-
return (
|
|
8
|
+
return (n) => i.match(n) || null;
|
|
9
9
|
}
|
|
10
10
|
function Q(t) {
|
|
11
11
|
return t.map((i) => {
|
|
12
|
-
const
|
|
13
|
-
return { pattern:
|
|
12
|
+
const n = i.path, o = K(n);
|
|
13
|
+
return { pattern: n, parser: o };
|
|
14
14
|
});
|
|
15
15
|
}
|
|
16
|
-
function
|
|
17
|
-
return
|
|
16
|
+
function q() {
|
|
17
|
+
return q = Object.assign ? Object.assign.bind() : function(t) {
|
|
18
18
|
for (var i = 1; i < arguments.length; i++) {
|
|
19
|
-
var
|
|
20
|
-
for (var o in
|
|
19
|
+
var n = arguments[i];
|
|
20
|
+
for (var o in n) ({}).hasOwnProperty.call(n, o) && (t[o] = n[o]);
|
|
21
21
|
}
|
|
22
22
|
return t;
|
|
23
|
-
},
|
|
23
|
+
}, q.apply(null, arguments);
|
|
24
24
|
}
|
|
25
|
-
var
|
|
25
|
+
var O;
|
|
26
26
|
(function(t) {
|
|
27
27
|
t.Pop = "POP", t.Push = "PUSH", t.Replace = "REPLACE";
|
|
28
|
-
})(
|
|
29
|
-
var
|
|
28
|
+
})(O || (O = {}));
|
|
29
|
+
var D = process.env.NODE_ENV !== "production" ? function(t) {
|
|
30
30
|
return Object.freeze(t);
|
|
31
31
|
} : function(t) {
|
|
32
32
|
return t;
|
|
@@ -40,36 +40,36 @@ function X(t, i) {
|
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
|
-
var
|
|
43
|
+
var I = "beforeunload", Z = "popstate";
|
|
44
44
|
function tt(t) {
|
|
45
45
|
t === void 0 && (t = {});
|
|
46
|
-
var i = t,
|
|
46
|
+
var i = t, n = i.window, o = n === void 0 ? document.defaultView : n, a = o.history;
|
|
47
47
|
function r() {
|
|
48
|
-
var
|
|
49
|
-
return [
|
|
50
|
-
pathname:
|
|
51
|
-
search:
|
|
52
|
-
hash:
|
|
53
|
-
state:
|
|
54
|
-
key:
|
|
48
|
+
var d = o.location, m = d.pathname, v = d.search, b = d.hash, P = a.state || {};
|
|
49
|
+
return [P.idx, D({
|
|
50
|
+
pathname: m,
|
|
51
|
+
search: v,
|
|
52
|
+
hash: b,
|
|
53
|
+
state: P.usr || null,
|
|
54
|
+
key: P.key || "default"
|
|
55
55
|
})];
|
|
56
56
|
}
|
|
57
|
-
var
|
|
58
|
-
function
|
|
59
|
-
if (
|
|
60
|
-
|
|
57
|
+
var c = null;
|
|
58
|
+
function l() {
|
|
59
|
+
if (c)
|
|
60
|
+
w.call(c), c = null;
|
|
61
61
|
else {
|
|
62
|
-
var
|
|
63
|
-
if (
|
|
64
|
-
if (
|
|
65
|
-
var
|
|
66
|
-
|
|
67
|
-
action:
|
|
68
|
-
location:
|
|
62
|
+
var d = O.Pop, m = r(), v = m[0], b = m[1];
|
|
63
|
+
if (w.length)
|
|
64
|
+
if (v != null) {
|
|
65
|
+
var P = u - v;
|
|
66
|
+
P && (c = {
|
|
67
|
+
action: d,
|
|
68
|
+
location: b,
|
|
69
69
|
retry: function() {
|
|
70
|
-
|
|
70
|
+
S(P * -1);
|
|
71
71
|
}
|
|
72
|
-
},
|
|
72
|
+
}, S(P));
|
|
73
73
|
} else
|
|
74
74
|
process.env.NODE_ENV !== "production" && X(
|
|
75
75
|
!1,
|
|
@@ -79,125 +79,125 @@ function tt(t) {
|
|
|
79
79
|
"You are trying to block a POP navigation to a location that was not created by the history library. The block will fail silently in production, but in general you should do all navigation with the history library (instead of using window.history.pushState directly) to avoid this situation."
|
|
80
80
|
);
|
|
81
81
|
else
|
|
82
|
-
E(
|
|
82
|
+
E(d);
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
|
-
o.addEventListener(Z,
|
|
86
|
-
var
|
|
87
|
-
|
|
88
|
-
idx:
|
|
85
|
+
o.addEventListener(Z, l);
|
|
86
|
+
var e = O.Pop, s = r(), u = s[0], p = s[1], f = F(), w = F();
|
|
87
|
+
u == null && (u = 0, a.replaceState(q({}, a.state, {
|
|
88
|
+
idx: u
|
|
89
89
|
}), ""));
|
|
90
|
-
function
|
|
91
|
-
return typeof
|
|
90
|
+
function h(d) {
|
|
91
|
+
return typeof d == "string" ? d : nt(d);
|
|
92
92
|
}
|
|
93
|
-
function
|
|
94
|
-
return
|
|
95
|
-
pathname:
|
|
93
|
+
function L(d, m) {
|
|
94
|
+
return m === void 0 && (m = null), D(q({
|
|
95
|
+
pathname: p.pathname,
|
|
96
96
|
hash: "",
|
|
97
97
|
search: ""
|
|
98
|
-
}, typeof
|
|
99
|
-
state:
|
|
98
|
+
}, typeof d == "string" ? ot(d) : d, {
|
|
99
|
+
state: m,
|
|
100
100
|
key: et()
|
|
101
101
|
}));
|
|
102
102
|
}
|
|
103
|
-
function
|
|
103
|
+
function R(d, m) {
|
|
104
104
|
return [{
|
|
105
|
-
usr:
|
|
106
|
-
key:
|
|
107
|
-
idx:
|
|
108
|
-
},
|
|
105
|
+
usr: d.state,
|
|
106
|
+
key: d.key,
|
|
107
|
+
idx: m
|
|
108
|
+
}, h(d)];
|
|
109
109
|
}
|
|
110
|
-
function
|
|
111
|
-
return !
|
|
112
|
-
action:
|
|
113
|
-
location:
|
|
114
|
-
retry:
|
|
110
|
+
function k(d, m, v) {
|
|
111
|
+
return !w.length || (w.call({
|
|
112
|
+
action: d,
|
|
113
|
+
location: m,
|
|
114
|
+
retry: v
|
|
115
115
|
}), !1);
|
|
116
116
|
}
|
|
117
|
-
function E(
|
|
118
|
-
|
|
119
|
-
var
|
|
120
|
-
|
|
121
|
-
action:
|
|
122
|
-
location:
|
|
117
|
+
function E(d) {
|
|
118
|
+
e = d;
|
|
119
|
+
var m = r();
|
|
120
|
+
u = m[0], p = m[1], f.call({
|
|
121
|
+
action: e,
|
|
122
|
+
location: p
|
|
123
123
|
});
|
|
124
124
|
}
|
|
125
|
-
function M(
|
|
126
|
-
var
|
|
127
|
-
function
|
|
128
|
-
M(
|
|
125
|
+
function M(d, m) {
|
|
126
|
+
var v = O.Push, b = L(d, m);
|
|
127
|
+
function P() {
|
|
128
|
+
M(d, m);
|
|
129
129
|
}
|
|
130
|
-
if (
|
|
131
|
-
var _ =
|
|
130
|
+
if (k(v, b, P)) {
|
|
131
|
+
var _ = R(b, u + 1), x = _[0], N = _[1];
|
|
132
132
|
try {
|
|
133
|
-
a.pushState(x, "",
|
|
133
|
+
a.pushState(x, "", N);
|
|
134
134
|
} catch {
|
|
135
|
-
o.location.assign(
|
|
135
|
+
o.location.assign(N);
|
|
136
136
|
}
|
|
137
|
-
E(
|
|
137
|
+
E(v);
|
|
138
138
|
}
|
|
139
139
|
}
|
|
140
|
-
function
|
|
141
|
-
var
|
|
142
|
-
function
|
|
143
|
-
|
|
140
|
+
function W(d, m) {
|
|
141
|
+
var v = O.Replace, b = L(d, m);
|
|
142
|
+
function P() {
|
|
143
|
+
W(d, m);
|
|
144
144
|
}
|
|
145
|
-
if (
|
|
146
|
-
var _ =
|
|
147
|
-
a.replaceState(x, "",
|
|
145
|
+
if (k(v, b, P)) {
|
|
146
|
+
var _ = R(b, u), x = _[0], N = _[1];
|
|
147
|
+
a.replaceState(x, "", N), E(v);
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
|
-
function
|
|
151
|
-
a.go(
|
|
150
|
+
function S(d) {
|
|
151
|
+
a.go(d);
|
|
152
152
|
}
|
|
153
|
-
var
|
|
153
|
+
var V = {
|
|
154
154
|
get action() {
|
|
155
|
-
return
|
|
155
|
+
return e;
|
|
156
156
|
},
|
|
157
157
|
get location() {
|
|
158
|
-
return
|
|
158
|
+
return p;
|
|
159
159
|
},
|
|
160
|
-
createHref:
|
|
160
|
+
createHref: h,
|
|
161
161
|
push: M,
|
|
162
|
-
replace:
|
|
163
|
-
go:
|
|
162
|
+
replace: W,
|
|
163
|
+
go: S,
|
|
164
164
|
back: function() {
|
|
165
|
-
|
|
165
|
+
S(-1);
|
|
166
166
|
},
|
|
167
167
|
forward: function() {
|
|
168
|
-
|
|
168
|
+
S(1);
|
|
169
169
|
},
|
|
170
|
-
listen: function(
|
|
171
|
-
return
|
|
170
|
+
listen: function(m) {
|
|
171
|
+
return f.push(m);
|
|
172
172
|
},
|
|
173
|
-
block: function(
|
|
174
|
-
var
|
|
175
|
-
return
|
|
176
|
-
|
|
173
|
+
block: function(m) {
|
|
174
|
+
var v = w.push(m);
|
|
175
|
+
return w.length === 1 && o.addEventListener(I, z), function() {
|
|
176
|
+
v(), w.length || o.removeEventListener(I, z);
|
|
177
177
|
};
|
|
178
178
|
}
|
|
179
179
|
};
|
|
180
|
-
return
|
|
180
|
+
return V;
|
|
181
181
|
}
|
|
182
|
-
function
|
|
182
|
+
function z(t) {
|
|
183
183
|
t.preventDefault(), t.returnValue = "";
|
|
184
184
|
}
|
|
185
|
-
function
|
|
185
|
+
function F() {
|
|
186
186
|
var t = [];
|
|
187
187
|
return {
|
|
188
188
|
get length() {
|
|
189
189
|
return t.length;
|
|
190
190
|
},
|
|
191
|
-
push: function(
|
|
192
|
-
return t.push(
|
|
191
|
+
push: function(n) {
|
|
192
|
+
return t.push(n), function() {
|
|
193
193
|
t = t.filter(function(o) {
|
|
194
|
-
return o !==
|
|
194
|
+
return o !== n;
|
|
195
195
|
});
|
|
196
196
|
};
|
|
197
197
|
},
|
|
198
|
-
call: function(
|
|
198
|
+
call: function(n) {
|
|
199
199
|
t.forEach(function(o) {
|
|
200
|
-
return o && o(
|
|
200
|
+
return o && o(n);
|
|
201
201
|
});
|
|
202
202
|
}
|
|
203
203
|
};
|
|
@@ -206,20 +206,20 @@ function et() {
|
|
|
206
206
|
return Math.random().toString(36).substr(2, 8);
|
|
207
207
|
}
|
|
208
208
|
function nt(t) {
|
|
209
|
-
var i = t.pathname,
|
|
210
|
-
return a && a !== "?" && (
|
|
209
|
+
var i = t.pathname, n = i === void 0 ? "/" : i, o = t.search, a = o === void 0 ? "" : o, r = t.hash, c = r === void 0 ? "" : r;
|
|
210
|
+
return a && a !== "?" && (n += a.charAt(0) === "?" ? a : "?" + a), c && c !== "#" && (n += c.charAt(0) === "#" ? c : "#" + c), n;
|
|
211
211
|
}
|
|
212
212
|
function ot(t) {
|
|
213
213
|
var i = {};
|
|
214
214
|
if (t) {
|
|
215
|
-
var
|
|
216
|
-
|
|
215
|
+
var n = t.indexOf("#");
|
|
216
|
+
n >= 0 && (i.hash = t.substr(n), t = t.substr(0, n));
|
|
217
217
|
var o = t.indexOf("?");
|
|
218
218
|
o >= 0 && (i.search = t.substr(o), t = t.substr(0, o)), t && (i.pathname = t);
|
|
219
219
|
}
|
|
220
220
|
return i;
|
|
221
221
|
}
|
|
222
|
-
const rt = tt(), g =
|
|
222
|
+
const rt = tt(), g = H.proxy({
|
|
223
223
|
layouts: [],
|
|
224
224
|
view: null,
|
|
225
225
|
data: null,
|
|
@@ -228,136 +228,143 @@ const rt = tt(), g = B.proxy({
|
|
|
228
228
|
query: null,
|
|
229
229
|
page: y
|
|
230
230
|
});
|
|
231
|
-
function
|
|
232
|
-
let i = t.map((
|
|
231
|
+
function A(...t) {
|
|
232
|
+
let i = t.map((n, o) => o === 0 ? n.replace(/\/+$/, "") : n.replace(/^\/+|\/+$/g, "")).join("/");
|
|
233
233
|
return i.startsWith("/") || (i = "/" + i), i.split("?")[0];
|
|
234
234
|
}
|
|
235
|
-
async function at(t, i,
|
|
235
|
+
async function at(t, i, n, o, a, r) {
|
|
236
236
|
try {
|
|
237
|
-
const l = (
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
237
|
+
const c = typeof i == "string" && i.indexOf("assets") !== -1, l = (n.layout || []).map((p) => {
|
|
238
|
+
let f = A(i, p).toString();
|
|
239
|
+
return c && (f = f.endsWith(".svelte") ? f.replace(/\.svelte$/, ".js") : /[.][a-z]+$/.test(f) ? f : f + ".js"), f;
|
|
240
|
+
});
|
|
241
|
+
let e = A(i, n.view).toString();
|
|
242
|
+
c && (e = e.endsWith(".svelte") ? e.replace(/\.svelte$/, ".js") : /[.][a-z]+$/.test(e) ? e : e + ".js"), console.log({ layouts_paths: l, view_path: e });
|
|
243
|
+
const s = await Promise.all(l.map((p) => import(
|
|
241
244
|
/* @vite-ignore */
|
|
242
|
-
|
|
243
|
-
).then((
|
|
244
|
-
|
|
245
|
-
const
|
|
245
|
+
p
|
|
246
|
+
).then((f) => f.default)));
|
|
247
|
+
e.startsWith("/") || (e = "/" + e);
|
|
248
|
+
const u = await import(
|
|
246
249
|
/* @vite-ignore */
|
|
247
|
-
|
|
248
|
-
).then((
|
|
249
|
-
g.layouts =
|
|
250
|
-
} catch (
|
|
251
|
-
console.
|
|
252
|
-
const s = window.location.pathname || "/";
|
|
253
|
-
window.location.href = s;
|
|
250
|
+
e
|
|
251
|
+
).then((p) => p.default);
|
|
252
|
+
g.layouts = s, g.view = u, g.params = o, g.data = window.__INITIAL_DATA__, g.urlParams = a, g.query = r, Y(J, { target: t, props: g });
|
|
253
|
+
} catch (c) {
|
|
254
|
+
console.error("Client-side route loading failed:", c);
|
|
254
255
|
}
|
|
255
256
|
}
|
|
256
|
-
async function
|
|
257
|
+
async function U(t, i, n, o, a, r, c = !1, l = !0) {
|
|
257
258
|
try {
|
|
258
|
-
const
|
|
259
|
+
const e = typeof i == "string" && i.indexOf("assets") !== -1, s = (n.layout || []).map((w) => {
|
|
260
|
+
let h = A(i, w).toString();
|
|
261
|
+
return e && (h = h.endsWith(".svelte") ? h.replace(/\.svelte$/, ".js") : /[.][a-z]+$/.test(h) ? h : h + ".js"), h;
|
|
262
|
+
});
|
|
263
|
+
let u = A(i, n.view).toString();
|
|
264
|
+
e && (u = u.endsWith(".svelte") ? u.replace(/\.svelte$/, ".js") : /[.][a-z]+$/.test(u) ? u : u + ".js");
|
|
265
|
+
const p = await Promise.all(s.map((w) => import(
|
|
259
266
|
/* @vite-ignore */
|
|
260
|
-
|
|
261
|
-
).then((
|
|
267
|
+
w
|
|
268
|
+
).then((h) => h.default))), f = await import(
|
|
262
269
|
/* @vite-ignore */
|
|
263
|
-
|
|
264
|
-
).then((
|
|
265
|
-
if (
|
|
266
|
-
const
|
|
267
|
-
method:
|
|
270
|
+
u
|
|
271
|
+
).then((w) => w.default);
|
|
272
|
+
if (c) {
|
|
273
|
+
const w = {
|
|
274
|
+
method: n.method,
|
|
268
275
|
headers: {
|
|
269
276
|
"Content-Type": "application/json",
|
|
270
277
|
Accept: "application/json"
|
|
271
278
|
}
|
|
272
279
|
};
|
|
273
|
-
|
|
274
|
-
if (
|
|
275
|
-
return
|
|
280
|
+
w[B] = !0, await fetch(t, w).then((h) => {
|
|
281
|
+
if (h.ok)
|
|
282
|
+
return h.json();
|
|
276
283
|
throw new Error("Network response was not ok");
|
|
277
|
-
}).then((
|
|
278
|
-
console.log("Server data",
|
|
284
|
+
}).then((h) => {
|
|
285
|
+
console.log("Server data", h), g.data = h, g.params = o, g.layouts = p, g.view = f, g.urlParams = a, g.query = r;
|
|
279
286
|
});
|
|
280
287
|
} else
|
|
281
|
-
g.data = { layout: [], view: {} }, g.params = o, g.layouts =
|
|
282
|
-
window && window.scroll(0, 0),
|
|
283
|
-
} catch (
|
|
284
|
-
console.
|
|
288
|
+
g.data = { layout: [], view: {} }, g.params = o, g.layouts = p, g.view = f, g.urlParams = a, g.query = r;
|
|
289
|
+
window && window.scroll(0, 0), l && rt.push(t);
|
|
290
|
+
} catch (e) {
|
|
291
|
+
console.error("Client-side navigation failed for URL:", t, e);
|
|
285
292
|
}
|
|
286
293
|
}
|
|
287
|
-
const
|
|
294
|
+
const j = H.proxy({});
|
|
288
295
|
async function it() {
|
|
289
|
-
Object.assign(
|
|
296
|
+
Object.assign(j, window.__MANIFEST__);
|
|
290
297
|
}
|
|
291
|
-
function st(t, i,
|
|
298
|
+
function st(t, i, n) {
|
|
292
299
|
if (!document) {
|
|
293
300
|
console.error("Document not found");
|
|
294
301
|
return;
|
|
295
302
|
}
|
|
296
303
|
document.addEventListener("click", (o) => {
|
|
297
|
-
var
|
|
298
|
-
const a = window.location.pathname, r = ((
|
|
304
|
+
var c, l;
|
|
305
|
+
const a = window.location.pathname, r = ((c = o.target) == null ? void 0 : c.tagName) === "A" ? o.target : (l = o.target) == null ? void 0 : l.closest("A");
|
|
299
306
|
if (r) {
|
|
300
|
-
let
|
|
301
|
-
if (a ===
|
|
307
|
+
let e = r.getAttribute("href");
|
|
308
|
+
if (a === e) {
|
|
302
309
|
o.preventDefault();
|
|
303
310
|
return;
|
|
304
311
|
}
|
|
305
|
-
if (
|
|
306
|
-
const
|
|
307
|
-
if (
|
|
312
|
+
if (e && e.startsWith("/") || e.startsWith(".")) {
|
|
313
|
+
const s = e.split("?")[0], u = r.getAttribute("method") || "get", p = i.find((f) => f.method.toLowerCase() === u && n.find((w) => w.parser(s) && w.pattern === f.path));
|
|
314
|
+
if (p) {
|
|
308
315
|
o.preventDefault();
|
|
309
|
-
const
|
|
310
|
-
|
|
316
|
+
const f = n.find((E) => E.parser(s) && E.pattern === p.path), w = (f == null ? void 0 : f.parser(s)) || {}, h = new URLSearchParams(e.split("?")[1] || ""), L = Object.fromEntries(h.entries()) || {}, R = { ...w, ...L }, k = j[f == null ? void 0 : f.pattern];
|
|
317
|
+
U(e, t, p, R, w, L, k);
|
|
311
318
|
} else
|
|
312
|
-
console.log("No matching route found for URL:",
|
|
319
|
+
console.log("No matching route found for URL:", e, "- using fallback navigation");
|
|
313
320
|
}
|
|
314
321
|
}
|
|
315
322
|
}), window.addEventListener("popstate", (o) => {
|
|
316
323
|
const a = window.location.pathname, r = window.location.pathname + window.location.search;
|
|
317
324
|
y.url = r, y.pathname = window.location.pathname;
|
|
318
|
-
const
|
|
319
|
-
if (
|
|
320
|
-
const
|
|
321
|
-
y.params =
|
|
322
|
-
const
|
|
323
|
-
|
|
325
|
+
const c = "get", l = i.find((e) => e.method.toLowerCase() === c && n.find((s) => s.parser(a) && s.pattern === e.path));
|
|
326
|
+
if (l) {
|
|
327
|
+
const e = n.find((h) => h.parser(a) && h.pattern === l.path), s = (e == null ? void 0 : e.parser(a)) || {}, u = new URLSearchParams(window.location.search), p = Object.fromEntries(u.entries()) || {};
|
|
328
|
+
y.params = s, y.query = p;
|
|
329
|
+
const f = { ...s, ...p }, w = j[e == null ? void 0 : e.pattern];
|
|
330
|
+
U(r, t, l, f, s, p, w, !1);
|
|
324
331
|
} else
|
|
325
332
|
console.log("No matching route found for popstate navigation to:", a, "- using fallback navigation"), window.location.href = a;
|
|
326
333
|
}), function() {
|
|
327
334
|
const o = history.pushState, a = history.replaceState;
|
|
328
335
|
history.pushState = function(...r) {
|
|
329
|
-
const
|
|
330
|
-
return
|
|
336
|
+
const c = o.apply(this, r), l = new Event("pushstate");
|
|
337
|
+
return l.state = r[0], l.url = r[2], window.dispatchEvent(l), c;
|
|
331
338
|
}, history.replaceState = function(...r) {
|
|
332
|
-
const
|
|
333
|
-
if ((
|
|
334
|
-
const
|
|
335
|
-
|
|
339
|
+
const c = a.apply(this, r), l = r[2], e = window.location.pathname;
|
|
340
|
+
if ((l ? new URL(l, window.location.origin).pathname : e) !== e) {
|
|
341
|
+
const u = new Event("replacestate");
|
|
342
|
+
u.state = r[0], u.url = r[2], window.dispatchEvent(u);
|
|
336
343
|
}
|
|
337
|
-
return
|
|
344
|
+
return c;
|
|
338
345
|
};
|
|
339
346
|
}(), window.addEventListener("pushstate", (o) => {
|
|
340
|
-
const a = o.url || window.location.pathname + window.location.search, r = a.split("?")[0],
|
|
341
|
-
if (
|
|
342
|
-
const
|
|
343
|
-
y.url = a, y.pathname = window.location.pathname, Object.assign(y.params,
|
|
344
|
-
const
|
|
345
|
-
|
|
347
|
+
const a = o.url || window.location.pathname + window.location.search, r = a.split("?")[0], c = "get", l = i.find((e) => e.method.toLowerCase() === c && n.find((s) => s.parser(r) && s.pattern === e.path));
|
|
348
|
+
if (l) {
|
|
349
|
+
const e = n.find((h) => h.parser(r) && h.pattern === l.path), s = e == null ? void 0 : e.parser(r), u = new URLSearchParams(a.split("?")[1] || ""), p = Object.fromEntries(u.entries());
|
|
350
|
+
y.url = a, y.pathname = window.location.pathname, Object.assign(y.params, s), Object.assign(y.query, p);
|
|
351
|
+
const f = { ...s, ...p }, w = j[e == null ? void 0 : e.pattern];
|
|
352
|
+
U(a, t, l, f, s, p, w, !1);
|
|
346
353
|
} else
|
|
347
354
|
console.log("No matching route found for pushstate to:", r, "- using fallback navigation"), window.location.href = r;
|
|
348
355
|
}), window.addEventListener("replacestate", (o) => {
|
|
349
356
|
const a = o.url || window.location.pathname + window.location.search, r = a.split("?")[0];
|
|
350
357
|
y.url = a, y.pathname = window.location.pathname, y.query = Object.fromEntries(new URLSearchParams(a.split("?")[1] || ""));
|
|
351
|
-
const
|
|
352
|
-
if (
|
|
353
|
-
const
|
|
354
|
-
|
|
358
|
+
const c = "get", l = i.find((e) => e.method.toLowerCase() === c && n.find((s) => s.parser(r) && s.pattern === e.path));
|
|
359
|
+
if (l) {
|
|
360
|
+
const e = n.find((h) => h.parser(r) && h.pattern === l.path), s = (e == null ? void 0 : e.parser(r)) || {}, u = new URLSearchParams(a.split("?")[1] || ""), p = Object.fromEntries(u.entries()) || {}, f = { ...s, ...p }, w = j[e == null ? void 0 : e.pattern];
|
|
361
|
+
U(a, t, l, f, s, p, w, !1);
|
|
355
362
|
} else
|
|
356
363
|
console.log("No matching route found for replacestate to:", r, "- using fallback navigation"), window.location.href = r;
|
|
357
364
|
});
|
|
358
365
|
}
|
|
359
|
-
const
|
|
360
|
-
let
|
|
366
|
+
const B = Symbol("forge-load-function");
|
|
367
|
+
let $ = [], C = null;
|
|
361
368
|
function ct(t) {
|
|
362
369
|
try {
|
|
363
370
|
const i = new URL(t, window.location.origin);
|
|
@@ -367,40 +374,40 @@ function ct(t) {
|
|
|
367
374
|
}
|
|
368
375
|
}
|
|
369
376
|
function lt() {
|
|
370
|
-
typeof window < "u" &&
|
|
377
|
+
typeof window < "u" && !C && (C = window.fetch, window.fetch = async function(t, i = {}) {
|
|
371
378
|
console.log("🔵 Enhanced fetch called for:", t), console.log("🔵 Initial init:", i);
|
|
372
|
-
let
|
|
373
|
-
for (const a of
|
|
379
|
+
let n = { ...i };
|
|
380
|
+
for (const a of $)
|
|
374
381
|
try {
|
|
375
382
|
if (a.length === 2) {
|
|
376
|
-
const r = new Headers(
|
|
377
|
-
console.log("🟡 Running callback-style middleware (length=2)"), await new Promise((
|
|
383
|
+
const r = new Headers(n.headers), c = Object.fromEntries(r.entries());
|
|
384
|
+
console.log("🟡 Running callback-style middleware (length=2)"), await new Promise((l, e) => {
|
|
378
385
|
try {
|
|
379
|
-
a(
|
|
380
|
-
if (
|
|
381
|
-
|
|
386
|
+
a(c, (s) => {
|
|
387
|
+
if (s)
|
|
388
|
+
e(s);
|
|
382
389
|
else {
|
|
383
|
-
const
|
|
384
|
-
Object.entries(
|
|
385
|
-
|
|
386
|
-
}),
|
|
390
|
+
const u = new Headers();
|
|
391
|
+
Object.entries(c).forEach(([p, f]) => {
|
|
392
|
+
f !== void 0 && u.set(p, f);
|
|
393
|
+
}), n.headers = u, l();
|
|
387
394
|
}
|
|
388
395
|
});
|
|
389
|
-
} catch (
|
|
390
|
-
|
|
396
|
+
} catch (s) {
|
|
397
|
+
e(s);
|
|
391
398
|
}
|
|
392
399
|
});
|
|
393
400
|
} else {
|
|
394
401
|
console.log("🟡 Running new-style RequestInit middleware (length=" + a.length + ")");
|
|
395
|
-
const r = await a(
|
|
396
|
-
r && typeof r == "object" ? (console.log("🟢 Middleware returned RequestInit:", r),
|
|
402
|
+
const r = await a(n, t);
|
|
403
|
+
r && typeof r == "object" ? (console.log("🟢 Middleware returned RequestInit:", r), n = r) : console.log("🟢 Middleware returned:", r);
|
|
397
404
|
}
|
|
398
405
|
} catch (r) {
|
|
399
406
|
throw console.error("🔴 Middleware error:", r), r;
|
|
400
407
|
}
|
|
401
|
-
console.log("🟢 Final init after middleware:",
|
|
402
|
-
const o = await
|
|
403
|
-
if (o.status >= 300 && o.status < 400 && i[
|
|
408
|
+
console.log("🟢 Final init after middleware:", n);
|
|
409
|
+
const o = await C(t, n);
|
|
410
|
+
if (o.status >= 300 && o.status < 400 && i[B]) {
|
|
404
411
|
const a = o.headers.get("location");
|
|
405
412
|
if (a && ct(a))
|
|
406
413
|
return window.location.href = a, o;
|
|
@@ -416,44 +423,42 @@ const ht = {
|
|
|
416
423
|
configUpdate(t) {
|
|
417
424
|
if (typeof t != "function")
|
|
418
425
|
throw new Error("Middleware must be a function");
|
|
419
|
-
|
|
426
|
+
$.push(t);
|
|
420
427
|
},
|
|
421
428
|
/**
|
|
422
429
|
* Reset all middleware
|
|
423
430
|
*/
|
|
424
431
|
reset() {
|
|
425
|
-
|
|
432
|
+
$.length = 0;
|
|
426
433
|
},
|
|
427
434
|
/**
|
|
428
435
|
* Get current middleware count (for debugging)
|
|
429
436
|
*/
|
|
430
437
|
getMiddlewareCount() {
|
|
431
|
-
return
|
|
438
|
+
return $.length;
|
|
432
439
|
}
|
|
433
440
|
};
|
|
434
|
-
let
|
|
441
|
+
let T;
|
|
435
442
|
async function wt(t, i) {
|
|
436
|
-
let
|
|
437
|
-
if (!
|
|
443
|
+
let n = window.__COMPONENT_DIR__ || i.component_dir;
|
|
444
|
+
if (!n && typeof n != "string")
|
|
438
445
|
throw new Error("No component directory provided");
|
|
439
446
|
let o = window.__ROUTING__;
|
|
440
|
-
if (
|
|
447
|
+
if (T = Q(o), window && window.location) {
|
|
441
448
|
const a = (window.location.pathname || "/").split("?")[0];
|
|
442
449
|
console.log(`Current pathname: ${a}`);
|
|
443
|
-
const r =
|
|
444
|
-
let
|
|
445
|
-
if (r &&
|
|
446
|
-
console.log("Found route:",
|
|
447
|
-
const
|
|
448
|
-
it(), at(t,
|
|
449
|
-
} else
|
|
450
|
-
console.
|
|
451
|
-
return;
|
|
452
|
-
}
|
|
450
|
+
const r = T.find((l) => l.parser(a));
|
|
451
|
+
let c = r ? o.find((l) => l.path === r.pattern) : null;
|
|
452
|
+
if (r && c) {
|
|
453
|
+
console.log("Found route:", c);
|
|
454
|
+
const l = r.parser(a) || {}, e = new URLSearchParams(window.location.search), s = Object.fromEntries(e.entries()) || {}, u = { ...l, ...s };
|
|
455
|
+
it(), at(t, n, c, u, l, s), st(n, o, T);
|
|
456
|
+
} else
|
|
457
|
+
console.warn("No matching route found for:", a);
|
|
453
458
|
}
|
|
454
459
|
}
|
|
455
460
|
export {
|
|
456
|
-
|
|
461
|
+
j as MANIFEST_STORE,
|
|
457
462
|
st as bootstrap_events,
|
|
458
463
|
wt as createApp,
|
|
459
464
|
ht as fetch,
|
|
@@ -461,6 +466,6 @@ export {
|
|
|
461
466
|
y as page,
|
|
462
467
|
vt as shadowUrl,
|
|
463
468
|
it as updateManifestStore,
|
|
464
|
-
|
|
469
|
+
U as updateRoute
|
|
465
470
|
};
|
|
466
471
|
//# sourceMappingURL=client.mjs.map
|