File tree 6 files changed +91
-2
lines changed
6 files changed +91
-2
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ export default defineNuxtModule({
153
153
})
154
154
```
155
155
156
- And on the client side, you can do:
156
+ And on the embedded iframe client side, you can do:
157
157
158
158
``` ts
159
159
import { onDevtoolsClientConnected } from ' @nuxt/devtools-kit/iframe-client'
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ It will return a ref of `NuxtDevtoolsIframeClient` object that are intially `nul
109
109
110
110
` NuxtDevtoolsIframeClient ` contains two properties:
111
111
112
- - ` host ` : APIs to communicate with the client app
112
+ - ` host ` : APIs to communicate with the main app in browser
113
113
- ` devtools ` : APIs to communicate with the devtools
114
114
115
115
` host ` can be undefined when devtools are accessed standalone or from a different origin.
@@ -134,3 +134,36 @@ onDevtoolsClientConnected(async (client) => {
134
134
// ...
135
135
})
136
136
```
137
+
138
+ ## ` @nuxt/devtools-kit/host-client `
139
+
140
+ When you have iframe for your devtools view, sometimes you need to communicate with the devtools host (the main app in browser) with a runtime plugin. You can use ` @nuxt/devtools-kit/host-client ` to do that.
141
+
142
+ ### ` useDevtoolsHostClient() `
143
+
144
+ It will return a ref of ` NuxtDevtoolsHostClient ` object that are intially ` null ` and will be updated when the host is initialized by NuxtDevtools.
145
+
146
+ ``` ts
147
+ import { useDevtoolsHostClient } from ' @nuxt/devtools-kit/host-client'
148
+
149
+ export default defineNuxtPlugin ({
150
+ name: ' my-module:devtools' ,
151
+ setup(nuxtApp ) {
152
+ const devtoolsHost = useDevtoolsHostClient ()
153
+
154
+ // ...
155
+ }
156
+ })
157
+ ```
158
+
159
+ ### ` onDevtoolsHostClientConnected() `
160
+
161
+ Similiar to ` useDevtoolsHostClient() ` but as a callback style:
162
+
163
+ ``` ts
164
+ import { onDevtoolsHostClientConnected } from ' @nuxt/devtools-kit/host-client'
165
+
166
+ onDevtoolsHostClientConnected (async (host ) => {
167
+
168
+ })
169
+ ```
Original file line number Diff line number Diff line change
1
+ export * from './dist/runtime/host-client'
Original file line number Diff line number Diff line change
1
+ export * from './dist/runtime/host-client.mjs'
Original file line number Diff line number Diff line change 23
23
"./iframe-client" : {
24
24
"types" : " ./iframe-client.d.ts" ,
25
25
"import" : " ./iframe-client.mjs"
26
+ },
27
+ "./host-client" : {
28
+ "types" : " ./host-client.d.ts" ,
29
+ "import" : " ./host-client.mjs"
26
30
}
27
31
},
28
32
"main" : " ./dist/index.cjs" ,
Original file line number Diff line number Diff line change
1
+ import type { Ref } from 'vue'
2
+ import { shallowRef } from 'vue'
3
+ import type { NuxtDevtoolsHostClient } from '../types'
4
+
5
+ let clientRef : Ref < NuxtDevtoolsHostClient | undefined > | undefined
6
+ const fns = [ ] as ( ( client : NuxtDevtoolsHostClient ) => void ) [ ]
7
+
8
+ export function onDevtoolsHostClientConnected ( fn : ( client : NuxtDevtoolsHostClient ) => void ) {
9
+ fns . push ( fn )
10
+
11
+ if ( typeof window === 'undefined' )
12
+ return
13
+
14
+ // eslint-disable-next-line ts/ban-ts-comment
15
+ // @ts -ignore injection
16
+ if ( window . __NUXT_DEVTOOLS_HOST__ ) {
17
+ // eslint-disable-next-line ts/ban-ts-comment
18
+ // @ts -ignore injection
19
+ fns . forEach ( fn => fn ( window . __NUXT_DEVTOOLS_HOST__ ) )
20
+ }
21
+
22
+ Object . defineProperty ( window , '__NUXT_DEVTOOLS_HOST__' , {
23
+ set ( value ) {
24
+ if ( value )
25
+ fns . forEach ( fn => fn ( value ) )
26
+ } ,
27
+ get ( ) {
28
+ return clientRef ! . value
29
+ } ,
30
+ configurable : true ,
31
+ } )
32
+
33
+ return ( ) => {
34
+ fns . splice ( fns . indexOf ( fn ) , 1 )
35
+ }
36
+ }
37
+
38
+ export function useDevtoolsHostClient ( ) {
39
+ if ( ! clientRef ) {
40
+ clientRef = shallowRef < NuxtDevtoolsHostClient | undefined > ( )
41
+
42
+ onDevtoolsHostClientConnected ( setup )
43
+ }
44
+
45
+ function setup ( client : NuxtDevtoolsHostClient ) {
46
+ clientRef ! . value = client
47
+ }
48
+
49
+ return clientRef
50
+ }
You can’t perform that action at this time.
0 commit comments