|
1 | 1 | <script>
|
| 2 | + import { EditorState } from '@codemirror/state'; |
2 | 3 | import { SplitPane } from '@rich_harris/svelte-split-pane';
|
3 | 4 | import { BROWSER } from 'esm-env';
|
4 | 5 | import { createEventDispatcher } from 'svelte';
|
|
9 | 10 | import InputOutputToggle from './InputOutputToggle.svelte';
|
10 | 11 | import Output from './Output/Output.svelte';
|
11 | 12 | import { set_repl_context } from './context.js';
|
12 |
| - import { get_full_filename, sleep } from './utils.js'; |
| 13 | + import { get_full_filename } from './utils.js'; |
13 | 14 |
|
14 | 15 | export let packagesUrl = 'https://unpkg.com';
|
15 | 16 | export let svelteUrl = `${packagesUrl}/svelte`;
|
|
50 | 51 |
|
51 | 52 | injectedCSS = data.css || '';
|
52 | 53 |
|
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(); |
54 | 59 |
|
55 |
| - EDITOR_STATE_MAP.set(get_full_filename(data.files[0]), $module_editor?.getEditorState()); |
| 60 | + dispatch('change', { files: $files }); |
56 | 61 | }
|
57 | 62 |
|
58 | 63 | export function markSaved() {
|
59 | 64 | $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; |
64 | 65 | }
|
65 | 66 |
|
66 | 67 | /** @param {{ files: import('./types').File[], css?: string }} data */
|
|
84 | 85 | $module_editor?.clearEditorState();
|
85 | 86 | }
|
86 | 87 |
|
| 88 | + populate_editor_state(); |
| 89 | +
|
87 | 90 | dispatch('change', { files: $files });
|
88 | 91 | }
|
89 | 92 |
|
|
94 | 97 | * @typedef {import('./types').ReplContext} ReplContext
|
95 | 98 | */
|
96 | 99 |
|
97 |
| - /** @type {import('svelte/types/compiler').CompileOptions} */ |
| 100 | + /** @type {import('svelte/compiler').CompileOptions} */ |
98 | 101 | const DEFAULT_COMPILE_OPTIONS = {
|
99 | 102 | generate: 'dom',
|
100 | 103 | dev: false,
|
|
196 | 199 | $module_editor?.clearEditorState();
|
197 | 200 | }
|
198 | 201 |
|
199 |
| - EDITOR_STATE_MAP.set(filename, $module_editor?.getEditorState()); |
200 |
| -
|
201 | 202 | $output?.set($selected, $compile_options);
|
202 | 203 |
|
203 | 204 | is_select_changing = false;
|
|
251 | 252 | EDITOR_STATE_MAP.clear();
|
252 | 253 | }
|
253 | 254 |
|
| 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 | +
|
254 | 266 | $: if ($output && $selected) {
|
255 | 267 | $output?.update?.($selected, $compile_options);
|
256 | 268 | }
|
|
1 commit comments
vercel[bot] commentedon Jun 28, 2023
Successfully deployed to the following URLs:
hn – ./
hn-git-master-svelte.vercel.app
sites-zeta.vercel.app
hn-svelte.vercel.app
hn.svelte.dev