Skip to content

Commit 167373c

Browse files
committedAug 21, 2024··
feat(kit): introduce host-client utility
1 parent 8dcdd8a commit 167373c

File tree

6 files changed

+91
-2
lines changed

6 files changed

+91
-2
lines changed
 

‎docs/content/2.module/0.guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export default defineNuxtModule({
153153
})
154154
```
155155

156-
And on the client side, you can do:
156+
And on the embedded iframe client side, you can do:
157157

158158
```ts
159159
import { onDevtoolsClientConnected } from '@nuxt/devtools-kit/iframe-client'

‎docs/content/2.module/1.utils-kit.md

+34-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ It will return a ref of `NuxtDevtoolsIframeClient` object that are intially `nul
109109

110110
`NuxtDevtoolsIframeClient` contains two properties:
111111

112-
- `host`: APIs to communicate with the client app
112+
- `host`: APIs to communicate with the main app in browser
113113
- `devtools`: APIs to communicate with the devtools
114114

115115
`host` can be undefined when devtools are accessed standalone or from a different origin.
@@ -134,3 +134,36 @@ onDevtoolsClientConnected(async (client) => {
134134
// ...
135135
})
136136
```
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+
```
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './dist/runtime/host-client'

‎packages/devtools-kit/host-client.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './dist/runtime/host-client.mjs'

‎packages/devtools-kit/package.json

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
"./iframe-client": {
2424
"types": "./iframe-client.d.ts",
2525
"import": "./iframe-client.mjs"
26+
},
27+
"./host-client": {
28+
"types": "./host-client.d.ts",
29+
"import": "./host-client.mjs"
2630
}
2731
},
2832
"main": "./dist/index.cjs",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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+
}

0 commit comments

Comments
 (0)
Please sign in to comment.