Skip to content

Commit 4918664

Browse files
paoloricciutiPuruVJ
andauthoredJun 28, 2023
(fix) loading files from repl json broke the REPL upon renaming (#506)
* (fix) loading files from repl json broke the REPL upon renaming * Add changesets * Clean imports * Minor fixes --------- Co-authored-by: Puru Vijay <[email protected]>
1 parent f89a8b3 commit 4918664

File tree

4 files changed

+34
-11
lines changed

4 files changed

+34
-11
lines changed
 

‎.changeset/proud-wombats-buy.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@sveltejs/repl': patch
3+
---
4+
5+
(fix) loading files in editor state map upon loading

‎packages/repl/src/lib/Repl.svelte

+22-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<script>
2+
import { EditorState } from '@codemirror/state';
23
import { SplitPane } from '@rich_harris/svelte-split-pane';
34
import { BROWSER } from 'esm-env';
45
import { createEventDispatcher } from 'svelte';
@@ -9,7 +10,7 @@
910
import InputOutputToggle from './InputOutputToggle.svelte';
1011
import Output from './Output/Output.svelte';
1112
import { set_repl_context } from './context.js';
12-
import { get_full_filename, sleep } from './utils.js';
13+
import { get_full_filename } from './utils.js';
1314
1415
export let packagesUrl = 'https://unpkg.com';
1516
export let svelteUrl = `${packagesUrl}/svelte`;
@@ -50,17 +51,17 @@
5051
5152
injectedCSS = data.css || '';
5253
53-
await sleep(50);
54+
// when we set new files we also populate the EDITOR_STATE_MAP
55+
// with a new state for each file containing the source as docs
56+
// this allows the editor to behave correctly when renaming a tab
57+
// after having loaded the files externally
58+
populate_editor_state();
5459
55-
EDITOR_STATE_MAP.set(get_full_filename(data.files[0]), $module_editor?.getEditorState());
60+
dispatch('change', { files: $files });
5661
}
5762
5863
export function markSaved() {
5964
$files = $files.map((val) => ({ ...val, modified: false }));
60-
61-
// if (!$selected) return;
62-
63-
// const current = $files.find(val => get_full_filename(val) === $selected_name).modified = false;
6465
}
6566
6667
/** @param {{ files: import('./types').File[], css?: string }} data */
@@ -84,6 +85,8 @@
8485
$module_editor?.clearEditorState();
8586
}
8687
88+
populate_editor_state();
89+
8790
dispatch('change', { files: $files });
8891
}
8992
@@ -94,7 +97,7 @@
9497
* @typedef {import('./types').ReplContext} ReplContext
9598
*/
9699
97-
/** @type {import('svelte/types/compiler').CompileOptions} */
100+
/** @type {import('svelte/compiler').CompileOptions} */
98101
const DEFAULT_COMPILE_OPTIONS = {
99102
generate: 'dom',
100103
dev: false,
@@ -196,8 +199,6 @@
196199
$module_editor?.clearEditorState();
197200
}
198201
199-
EDITOR_STATE_MAP.set(filename, $module_editor?.getEditorState());
200-
201202
$output?.set($selected, $compile_options);
202203
203204
is_select_changing = false;
@@ -251,6 +252,17 @@
251252
EDITOR_STATE_MAP.clear();
252253
}
253254
255+
function populate_editor_state() {
256+
for (const file of $files) {
257+
EDITOR_STATE_MAP.set(
258+
get_full_filename(file),
259+
EditorState.create({
260+
doc: file.source
261+
}).toJSON()
262+
);
263+
}
264+
}
265+
254266
$: if ($output && $selected) {
255267
$output?.update?.($selected, $compile_options);
256268
}

‎packages/repl/src/lib/types.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { EditorState } from '@codemirror/state';
22
import { OutputChunk } from '@rollup/browser';
33
import type { Readable, Writable } from 'svelte/store';
4-
import { CompileOptions } from 'svelte/types/compiler';
4+
import { CompileOptions } from 'svelte/compiler';
55

66
export type Lang = 'js' | 'svelte' | 'json' | 'md' | 'css' | (string & Record<never, never>);
77

‎packages/repl/src/routes/+page.svelte

+6
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,17 @@
1515
source:
1616
`<scr` +
1717
`ipt>
18+
import B from './B.svelte';
1819
let name = 'world';
1920
</scr` +
2021
`ipt>
2122
2223
<h1>Hello {name}!</h1>`
24+
},
25+
{
26+
name: 'B',
27+
type: 'svelte',
28+
source: `B`
2329
}
2430
]
2531
});

1 commit comments

Comments
 (1)

vercel[bot] commented on Jun 28, 2023

@vercel[bot]

Successfully deployed to the following URLs:

hn – ./

hn-git-master-svelte.vercel.app
sites-zeta.vercel.app
hn-svelte.vercel.app
hn.svelte.dev

Please sign in to comment.