-
Notifications
You must be signed in to change notification settings - Fork 742
Expand file tree
/
Copy pathdev_server.ts
More file actions
201 lines (175 loc) · 5.8 KB
/
dev_server.ts
File metadata and controls
201 lines (175 loc) · 5.8 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
import {
type DevEnvironment,
isRunnableDevEnvironment,
type Plugin,
} from "vite";
import * as path from "@std/path";
import { ASSET_CACHE_BUST_KEY } from "fresh/internal";
import { createRequest, sendResponse } from "@remix-run/node-fetch-server";
import { hashCode } from "../shared.ts";
interface FetchHandler {
default: {
fetch: (req: Request) => Promise<Response>;
};
}
export function devServer(): Plugin[] {
let publicDir = "";
return [
{
name: "fresh:dev_server",
sharedDuringBuild: true,
configResolved(config) {
publicDir = config.publicDir;
},
configureServer(server) {
const IGNORE_URLS = /^\/(@(vite|fs|id)|\.vite)\//;
server.middlewares.use(async (nodeReq, nodeRes, next) => {
const serverCfg = server.config.server;
const protocol = serverCfg.https ? "https" : "http";
const host = serverCfg.host ? serverCfg.host : "localhost";
const port = serverCfg.port;
const url = new URL(
`${protocol}://${host}:${port}${nodeReq.url ?? "/"}`,
);
// Don't cache in dev
url.searchParams.delete(ASSET_CACHE_BUST_KEY);
// Check if it's a vite url
if (
IGNORE_URLS.test(url.pathname) ||
server.environments.client.moduleGraph.urlToModuleMap.has(
url.pathname,
) ||
server.environments.ssr.moduleGraph.urlToModuleMap.has(
url.pathname,
) ||
url.pathname === "/.well-known/appspecific/com.chrome.devtools.json"
) {
return next();
}
// Check if it's a static file first
const staticFilePath = path.join(publicDir, url.pathname.slice(1));
try {
const stat = await Deno.stat(staticFilePath);
if (stat.isFile) {
return next();
}
} catch {
// Ignore
}
// Check if it's a static/index.html file
const staticFilePathIndex = path.join(
publicDir,
url.pathname.slice(1),
"index.html",
);
try {
const content = await Deno.readTextFile(staticFilePathIndex);
nodeRes.setHeader("Content-Type", "text/html; charset=utf-8");
nodeRes.end(content);
return;
} catch {
// Ignore
}
if (!isRunnableDevEnvironment(server.environments.ssr)) return;
try {
const mod = await server.environments.ssr.runner.import<unknown>(
"fresh:server_entry",
) as FetchHandler;
const req = createRequest(nodeReq, nodeRes);
const res = await mod.default.fetch(req);
// Collect css eagerly to avoid FOUC. This is a workaround for
// Vite not supporting css natively. It's a bit hacky, but
// gets the job done.
if (
url.pathname !== "/__inspect" &&
res.headers.get("Content-Type")?.includes("text/html")
) {
const collected = await collectCss(
"fresh:client-entry",
server.environments.client,
);
let html = await res.text();
const styles = collected.join("\n");
html = html.replace("</head>", styles + "</head>");
const newRes = new Response(html, {
status: res.status,
headers: res.headers,
});
await sendResponse(nodeRes, newRes);
return;
}
await sendResponse(nodeRes, res);
} catch (err) {
return next(err);
}
});
},
},
{
name: "fresh:server_hmr",
applyToEnvironment(env) {
return env.config.consumer === "server";
},
hotUpdate(options) {
const clientMod = options.server.environments.client.moduleGraph
.getModulesByFile(options.file);
if (clientMod !== undefined) {
// Vite can do HMR here
return;
}
const ssrMod = options.server.environments.ssr.moduleGraph
.getModulesByFile(options.file);
if (ssrMod !== undefined) {
// SSR-only module. Might still be a route.
// TODO: Implement proper ssr hmr
options.server.hot.send("fresh:reload");
}
},
},
];
}
async function collectCss(
id: string,
env: DevEnvironment,
) {
const seen = new Set<string>();
const queue: string[] = [id];
const out: string[] = [];
let current: string | undefined;
while ((current = queue.pop()) !== undefined) {
if (seen.has(current)) continue;
seen.add(current);
let mod = env.moduleGraph.idToModuleMap.get(current);
if (mod === undefined || mod.transformResult === null) {
// During development assets are loaded lazily, so we need
// to trigger processing manually.
await env.fetchModule(current);
mod = env.moduleGraph.idToModuleMap.get(current) ??
env.moduleGraph.idToModuleMap.get(`\0${current}`);
if (mod === undefined) continue;
}
if (
(current.endsWith(".scss") ||
current.endsWith(".css")) && mod.transformResult
) {
// Since vite stores everything as a JS file we need to
// extract the CSS out of the JS
const match = mod.transformResult.code.match(
/__vite__css\s+=\s+("(?:\\\\|\\"|[^"])*")/,
);
if (match !== null) {
const content = JSON.parse(match[1]);
out.push(
`<style type="text/css" vite-module-id="${
hashCode(id)
}">${content}</style>`,
);
}
}
mod.importedModules.forEach((m) => {
if (m.id === null) return;
queue.push(m.id);
});
}
return out;
}