Skip to content

Commit 418a22e

Browse files
committedJul 2, 2024··
fix: introduce client.revision to trigger state editor update
1 parent 841fd76 commit 418a22e

File tree

9 files changed

+41
-11
lines changed

9 files changed

+41
-11
lines changed
 

‎packages/devtools-kit/src/_types/client-api.ts

+5
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ export interface NuxtDevtoolsHostClient {
105105
loading: () => LoadingTimeMetric
106106
}
107107

108+
/**
109+
* A counter to trigger reactivity updates
110+
*/
111+
revision: Ref<number>
112+
108113
/**
109114
* Update client
110115
* @internal

‎packages/devtools-kit/src/runtime/iframe-client.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ export function useDevtoolsClient() {
4747
}
4848

4949
function onUpdateReactivity() {
50-
triggerRef(clientRef!)
50+
if (clientRef) {
51+
triggerRef(clientRef)
52+
}
5153
}
5254

5355
function setup(client: NuxtDevtoolsIframeClient) {

‎packages/devtools/client/components/StateEditor.vue

+4-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import JsonEditorVue from 'json-editor-vue'
44
const props = defineProps<{
55
name?: string
66
open?: boolean
7+
revision?: number
78
state?: any
89
readonly?: boolean
910
}>()
@@ -17,8 +18,6 @@ const colorMode = useColorMode()
1718
const proxy = shallowRef()
1819
const error = shallowRef()
1920
20-
const state = useState(props.name)
21-
2221
function clone() {
2322
error.value = undefined
2423
try {
@@ -38,13 +37,13 @@ let watcher: ReturnType<typeof watchPausable> | undefined
3837
onMounted(() => {
3938
clone()
4039
41-
watcher = watchPausable(
42-
proxy,
40+
watch(
41+
() => [props.revision, props.state],
4342
(value) => {
4443
if (typeof value !== 'number' && typeof value !== 'string')
4544
deepSync(value, props.state)
Has a conversation. Original line has a conversation.
4645
else
47-
state.value = value
46+
proxy.value = props.state
4847
},
4948
{ deep: true },
5049
)

‎packages/devtools/client/components/StateGroup.vue

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
withDefaults(
33
defineProps<{
44
state?: Record<string, any>
5+
revision?: number
56
prefix?: string
67
}>(),
78
{
@@ -16,6 +17,7 @@ withDefaults(
1617
<StateEditor
1718
v-for="value, key of state"
1819
:key="key"
20+
:revision="revision"
1921
:state="value"
2022
:name="key.startsWith(prefix) ? key.slice(prefix.length) : key"
2123
>

‎packages/devtools/client/composables/utils.ts

+1
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ export function refreshData() {
170170

171171
nuxt.hooks.callHookParallel('app:data:refresh', Object.keys(nuxt.payload.data))
172172
triggerRef(client)
173+
client.value.revision.value += 1
173174
}
174175

175176
export function reloadPage() {

‎packages/devtools/client/pages/modules/payload.vue

+9-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ definePageMeta({
1212
1313
const client = useClient()
1414
const payload = computed(() => client.value?.nuxt.payload)
15+
const revision = computed(() => client.value?.revision.value)
1516
1617
async function refreshData(keys?: string[]) {
1718
await client.value?.nuxt.hooks.callHookParallel('app:data:refresh', keys)
@@ -27,7 +28,9 @@ async function refreshData(keys?: string[]) {
2728
:padding="false"
2829
>
2930
<StateGroup
30-
:state="payload.state" prefix="$s"
31+
:state="payload.state"
32+
:revision="revision"
33+
prefix="$s"
3134
/>
3235
</NSectionBlock>
3336
<NSectionBlock
@@ -45,7 +48,10 @@ async function refreshData(keys?: string[]) {
4548
Re-fetch all data
4649
</NButton>
4750
</template>
48-
<StateGroup :state="payload.data">
51+
<StateGroup
52+
:state="payload.data"
53+
:revision="revision"
54+
>
4955
<template #actions="{ isOpen, name }">
5056
<NButton
5157
v-if="isOpen && name"
@@ -67,6 +73,7 @@ async function refreshData(keys?: string[]) {
6773
<StateEditor
6874
ml--6
6975
:state="payload.functions"
76+
:revision="revision"
7077
/>
7178
</NSectionBlock>
7279
</div>

‎packages/devtools/client/pages/modules/runtime-configs.vue

+14-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ definePageMeta({
1313
const client = useClient()
1414
const runtimeConfig = useServerRuntimeConfig()
1515
const payload = computed(() => client.value?.nuxt.payload)
16+
const revision = computed(() => client.value?.revision.value)
1617
1718
const privateConfig = computed(() => {
1819
const clone = {
@@ -31,15 +32,21 @@ const privateConfig = computed(() => {
3132
text="App Config"
3233
:padding="false"
3334
>
34-
<StateEditor :state="client.app.appConfig" />
35+
<StateEditor
36+
:state="client.app.appConfig"
37+
:revision="revision"
38+
/>
3539
</NSectionBlock>
3640

3741
<NSectionBlock
3842
icon="carbon-settings"
3943
text="Public Runtime Config"
4044
:padding="false"
4145
>
42-
<StateEditor :state="payload.config?.public" />
46+
<StateEditor
47+
:state="payload.config?.public"
48+
:revision="revision"
49+
/>
4350
</NSectionBlock>
4451

4552
<NSectionBlock
@@ -49,7 +56,11 @@ const privateConfig = computed(() => {
4956
:padding="false"
5057
description="These values are not exposed to the client. Readonly in the DevTools."
5158
>
52-
<StateEditor :state="privateConfig" readonly />
59+
<StateEditor
60+
:state="privateConfig"
61+
:revision="revision"
62+
readonly
63+
/>
5364
</NSectionBlock>
5465
</div>
5566

‎packages/devtools/client/plugins/global.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export default defineNuxtPlugin(() => {
55

66
function onUpdateReactivity() {
77
triggerRef(client)
8+
client.value.revision.value += 1
89
}
910

1011
function onInspectorUpdate(data: any) {

‎packages/devtools/src/runtime/plugins/view/client.ts

+2
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ export async function setupDevToolsClient({
100100
clientTimeline: () => timeline,
101101
loading: () => timeMetric,
102102
},
103+
104+
revision: ref(0),
103105
})
104106

105107
window.__NUXT_DEVTOOLS_HOST__ = client

0 commit comments

Comments
 (0)
Please sign in to comment.