-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathnext-tick.ts
33 lines (29 loc) · 907 Bytes
/
next-tick.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
import wrap from '../src/wrapAstTransformation'
import type { ASTTransformation } from '../src/wrapAstTransformation'
export const transformAST: ASTTransformation = ({ root, j }) => {
// find the Vue.nextTick(...)
const nextTickCalls = root.find(j.CallExpression, n => {
return (
n.callee.type === 'MemberExpression' &&
n.callee.property.name === 'nextTick' &&
n.callee.object.name === 'Vue'
)
})
if (nextTickCalls.length) {
// add import nextTick
const addImport = require('./add-import')
addImport.transformAST({ root, j }, {
specifier: {
type: 'named',
imported: 'nextTick'
},
source: 'vue'
})
nextTickCalls.replaceWith(({ node }) => {
const el = node.arguments[0]
return j.callExpression(j.identifier('nextTick'), [el])
})
}
}
export default wrap(transformAST)
export const parser = 'babylon'