Skip to content

Commit a5958f5

Browse files
committed
cleanup
1 parent 13758b2 commit a5958f5

File tree

3 files changed

+23
-26
lines changed

3 files changed

+23
-26
lines changed

src/client/index.js

+16-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
import { highlight } from './highlight.js';
22
import { addListener } from './listener.js';
33
// import { profiler } from './profiler.js';
4-
import { getNode } from './svelte.js';
5-
6-
// @ts-ignore - possibly find an alternative
7-
window.__svelte_devtools_inject_state = function (id, key, value) {
8-
const { detail: component } = getNode(id) || {};
9-
component && component.$inject_state({ [key]: value });
10-
};
11-
12-
// @ts-ignore - possibly find an alternative
13-
window.__svelte_devtools_select_element = function (element) {
14-
const node = getNode(element);
15-
if (node) send('inspect', { node: serialize(node) });
4+
import { nodes } from './svelte.js';
5+
6+
// @ts-ignore - for the app to call with `eval`
7+
window['#SvelteDevTools'] = {
8+
/**
9+
* @param {string} id
10+
* @param {string} key
11+
* @param {any} value
12+
*/
13+
inject(id, key, value) {
14+
const { detail: component } = nodes.map.get(id) || {};
15+
component && component.$inject_state({ [key]: value });
16+
},
1617
};
1718

1819
const previous = {
@@ -56,7 +57,7 @@ const inspect = {
5657
click(event) {
5758
event.preventDefault();
5859
document.removeEventListener('mousemove', inspect.handle, true);
59-
const node = getNode(/** @type {Node} */ (event.target));
60+
const node = nodes.map.get(/** @type {Node} */ (event.target));
6061
if (node) send('bridge::ext/inspect', { node: serialize(node) });
6162
previous.clear();
6263
},
@@ -67,11 +68,11 @@ window.addEventListener('message', ({ data, source }) => {
6768
if (source !== window || data?.source !== 'svelte-devtools') return;
6869

6970
if (data.type === 'bridge::ext/select') {
70-
const node = getNode(data.payload);
71+
const node = nodes.map.get(data.payload);
7172
// @ts-expect-error - saved for `devtools.inspect()`
7273
if (node) window.$n = node.detail;
7374
} else if (data.type === 'bridge::ext/highlight') {
74-
const node = getNode(data.payload);
75+
const node = nodes.map.get(data.payload);
7576
return highlight(node);
7677
} else if (data.type === 'bridge::ext/inspect') {
7778
switch (data.payload) {

src/client/svelte.js

+3-8
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,8 @@ import { listeners } from './listener.js';
44
/** @type {undefined | SvelteBlockDetail} */
55
let current_block;
66

7-
/** @param {string | Node} id */
8-
export function getNode(id) {
9-
return nodes.map.get(id);
10-
}
11-
12-
const nodes = {
13-
/** @type {Map<any, SvelteBlockDetail>} */
7+
export const nodes = {
8+
/** @type {Map<string | object | Node, SvelteBlockDetail>} */
149
map: new Map(),
1510

1611
/** @param {{ node: SvelteBlockDetail; target?: Node; anchor?: Node }} opts */
@@ -24,7 +19,7 @@ const nodes = {
2419
}
2520
node.parent = target;
2621

27-
const sibling = this.map.get(anchor);
22+
const sibling = anchor && this.map.get(anchor);
2823
if (target) {
2924
const index = target.children.findIndex((n) => n === sibling);
3025
if (index === -1) target.children.push(node);

src/lib/panel/PropertyList.svelte

+4-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
const errors: Record<string, string | undefined> = {};
99
function change(key: string, value: any) {
1010
chrome.devtools.inspectedWindow.eval(
11-
`__svelte_devtools_inject_state("${id}", "${key}", ${value})`,
11+
`window['#SvelteDevTools'].inject("${id}", "${key}", ${value})`,
1212
(_, error) => {
13-
errors[key] =
14-
error && error.isException ? error.value.slice(0, error.value.indexOf('\n')) : undefined;
13+
errors[key] = error?.isException
14+
? error.value.slice(0, error.value.indexOf('\n'))
15+
: undefined;
1516
},
1617
);
1718
}

0 commit comments

Comments
 (0)