forked from webfansplz/vite-plugin-vue-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
303 lines (270 loc) · 8.84 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import fs from 'node:fs'
import process from 'node:process'
import { bold, dim, green, yellow } from 'kolorist'
import { normalizePath } from 'vite'
import type { PluginOption, ResolvedConfig } from 'vite'
import MagicString from 'magic-string'
import { compileSFCTemplate } from './compiler'
import { idToFile, parseVueRequest } from './utils'
export interface VueInspectorClient {
enabled: boolean
position: {
x: number
y: number
}
linkParams: {
file: string
line: number
column: number
}
enable: () => void
disable: () => void
toggleEnabled: () => void
openInEditor: (url: URL) => void
onUpdated: () => void
}
export interface VitePluginInspectorOptions {
/**
* Vue version
* @default 3
*/
vue?: 2 | 3
/**
* Default enable state
* @default false
*/
enabled?: boolean
/**
* Define a combo key to toggle inspector
* @default 'control-shift' on windows, 'meta-shift' on other os
*
* any number of modifiers `control` `shift` `alt` `meta` followed by zero or one regular key, separated by -
* examples: control-shift, control-o, control-alt-s meta-x control-meta
* Some keys have native behavior (e.g. alt-s opens history menu on firefox).
* To avoid conflicts or accidentally typing into inputs, modifier only combinations are recommended.
* You can also disable it by setting `false`.
*/
toggleComboKey?: string | false
/**
* Toggle button visibility
* @default 'active'
*/
toggleButtonVisibility?: 'always' | 'active' | 'never'
/**
* Toggle button display position
* @default top-right
*/
toggleButtonPos?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'
/**
* append an import to the module id ending with `appendTo` instead of adding a script into body
* useful for frameworks that do not support transformIndexHtml hook (e.g. Nuxt3)
*
* WARNING: only set this if you know exactly what it does.
*/
appendTo?: string | RegExp
/**
* Customize openInEditor host (e.g. http://localhost:3000)
* @default false
* @deprecated This option is deprecated and removed in 5.0. The plugin now automatically detects the correct host.
*/
openInEditorHost?: string | false
/**
* lazy load inspector times (ms)
* @default false
*/
lazyLoad?: number | false
/**
* disable inspector on editor open
* @default false
*/
disableInspectorOnEditorOpen?: boolean
/**
* Hide information in VNode and produce clean html in DevTools
*
* Currently, it only works for Vue 3
*
* @default true
*/
cleanHtml?: boolean
/**
* Target editor when open in editor (v5.1.0+)
*
* @default code (Visual Studio Code)
*/
launchEditor?: 'appcode' | 'atom' | 'atom-beta' | 'brackets' | 'clion' | 'code' | 'code-insiders' | 'codium' | 'emacs' | 'idea' | 'notepad++' | 'pycharm' | 'phpstorm' | 'rubymine' | 'sublime' | 'vim' | 'visualstudio' | 'webstorm'
}
const toggleComboKeysMap = {
control: process.platform === 'darwin' ? 'Control(^)' : 'Ctrl(^)',
meta: 'Command(⌘)',
shift: 'Shift(⇧)',
}
function getInspectorPath() {
const pluginPath = normalizePath(path.dirname(fileURLToPath(import.meta.url)))
return pluginPath.replace(/\/dist$/, '/src')
}
export function normalizeComboKeyPrint(toggleComboKey: string) {
return toggleComboKey.split('-').map(key => toggleComboKeysMap[key] || key[0].toUpperCase() + key.slice(1)).join(dim('+'))
}
export const DEFAULT_INSPECTOR_OPTIONS: VitePluginInspectorOptions = {
vue: 3,
enabled: false,
toggleComboKey: process.platform === 'darwin' ? 'meta-shift' : 'control-shift',
toggleButtonVisibility: 'active',
toggleButtonPos: 'top-right',
appendTo: '',
lazyLoad: false,
launchEditor: 'code',
} as const
const availableLaunchEditors = [
'appcode',
'atom',
'atom-beta',
'brackets',
'clion',
'code',
'code-insiders',
'codium',
'emacs',
'idea',
'notepad++',
'pycharm',
'phpstorm',
'rubymine',
'sublime',
'vim',
'visualstudio',
'webstorm',
]
function VitePluginInspector(options: VitePluginInspectorOptions = DEFAULT_INSPECTOR_OPTIONS): PluginOption {
const inspectorPath = getInspectorPath()
const normalizedOptions = {
...DEFAULT_INSPECTOR_OPTIONS,
...options,
}
let config: ResolvedConfig
const {
vue,
appendTo,
cleanHtml = vue === 3, // Only enabled for Vue 3 by default
} = normalizedOptions
if (normalizedOptions.launchEditor && availableLaunchEditors.includes(normalizedOptions.launchEditor))
process.env.LAUNCH_EDITOR = normalizedOptions.launchEditor
return [
{
name: 'vite-plugin-vue-inspector',
enforce: 'pre',
apply(_, { command }) {
// apply only on serve and not for test
return command === 'serve' && process.env.NODE_ENV !== 'test'
},
async resolveId(importee: string) {
if (importee.startsWith('virtual:vue-inspector-options')) {
return importee
}
else if (importee.startsWith('virtual:vue-inspector-path:')) {
const resolved = importee.replace('virtual:vue-inspector-path:', `${inspectorPath}/`)
return resolved
}
},
async load(id) {
if (id === 'virtual:vue-inspector-options') {
return `export default ${JSON.stringify({ ...normalizedOptions, base: config.base })}`
}
else if (id.startsWith(inspectorPath)) {
const { query } = parseVueRequest(id)
if (query.type)
return
// read file ourselves to avoid getting shut out by vites fs.allow check
const file = idToFile(id)
if (fs.existsSync(file))
return await fs.promises.readFile(file, 'utf-8')
else
console.error(`failed to find file for vue-inspector: ${file}, referenced by id ${id}.`)
}
},
transform(code, id) {
const { filename, query } = parseVueRequest(id)
const isJsx = filename.endsWith('.jsx') || filename.endsWith('.tsx') || (filename.endsWith('.vue') && query.isJsx)
const isTpl = filename.endsWith('.vue') && query.type !== 'style' && !query.raw
if (isJsx || isTpl)
return compileSFCTemplate({ code, id: filename, type: isJsx ? 'jsx' : 'template' })
if (!appendTo)
return
if ((typeof appendTo === 'string' && filename.endsWith(appendTo))
|| (appendTo instanceof RegExp && appendTo.test(filename)))
return { code: `${code}\nimport 'virtual:vue-inspector-path:load.js'` }
},
configureServer(server) {
const _printUrls = server.printUrls
const { toggleComboKey } = normalizedOptions
toggleComboKey && (server.printUrls = () => {
const keys = normalizeComboKeyPrint(toggleComboKey)
_printUrls()
console.log(` ${green('➜')} ${bold('Vue Inspector')}: ${green(`Press ${yellow(keys)} in App to toggle the Inspector`)}\n`)
})
},
transformIndexHtml(html) {
if (appendTo)
return
return {
html,
tags: [
{
tag: 'script',
injectTo: 'head',
attrs: {
type: 'module',
src: `${config.base || '/'}@id/virtual:vue-inspector-path:load.js`,
},
},
],
}
},
configResolved(resolvedConfig) {
config = resolvedConfig
},
},
{
name: 'vite-plugin-vue-inspector:post',
enforce: 'post',
apply(_, { command }) {
// apply only on serve and not for test
return cleanHtml && vue === 3 && command === 'serve' && process.env.NODE_ENV !== 'test'
},
transform(code) {
if (code.includes('_interopVNode'))
return
if (!code.includes('data-v-inspector'))
return
const fn = new Set<string>()
const s = new MagicString(code)
s.replace(/(createElementVNode|createVNode|createElementBlock|createBlock) as _\1,?/g, (_, name) => {
fn.add(name)
return ''
})
if (!fn.size)
return
s.appendLeft(0, `/* Injection by vite-plugin-vue-inspector Start */
import { ${Array.from(fn.values()).map(i => `${i} as __${i}`).join(',')} } from 'vue'
function _interopVNode(vnode) {
if (vnode && vnode.props && 'data-v-inspector' in vnode.props) {
const data = vnode.props['data-v-inspector']
delete vnode.props['data-v-inspector']
Object.defineProperty(vnode.props, '__v_inspector', { value: data, enumerable: false })
}
return vnode
}
${Array.from(fn.values()).map(i => `function _${i}(...args) { return _interopVNode(__${i}(...args)) }`).join('\n')}
/* Injection by vite-plugin-vue-inspector End */
`)
return {
code: s.toString(),
map: s.generateMap({ hires: 'boundary' }),
}
},
},
]
}
export default VitePluginInspector