File tree 2 files changed +31
-0
lines changed
test/unit/modules/compiler
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,9 @@ const decodeHTMLCached = cached(decodeHTML)
30
30
let warn
31
31
let platformGetTagNamespace
32
32
let platformMustUseProp
33
+ let preTransforms
33
34
let transforms
35
+ let postTransforms
34
36
let delimiters
35
37
36
38
/**
@@ -43,7 +45,9 @@ export function parse (
43
45
warn = options . warn || baseWarn
44
46
platformGetTagNamespace = options . getTagNamespace || no
45
47
platformMustUseProp = options . mustUseProp || no
48
+ preTransforms = pluckModuleFunction ( options . modules , 'preTransformNode' )
46
49
transforms = pluckModuleFunction ( options . modules , 'transformNode' )
50
+ postTransforms = pluckModuleFunction ( options . modules , 'postTransformNode' )
47
51
delimiters = options . delimiters
48
52
const stack = [ ]
49
53
const preserveWhitespace = options . preserveWhitespace !== false
@@ -88,6 +92,11 @@ export function parse (
88
92
)
89
93
}
90
94
95
+ // apply pre-transforms
96
+ for ( let i = 0 ; i < preTransforms . length ; i ++ ) {
97
+ preTransforms [ i ] ( element , options )
98
+ }
99
+
91
100
if ( ! inPre ) {
92
101
processPre ( element )
93
102
if ( element . pre ) {
@@ -151,6 +160,10 @@ export function parse (
151
160
currentParent = element
152
161
stack . push ( element )
153
162
}
163
+ // apply post-transforms
164
+ for ( let i = 0 ; i < postTransforms . length ; i ++ ) {
165
+ postTransforms [ i ] ( element , options )
166
+ }
154
167
} ,
155
168
156
169
end ( ) {
Original file line number Diff line number Diff line change @@ -292,4 +292,22 @@ describe('parser', () => {
292
292
const ast = parse ( '<input type="text" name="field1" :value="msg">' , options )
293
293
expect ( ast . props ) . toBeUndefined ( )
294
294
} )
295
+
296
+ it ( 'pre/post transforms' , ( ) => {
297
+ const options = extend ( { } , baseOptions )
298
+ const spy1 = jasmine . createSpy ( 'preTransform' )
299
+ const spy2 = jasmine . createSpy ( 'postTransform' )
300
+ options . modules = options . modules . concat ( [ {
301
+ preTransformNode ( el ) {
302
+ spy1 ( el . tag )
303
+ } ,
304
+ postTransformNode ( el ) {
305
+ expect ( el . staticAttrs . length ) . toBe ( 1 )
306
+ spy2 ( el . tag )
307
+ }
308
+ } ] )
309
+ parse ( '<img v-pre src="hi">' , options )
310
+ expect ( spy1 ) . toHaveBeenCalledWith ( 'img' )
311
+ expect ( spy2 ) . toHaveBeenCalledWith ( 'img' )
312
+ } )
295
313
} )
You can’t perform that action at this time.
0 commit comments