Skip to content

Commit 67bc9a9

Browse files
committed
chore: refactor the Welcome components to runes
1 parent 160a940 commit 67bc9a9

File tree

2 files changed

+68
-44
lines changed

2 files changed

+68
-44
lines changed

src/lib/components/modes/tablemode/TableModeWelcome.svelte

+45-31
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<svelte:options immutable={true} />
2-
31
<script lang="ts">
42
import type { JSONPath } from 'immutable-json-patch'
53
import { getIn, isJSONArray, isJSONObject } from 'immutable-json-patch'
@@ -10,40 +8,56 @@
108
import { isEmpty } from 'lodash-es'
119
import { stringifyJSONPath } from '$lib/utils/pathUtils.js'
1210
13-
export let text: string | undefined
14-
export let json: unknown | undefined
15-
export let readOnly: boolean
16-
export let parser: JSONParser
17-
export let openJSONEditorModal: (path: JSONPath) => void
18-
export let extractPath: (path: JSONPath) => void
19-
export let onChangeMode: OnChangeMode
20-
export let onClick: () => void
11+
interface Props {
12+
text: string | undefined
13+
json: unknown | undefined
14+
readOnly: boolean
15+
parser: JSONParser
16+
openJSONEditorModal: (path: JSONPath) => void
17+
extractPath: (path: JSONPath) => void
18+
onChangeMode: OnChangeMode
19+
onClick: () => void
20+
}
21+
22+
const {
23+
text,
24+
json,
25+
readOnly,
26+
parser,
27+
openJSONEditorModal,
28+
extractPath,
29+
onChangeMode,
30+
onClick
31+
}: Props = $props()
2132
22-
let nestedArrayPaths: JSONPath[]
23-
$: nestedArrayPaths = json
24-
? findNestedArrays(json)
25-
.slice(0, 99)
26-
.filter((path) => path.length > 0)
27-
: []
28-
$: hasNestedArrays = !isEmpty(nestedArrayPaths)
29-
$: isEmptyDocument = json === undefined && (text === '' || text === undefined)
33+
const nestedArrayPaths: JSONPath[] = $derived(
34+
json
35+
? findNestedArrays(json)
36+
.slice(0, 99)
37+
.filter((path) => path.length > 0)
38+
: []
39+
)
40+
const hasNestedArrays = $derived(!isEmpty(nestedArrayPaths))
41+
const isEmptyDocument = $derived(json === undefined && (text === '' || text === undefined))
3042
31-
$: documentType = hasNestedArrays
32-
? 'Object with nested arrays'
33-
: isEmptyDocument
34-
? 'An empty document'
35-
: isJSONObject(json)
36-
? 'An object'
37-
: isJSONArray(json)
38-
? 'An empty array' // note: can also be an array with objects but without properties
39-
: `A ${valueType(json, parser)}`
43+
const documentType = $derived(
44+
hasNestedArrays
45+
? 'Object with nested arrays'
46+
: isEmptyDocument
47+
? 'An empty document'
48+
: isJSONObject(json)
49+
? 'An object'
50+
: isJSONArray(json)
51+
? 'An empty array' // note: can also be an array with objects but without properties
52+
: `A ${valueType(json, parser)}`
53+
)
4054
4155
function countItems(nestedArrayPath: JSONPath): number {
4256
return (getIn(json, nestedArrayPath) as JSONPath).length
4357
}
4458
</script>
4559

46-
<div class="jse-table-mode-welcome" on:click={() => onClick()} role="none">
60+
<div class="jse-table-mode-welcome" onclick={() => onClick()} role="none">
4761
<div class="jse-space jse-before"></div>
4862

4963
<div class="jse-nested-arrays">
@@ -71,22 +85,22 @@
7185
<button
7286
type="button"
7387
class="jse-nested-array-action"
74-
on:click={() => openJSONEditorModal(nestedArrayPath)}
88+
onclick={() => openJSONEditorModal(nestedArrayPath)}
7589
>
7690
{readOnly ? 'View' : 'Edit'}
7791
</button>
7892
{#if !readOnly}
7993
<button
8094
type="button"
8195
class="jse-nested-array-action"
82-
on:click={() => extractPath(nestedArrayPath)}
96+
onclick={() => extractPath(nestedArrayPath)}
8397
>
8498
Extract
8599
</button>
86100
{/if}
87101
</div>
88102
{/each}
89-
<button type="button" class="jse-nested-array-action" on:click={() => onChangeMode(Mode.tree)}>
103+
<button type="button" class="jse-nested-array-action" onclick={() => onChangeMode(Mode.tree)}>
90104
Switch to tree mode
91105
</button>
92106
</div>

src/lib/components/modes/treemode/Welcome.svelte

+23-13
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,37 @@
1-
<svelte:options immutable={true} />
2-
31
<script lang="ts">
4-
export let readOnly: boolean
5-
export let onCreateArray: () => void
6-
export let onCreateObject: () => void
7-
export let onClick: () => void
2+
interface Props {
3+
readOnly: boolean
4+
onCreateArray: () => void
5+
onCreateObject: () => void
6+
onClick: () => void
7+
}
8+
9+
const { readOnly, onCreateArray, onCreateObject, onClick }: Props = $props()
10+
11+
function handleCreateObject(event: MouseEvent) {
12+
event.stopPropagation()
13+
onCreateObject()
14+
}
15+
16+
function handleCreateArray(event: MouseEvent) {
17+
event.stopPropagation()
18+
onCreateArray()
19+
}
820
</script>
921

10-
<div class="jse-welcome" on:click={() => onClick()} role="none">
22+
<div class="jse-welcome" onclick={() => onClick()} role="none">
1123
<div class="jse-space jse-before"></div>
1224
<div class="jse-contents">
1325
<div class="jse-welcome-title">Empty document</div>
1426
{#if !readOnly}
1527
<div class="jse-welcome-info">
1628
You can paste clipboard data using <b>Ctrl+V</b>, or use the following options:
1729
</div>
18-
<button
19-
title={"Create an empty JSON object (press '{')"}
20-
on:click|stopPropagation={() => onCreateObject()}>Create object</button
30+
<button title={"Create an empty JSON object (press '{')"} onclick={handleCreateObject}
31+
>Create object</button
2132
>
22-
<button
23-
title={"Create an empty JSON array (press '[')"}
24-
on:click|stopPropagation={() => onCreateArray()}>Create array</button
33+
<button title={"Create an empty JSON array (press '[')"} onclick={handleCreateArray}
34+
>Create array</button
2535
>
2636
{/if}
2737
</div>

0 commit comments

Comments
 (0)