|
1 |
| -<svelte:options immutable={true} /> |
2 |
| - |
3 | 1 | <script lang="ts">
|
4 | 2 | import type { JSONPath } from 'immutable-json-patch'
|
5 | 3 | import { getIn, isJSONArray, isJSONObject } from 'immutable-json-patch'
|
|
10 | 8 | import { isEmpty } from 'lodash-es'
|
11 | 9 | import { stringifyJSONPath } from '$lib/utils/pathUtils.js'
|
12 | 10 |
|
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() |
21 | 32 |
|
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)) |
30 | 42 |
|
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 | + ) |
40 | 54 |
|
41 | 55 | function countItems(nestedArrayPath: JSONPath): number {
|
42 | 56 | return (getIn(json, nestedArrayPath) as JSONPath).length
|
43 | 57 | }
|
44 | 58 | </script>
|
45 | 59 |
|
46 |
| -<div class="jse-table-mode-welcome" on:click={() => onClick()} role="none"> |
| 60 | +<div class="jse-table-mode-welcome" onclick={() => onClick()} role="none"> |
47 | 61 | <div class="jse-space jse-before"></div>
|
48 | 62 |
|
49 | 63 | <div class="jse-nested-arrays">
|
|
71 | 85 | <button
|
72 | 86 | type="button"
|
73 | 87 | class="jse-nested-array-action"
|
74 |
| - on:click={() => openJSONEditorModal(nestedArrayPath)} |
| 88 | + onclick={() => openJSONEditorModal(nestedArrayPath)} |
75 | 89 | >
|
76 | 90 | {readOnly ? 'View' : 'Edit'}
|
77 | 91 | </button>
|
78 | 92 | {#if !readOnly}
|
79 | 93 | <button
|
80 | 94 | type="button"
|
81 | 95 | class="jse-nested-array-action"
|
82 |
| - on:click={() => extractPath(nestedArrayPath)} |
| 96 | + onclick={() => extractPath(nestedArrayPath)} |
83 | 97 | >
|
84 | 98 | Extract
|
85 | 99 | </button>
|
86 | 100 | {/if}
|
87 | 101 | </div>
|
88 | 102 | {/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)}> |
90 | 104 | Switch to tree mode
|
91 | 105 | </button>
|
92 | 106 | </div>
|
|
0 commit comments