@@ -14,24 +14,41 @@ const emit = defineEmits<{
14
14
15
15
const isOpen = useVModel (props , ' open' , emit , { passive: true })
16
16
const colorMode = useColorMode ()
17
- const proxy = ref ()
17
+ const proxy = shallowRef ()
18
+ const error = shallowRef ()
18
19
19
20
const state = useState (props .name )
20
- if (props .state )
21
- proxy .value = JSON .parse (JSON .stringify (props .state ))
22
- else if (typeof props .state === ' number' || typeof props .state !== ' string' )
23
- proxy .value = props .state
24
21
25
- const watcher = watchPausable (
26
- proxy ,
27
- (value ) => {
28
- if (typeof value !== ' number' && typeof value !== ' string' )
29
- deepSync (value , props .state )
30
- else
31
- state .value = value
32
- },
33
- { deep: true },
34
- )
22
+ function clone() {
23
+ error .value = undefined
24
+ try {
25
+ if (props .state )
26
+ proxy .value = JSON .parse (JSON .stringify (props .state ))
27
+ else if (typeof props .state === ' number' || typeof props .state !== ' string' )
28
+ proxy .value = props .state
29
+ }
30
+ catch (e ) {
31
+ console .error (e )
32
+ error .value = e
33
+ }
34
+ }
35
+
36
+ let watcher: ReturnType <typeof watchPausable > | undefined
37
+
38
+ onMounted (() => {
39
+ clone ()
40
+
41
+ watcher = watchPausable (
42
+ proxy ,
43
+ (value ) => {
44
+ if (typeof value !== ' number' && typeof value !== ' string' )
45
+ deepSync (value , props .state )
46
+ else
47
+ state .value = value
48
+ },
49
+ { deep: true },
50
+ )
51
+ })
35
52
36
53
function deepSync(from : any , to : any ) {
37
54
for (const key in from ) {
@@ -47,10 +64,10 @@ function deepSync(from: any, to: any) {
47
64
}
48
65
49
66
async function refresh() {
50
- watcher .pause ()
51
- proxy . value = JSON . parse ( JSON . stringify ( props . state ) )
67
+ watcher ? .pause ()
68
+ clone ( )
52
69
await nextTick ()
53
- watcher .resume ()
70
+ watcher ? .resume ()
54
71
}
55
72
</script >
56
73
@@ -75,13 +92,17 @@ async function refresh() {
75
92
<template v-if =" isOpen " >
76
93
<NButton v-tooltip.bottom =" 'Refresh View'" title =" Refresh View" icon =" carbon-renew" :border =" false" @click =" refresh" />
77
94
<DataSchemaButton
78
- v-if =" proxy"
95
+ v-if =" proxy && !error "
79
96
:getter =" () => ({ name, input: JSON.stringify(proxy) })"
80
97
/>
81
98
</template >
82
99
</div >
83
100
<template v-if =" isOpen || ! name " >
101
+ <div v-if =" error" class =" bg-red:10 px5 py3 text-red" >
102
+ Error: {{ error }}
103
+ </div >
84
104
<JsonEditorVue
105
+ v-else
85
106
v-model =" proxy"
86
107
v-bind =" $attrs"
87
108
class =" json-editor-vue"
0 commit comments