-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcreate-app-mount.js
38 lines (33 loc) · 993 Bytes
/
create-app-mount.js
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
/**
* @param {Object} context
* @param {import('jscodeshift').JSCodeshift} context.j
* @param {ReturnType<import('jscodeshift').Core>} context.root
*/
module.exports = function createAppMount(context) {
const { j, root } = context
// new Vue(...).$mount()
const mountCalls = root.find(j.CallExpression, n => {
return (
n.callee.type === 'MemberExpression' &&
n.callee.property.name === '$mount' &&
n.callee.object.type === 'NewExpression' &&
n.callee.object.callee.name === 'Vue'
)
})
if (!mountCalls.length) {
return
}
const addImport = require('../utils/add-import')
addImport(context, { imported: 'createApp' }, 'vue')
mountCalls.replaceWith(({ node }) => {
let rootProps = node.callee.object.arguments[0]
const el = node.arguments[0]
return j.callExpression(
j.memberExpression(
j.callExpression(j.identifier('createApp'), [rootProps]),
j.identifier('mount')
),
[el]
)
})
}