Skip to content

Commit 4317b47

Browse files
authoredApr 16, 2024··
fix(vite): apply vite server base url (#335)
1 parent 318c8e8 commit 4317b47

File tree

9 files changed

+34
-25
lines changed

9 files changed

+34
-25
lines changed
 

‎docs/guide/vite-plugin.md

+2
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,15 @@ interface VitePluginVueDevToolsOptions {
5959
/**
6060
* Customize openInEditor host (e.g. http://localhost:3000)
6161
* @default false
62+
* @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
6263
*/
6364
openInEditorHost?: string | false
6465

6566
/**
6667
* DevTools client host (e.g. http://localhost:3000)
6768
* useful for projects that use a reverse proxy
6869
* @default false
70+
* @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
6971
*/
7072
clientHost?: string | false
7173
}
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
import { openInEditor as _openInEditor, callViteServerAction } from '@vue/devtools-core'
1+
import { openInEditor as _openInEditor } from '@vue/devtools-core'
22

3-
const getOpenInEditorHost = callViteServerAction<string>('get-open-in-editor-host')
43
export const vueInspectorDetected = ref(false)
54

65
export const openInEditor = async (file: string) => {
7-
const openInEditorHost = await getOpenInEditorHost()
8-
return openInEditorHost ? _openInEditor(file, openInEditorHost) : _openInEditor(file)
6+
return _openInEditor(file)
97
}

‎packages/devtools-kit/src/core/open-in-editor/index.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,16 @@ export interface OpenInEditorOptions {
88
column?: number
99
}
1010

11+
export function setOpenInEditorBaseUrl(url: string) {
12+
target.__VUE_DEVTOOLS_OPEN_IN_EDITOR_BASE_URL__ = url
13+
}
14+
1115
export function openInEditor(options: OpenInEditorOptions = {}) {
1216
const { file, baseUrl = window.location.origin, line = 0, column = 0 } = options
1317
if (file) {
1418
if (devtoolsState.vitePluginDetected) {
15-
target.__VUE_INSPECTOR__.openInEditor(baseUrl, file, line, column)
19+
const _baseUrl = target.__VUE_DEVTOOLS_OPEN_IN_EDITOR_BASE_URL__ ?? baseUrl
20+
target.__VUE_INSPECTOR__.openInEditor(_baseUrl, file, line, column)
1621
}
1722
else {
1823
// @TODO: support other

‎packages/devtools-kit/src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { addCustomTab } from './core/custom-tab'
66
import { addCustomCommand, removeCustomCommand } from './core/custom-command'
77
import { toggleComponentInspectorEnabled } from './core/component-inspector'
88
import { toggleHighPerfMode } from './core/high-perf-mode'
9+
import { setOpenInEditorBaseUrl } from './core/open-in-editor'
910

1011
export type * from './core/custom-tab'
1112
export type * from './core/custom-command'
@@ -50,4 +51,5 @@ export {
5051
setDevToolsEnv,
5152
toggleComponentInspectorEnabled,
5253
toggleHighPerfMode,
54+
setOpenInEditorBaseUrl,
5355
}

‎packages/vite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"execa": "^8.0.1",
5757
"sirv": "^2.0.4",
5858
"vite-plugin-inspect": "^0.8.3",
59-
"vite-plugin-vue-inspector": "^4.0.2"
59+
"vite-plugin-vue-inspector": "^5.0.0"
6060
},
6161
"devDependencies": {
6262
"@types/node": "^20.12.5",

‎packages/vite/src/modules/get-config.ts

-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,4 @@ export function getViteConfig(config: ResolvedConfig, pluginOptions) {
55
defineViteServerAction('get-vite-root', () => {
66
return config.root
77
})
8-
defineViteServerAction('get-open-in-editor-host', () => {
9-
return pluginOptions.openInEditorHost
10-
})
118
}

‎packages/vite/src/overlay.js

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
import vueDevToolsOptions from 'virtual:vue-devtools-options'
22
import { initAppSeparateWindow, setDevToolsClientUrl } from '@vue/devtools-core'
3-
import { addCustomTab, devtools, setDevToolsEnv, toggleComponentInspectorEnabled } from '@vue/devtools-kit'
3+
import { addCustomTab, devtools, setDevToolsEnv, setOpenInEditorBaseUrl, toggleComponentInspectorEnabled } from '@vue/devtools-kit'
44

5-
const overlayDir = `${vueDevToolsOptions.clientHost || ''}${vueDevToolsOptions.base || '/'}@id/virtual:vue-devtools-path:overlay`
5+
function normalizeUrl(url) {
6+
return new URL(`${vueDevToolsOptions.base || '/'}${url}`, import.meta.url).toString()
7+
}
8+
9+
const overlayDir = normalizeUrl(`@id/virtual:vue-devtools-path:overlay`)
610
const body = document.getElementsByTagName('body')[0]
711
const head = document.getElementsByTagName('head')[0]
812

913
setDevToolsEnv({
1014
vitePluginDetected: true,
1115
})
1216

13-
const devtoolsClientUrl = `${vueDevToolsOptions.clientHost || ''}${vueDevToolsOptions.base || '/'}__devtools__/`
17+
const devtoolsClientUrl = normalizeUrl(`__devtools__/`)
1418
setDevToolsClientUrl(devtoolsClientUrl)
19+
setOpenInEditorBaseUrl(normalizeUrl('').slice(0, -1))
1520

1621
toggleComponentInspectorEnabled(!!vueDevToolsOptions.componentInspector)
1722

@@ -24,7 +29,7 @@ addCustomTab({
2429
icon: 'i-carbon-ibm-watson-discovery',
2530
view: {
2631
type: 'iframe',
27-
src: `${window.location.origin}${vueDevToolsOptions.base || '/'}__inspect`,
32+
src: normalizeUrl(`__inspect/`),
2833
},
2934
category: 'advanced',
3035
})

‎packages/vite/src/vite.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,15 @@ export interface VitePluginVueDevToolsOptions {
4444
/**
4545
* Customize openInEditor host (e.g. http://localhost:3000)
4646
* @default false
47+
* @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
4748
*/
4849
openInEditorHost?: string | false
4950

5051
/**
5152
* DevTools client host (e.g. http://localhost:3000)
5253
* useful for projects that use a reverse proxy
5354
* @default false
55+
* @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
5456
*/
5557
clientHost?: string | false
5658

@@ -62,14 +64,12 @@ export interface VitePluginVueDevToolsOptions {
6264
componentInspector?: boolean | VitePluginInspectorOptions
6365
}
6466

65-
const defaultOptions: DeepRequired<VitePluginVueDevToolsOptions> = {
67+
const defaultOptions: VitePluginVueDevToolsOptions = {
6668
appendTo: '',
67-
openInEditorHost: false,
68-
clientHost: false,
6969
componentInspector: true,
7070
}
7171

72-
function mergeOptions(options: VitePluginVueDevToolsOptions): DeepRequired<VitePluginVueDevToolsOptions> {
72+
function mergeOptions(options: VitePluginVueDevToolsOptions): VitePluginVueDevToolsOptions {
7373
return Object.assign({}, defaultOptions, options)
7474
}
7575

@@ -137,19 +137,20 @@ export default function VitePluginVueDevTools(options?: VitePluginVueDevToolsOpt
137137
},
138138
async load(id) {
139139
if (id === 'virtual:vue-devtools-options')
140-
return `export default ${JSON.stringify({ base: config.base, clientHost: pluginOptions.clientHost, componentInspector: pluginOptions.componentInspector })}`
140+
return `export default ${JSON.stringify({ base: config.base, componentInspector: pluginOptions.componentInspector })}`
141141
},
142142
transform(code, id) {
143-
const { root, base } = config
143+
const { root } = config
144144

145-
const projectPath = `${root}${base}`
145+
const projectPath = `${root}`
146146

147147
if (!id.startsWith(projectPath))
148148
return
149149

150150
const { appendTo } = pluginOptions
151151

152152
const [filename] = id.split('?', 2)
153+
153154
if (appendTo
154155
&& (
155156
(typeof appendTo === 'string' && filename.endsWith(appendTo))
@@ -197,7 +198,6 @@ export default function VitePluginVueDevTools(options?: VitePluginVueDevToolsOpt
197198
...typeof pluginOptions.componentInspector === 'boolean'
198199
? {}
199200
: pluginOptions.componentInspector,
200-
openInEditorHost: pluginOptions.openInEditorHost,
201201
appendTo: pluginOptions.appendTo || 'manually',
202202
}) as PluginOption,
203203
plugin,

‎pnpm-lock.yaml

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.