File tree 9 files changed +41
-11
lines changed
9 files changed +41
-11
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,11 @@ export interface NuxtDevtoolsHostClient {
105
105
loading : ( ) => LoadingTimeMetric
106
106
}
107
107
108
+ /**
109
+ * A counter to trigger reactivity updates
110
+ */
111
+ revision : Ref < number >
112
+
108
113
/**
109
114
* Update client
110
115
* @internal
Original file line number Diff line number Diff line change @@ -47,7 +47,9 @@ export function useDevtoolsClient() {
47
47
}
48
48
49
49
function onUpdateReactivity ( ) {
50
- triggerRef ( clientRef ! )
50
+ if ( clientRef ) {
51
+ triggerRef ( clientRef )
52
+ }
51
53
}
52
54
53
55
function setup ( client : NuxtDevtoolsIframeClient ) {
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import JsonEditorVue from 'json-editor-vue'
4
4
const props = defineProps <{
5
5
name? : string
6
6
open? : boolean
7
+ revision? : number
7
8
state? : any
8
9
readonly? : boolean
9
10
}>()
@@ -17,8 +18,6 @@ const colorMode = useColorMode()
17
18
const proxy = shallowRef ()
18
19
const error = shallowRef ()
19
20
20
- const state = useState (props .name )
21
-
22
21
function clone() {
23
22
error .value = undefined
24
23
try {
@@ -38,13 +37,13 @@ let watcher: ReturnType<typeof watchPausable> | undefined
38
37
onMounted (() => {
39
38
clone ()
40
39
41
- watcher = watchPausable (
42
- proxy ,
40
+ watch (
41
+ () => [ props . revision , props . state ] ,
43
42
(value ) => {
44
43
if (typeof value !== ' number' && typeof value !== ' string' )
45
44
deepSync (value , props .state )
Has a conversation. Original line has a conversation. 46
45
else
47
- state .value = value
46
+ proxy .value = props . state
48
47
},
49
48
{ deep: true },
50
49
)
Original file line number Diff line number Diff line change 2
2
withDefaults (
3
3
defineProps <{
4
4
state? : Record <string , any >
5
+ revision? : number
5
6
prefix? : string
6
7
}>(),
7
8
{
@@ -16,6 +17,7 @@ withDefaults(
16
17
<StateEditor
17
18
v-for =" value, key of state"
18
19
:key =" key"
20
+ :revision =" revision"
19
21
:state =" value"
20
22
:name =" key.startsWith(prefix) ? key.slice(prefix.length) : key"
21
23
>
Original file line number Diff line number Diff line change @@ -170,6 +170,7 @@ export function refreshData() {
170
170
171
171
nuxt . hooks . callHookParallel ( 'app:data:refresh' , Object . keys ( nuxt . payload . data ) )
172
172
triggerRef ( client )
173
+ client . value . revision . value += 1
173
174
}
174
175
175
176
export function reloadPage ( ) {
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ definePageMeta({
12
12
13
13
const client = useClient ()
14
14
const payload = computed (() => client .value ?.nuxt .payload )
15
+ const revision = computed (() => client .value ?.revision .value )
15
16
16
17
async function refreshData(keys ? : string []) {
17
18
await client .value ?.nuxt .hooks .callHookParallel (' app:data:refresh' , keys )
@@ -27,7 +28,9 @@ async function refreshData(keys?: string[]) {
27
28
:padding =" false"
28
29
>
29
30
<StateGroup
30
- :state =" payload.state" prefix =" $s"
31
+ :state =" payload.state"
32
+ :revision =" revision"
33
+ prefix =" $s"
31
34
/>
32
35
</NSectionBlock >
33
36
<NSectionBlock
@@ -45,7 +48,10 @@ async function refreshData(keys?: string[]) {
45
48
Re-fetch all data
46
49
</NButton >
47
50
</template >
48
- <StateGroup :state =" payload.data" >
51
+ <StateGroup
52
+ :state =" payload.data"
53
+ :revision =" revision"
54
+ >
49
55
<template #actions =" { isOpen , name } " >
50
56
<NButton
51
57
v-if =" isOpen && name"
@@ -67,6 +73,7 @@ async function refreshData(keys?: string[]) {
67
73
<StateEditor
68
74
ml--6
69
75
:state =" payload.functions"
76
+ :revision =" revision"
70
77
/>
71
78
</NSectionBlock >
72
79
</div >
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ definePageMeta({
13
13
const client = useClient ()
14
14
const runtimeConfig = useServerRuntimeConfig ()
15
15
const payload = computed (() => client .value ?.nuxt .payload )
16
+ const revision = computed (() => client .value ?.revision .value )
16
17
17
18
const privateConfig = computed (() => {
18
19
const clone = {
@@ -31,15 +32,21 @@ const privateConfig = computed(() => {
31
32
text =" App Config"
32
33
:padding =" false"
33
34
>
34
- <StateEditor :state =" client.app.appConfig" />
35
+ <StateEditor
36
+ :state =" client.app.appConfig"
37
+ :revision =" revision"
38
+ />
35
39
</NSectionBlock >
36
40
37
41
<NSectionBlock
38
42
icon =" carbon-settings"
39
43
text =" Public Runtime Config"
40
44
:padding =" false"
41
45
>
42
- <StateEditor :state =" payload.config?.public" />
46
+ <StateEditor
47
+ :state =" payload.config?.public"
48
+ :revision =" revision"
49
+ />
43
50
</NSectionBlock >
44
51
45
52
<NSectionBlock
@@ -49,7 +56,11 @@ const privateConfig = computed(() => {
49
56
:padding =" false"
50
57
description =" These values are not exposed to the client. Readonly in the DevTools."
51
58
>
52
- <StateEditor :state =" privateConfig" readonly />
59
+ <StateEditor
60
+ :state =" privateConfig"
61
+ :revision =" revision"
62
+ readonly
63
+ />
53
64
</NSectionBlock >
54
65
</div >
55
66
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ export default defineNuxtPlugin(() => {
5
5
6
6
function onUpdateReactivity ( ) {
7
7
triggerRef ( client )
8
+ client . value . revision . value += 1
8
9
}
9
10
10
11
function onInspectorUpdate ( data : any ) {
Original file line number Diff line number Diff line change @@ -100,6 +100,8 @@ export async function setupDevToolsClient({
100
100
clientTimeline : ( ) => timeline ,
101
101
loading : ( ) => timeMetric ,
102
102
} ,
103
+
104
+ revision : ref ( 0 ) ,
103
105
} )
104
106
105
107
window . __NUXT_DEVTOOLS_HOST__ = client
You can’t perform that action at this time.