deno.land / x / solidstart@v1.0.0-rc.0 / config / fs-router.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import { analyzeModule, BaseFileSystemRouter, cleanPath } from "vinxi/fs-router";
export class SolidStartClientFileRouter extends BaseFileSystemRouter { toPath(src) { const routePath = cleanPath(src, this.config) // remove the initial slash .slice(1) .replace(/index$/, "") .replace(/\[([^\/]+)\]/g, (_, m) => { if (m.length > 3 && m.startsWith("...")) { return `*${m.slice(3)}`; } if (m.length > 2 && m.startsWith("[") && m.endsWith("]")) { return `:${m.slice(1, -1)}?`; } return `:${m}`; });
return routePath?.length > 0 ? `/${routePath}` : "/"; }
toRoute(src) { let path = this.toPath(src);
if (src.endsWith(".md") || src.endsWith(".mdx")) { return { $component: { src: src, pick: ["$css"] }, $$route: undefined, path, filePath: src }; }
const [_, exports] = analyzeModule(src); const hasDefault = exports.find(e => e.n === "default"); const hasRouteConfig = exports.find(e => e.n === "route"); if (hasDefault) { return { $component: { src: src, pick: ["default", "$css"] }, $$route: hasRouteConfig ? { src: src, pick: ["route"] } : undefined, path, filePath: src }; } }}
const HTTP_METHODS = ["GET", "POST", "PUT", "DELETE", "PATCH"];function createHTTPHandlers(src, exports) { const handlers = {}; for (const exp of exports) { if (HTTP_METHODS.includes(exp.n)) { handlers[`$${exp.n}`] = { src: src, pick: [exp.n] }; } } return handlers;}
export class SolidStartServerFileRouter extends BaseFileSystemRouter { toPath(src) { const routePath = cleanPath(src, this.config) // remove the initial slash .slice(1) .replace(/index$/, "") .replace(/\[([^\/]+)\]/g, (_, m) => { if (m.length > 3 && m.startsWith("...")) { return `*${m.slice(3)}`; } if (m.length > 2 && m.startsWith("[") && m.endsWith("]")) { return `:${m.slice(1, -1)}?`; } return `:${m}`; });
return routePath?.length > 0 ? `/${routePath}` : "/"; }
toRoute(src) { let path = this.toPath(src); if (src.endsWith(".md") || src.endsWith(".mdx")) { return { $component: { src: src, pick: ["$css"] }, $$route: undefined, path, filePath: src }; }
const [_, exports] = analyzeModule(src); const hasRouteConfig = exports.find(e => e.n === "route"); const hasDefault = exports.find(e => e.n === "default"); const hasAPIRoutes = exports.find(exp => HTTP_METHODS.includes(exp.n)); if (hasDefault || hasAPIRoutes) { return { $component: hasDefault ? { src: src, pick: ["default", "$css"] } : undefined, $$route: hasRouteConfig ? { src: src, pick: ["route"] } : undefined, ...createHTTPHandlers(src, exports), path, filePath: src }; } }}
solidstart

Version Info

Tagged at
a month ago