Skip to content

Commit e7b0c88

Browse files
authored
tidy up types (#622)
1 parent cdc468d commit e7b0c88

File tree

4 files changed

+26
-38
lines changed

4 files changed

+26
-38
lines changed

src/lib/client/adapters/webcontainer/index.js

+13-23
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ import * as yootils from 'yootils';
55
import { escape_html, get_depth } from '../../../utils.js';
66
import { ready } from '../common/index.js';
77

8-
/**
9-
* @typedef {import("../../../../routes/tutorial/[slug]/state.js").CompilerWarning} CompilerWarning
10-
*/
11-
128
const converter = new AnsiToHtml({
139
fg: 'var(--sk-text-3)'
1410
});
@@ -21,7 +17,7 @@ let vm;
2117
* @param {import('svelte/store').Writable<Error | null>} error
2218
* @param {import('svelte/store').Writable<{ value: number, text: string }>} progress
2319
* @param {import('svelte/store').Writable<string[]>} logs
24-
* @param {import('svelte/store').Writable<Record<string, CompilerWarning[]>>} warnings
20+
* @param {import('svelte/store').Writable<Record<string, import('$lib/types').Warning[]>>} warnings
2521
* @returns {Promise<import('$lib/types').Adapter>}
2622
*/
2723
export async function create(base, error, progress, logs, warnings) {
@@ -48,9 +44,9 @@ export async function create(base, error, progress, logs, warnings) {
4844
}
4945
});
5046

51-
/** @type {Record<string, CompilerWarning[]>} */
47+
/** @type {Record<string, import('$lib/types').Warning[]>} */
5248
let $warnings;
53-
warnings.subscribe((value) => $warnings = value);
49+
warnings.subscribe((value) => ($warnings = value));
5450

5551
/** @type {any} */
5652
let timeout;
@@ -67,21 +63,19 @@ export async function create(base, error, progress, logs, warnings) {
6763
if (chunk === '\x1B[1;1H') {
6864
// clear screen
6965
logs.set([]);
70-
7166
} else if (chunk?.startsWith('svelte:warnings:')) {
72-
/** @type {CompilerWarning} */
67+
/** @type {import('$lib/types').Warning} */
7368
const warn = JSON.parse(chunk.slice(16));
7469
const current = $warnings[warn.filename];
7570

7671
if (!current) {
7772
$warnings[warn.filename] = [warn];
78-
// the exact same warning may be given multiple times in a row
79-
} else if (!current.some((s) => (s.code === warn.code && s.pos === warn.pos))) {
73+
// the exact same warning may be given multiple times in a row
74+
} else if (!current.some((s) => s.code === warn.code && s.pos === warn.pos)) {
8075
current.push(warn);
8176
}
8277

8378
schedule_to_update_warning(100);
84-
8579
} else {
8680
const log = converter.toHtml(escape_html(chunk)).replace(/\n/g, '<br>');
8781
logs.update(($logs) => [...$logs, log]);
@@ -179,16 +173,14 @@ export async function create(base, error, progress, logs, warnings) {
179173
// Don't delete the node_modules folder when switching from one exercise to another
180174
// where, as this crashes the dev server.
181175
const to_delete = [
182-
...Array.from(current_stubs.keys()).filter(
183-
(s) => !s.startsWith('/node_modules')
184-
),
176+
...Array.from(current_stubs.keys()).filter((s) => !s.startsWith('/node_modules')),
185177
...force_delete
186178
];
187179

188180
// initialize warnings of written files
189181
to_write
190182
.filter((stub) => stub.type === 'file' && $warnings[stub.name])
191-
.forEach((stub) => $warnings[stub.name] = []);
183+
.forEach((stub) => ($warnings[stub.name] = []));
192184
// remove warnings of deleted files
193185
to_delete
194186
.filter((stubname) => $warnings[stubname])
@@ -201,8 +193,8 @@ export async function create(base, error, progress, logs, warnings) {
201193
// For some reason, server-ready is fired again when the vite dev server is restarted.
202194
// We need to wait for it to finish before we can continue, else we might
203195
// request files from Vite before it's ready, leading to a timeout.
204-
const will_restart = launched &&
205-
(to_write.some(is_config) || to_delete.some(is_config_path));
196+
const will_restart =
197+
launched && (to_write.some(is_config) || to_delete.some(is_config_path));
206198
const promise = will_restart ? wait_for_restart_vite() : Promise.resolve();
207199

208200
for (const file of to_delete) {
@@ -223,14 +215,13 @@ export async function create(base, error, progress, logs, warnings) {
223215
});
224216
},
225217
update: (file) => {
226-
227218
let queue = q_per_file.get(file.name);
228219
if (queue) {
229220
queue.push(file);
230221
return Promise.resolve(false);
231222
}
232223

233-
q_per_file.set(file.name, queue = [file]);
224+
q_per_file.set(file.name, (queue = [file]));
234225

235226
return q.add(async () => {
236227
/** @type {import('@webcontainer/api').FileSystemTree} */
@@ -257,10 +248,9 @@ export async function create(base, error, progress, logs, warnings) {
257248
const will_restart = is_config(file);
258249

259250
while (queue && queue.length > 0) {
260-
261251
// if the file is updated many times rapidly, get the most recently updated one
262252
const file = /** @type {import('$lib/types').FileStub} */ (queue.pop());
263-
queue.length = 0
253+
queue.length = 0;
264254

265255
tree[basename] = to_file(file);
266256

@@ -280,7 +270,7 @@ export async function create(base, error, progress, logs, warnings) {
280270
await new Promise((f) => setTimeout(f, 50));
281271
}
282272

283-
q_per_file.delete(file.name)
273+
q_per_file.delete(file.name);
284274

285275
return will_restart;
286276
});

src/lib/types/index.d.ts

+11
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,14 @@ export interface EditingConstraints {
7878
create: Set<string>;
7979
remove: Set<string>;
8080
}
81+
82+
// TODO replace with `Warning` from `svelte/compiler`
83+
export interface Warning {
84+
code: string;
85+
start: { line: number; column: number; character: number };
86+
end: { line: number; column: number; character: number };
87+
pos: number;
88+
filename: string;
89+
frame: string;
90+
message: string;
91+
}

src/routes/tutorial/[slug]/adapter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const error = writable(null);
1515
/** @type {import('svelte/store').Writable<string[]>} */
1616
export const logs = writable([]);
1717

18-
/** @type {import('svelte/store').Writable<Record<string, import('./state').CompilerWarning[]>>} */
18+
/** @type {import('svelte/store').Writable<Record<string, import('$lib/types').Warning[]>>} */
1919
export const warnings = writable({});
2020

2121
/** @type {Promise<import('$lib/types').Adapter>} */

src/routes/tutorial/[slug]/state.js

+1-14
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,6 @@ import * as adapter from './adapter.js';
66
* @typedef {import('svelte/store').Writable<T>} Writable<T>
77
*/
88

9-
// TODO would be nice if svelte exported this type (maybe it does already?)
10-
/**
11-
* @typedef {{
12-
* code: string;
13-
* start: { line: number, column: number, character: number };
14-
* end: { line: number, column: number, character: number };
15-
* pos: number;
16-
* filename: string;
17-
* frame: string;
18-
* message: string;
19-
* }} CompilerWarning
20-
*/
21-
229
/** @type {Writable<import('$lib/types').Stub[]>} */
2310
export const files = writable([]);
2411

@@ -98,4 +85,4 @@ export function create_directories(name, files) {
9885
}
9986

10087
return directories;
101-
}
88+
}

0 commit comments

Comments
 (0)