@@ -31,7 +31,6 @@ describe('richtext component', () => {
31
31
} )
32
32
33
33
it ( 'with no child' , ( ) => {
34
- // pending('work in progress')
35
34
expect ( compileSnippet ( runtime , `
36
35
<richtext></richtext>
37
36
` ) ) . toEqual ( {
@@ -40,7 +39,6 @@ describe('richtext component', () => {
40
39
} )
41
40
42
41
it ( 'with single text node' , ( ) => {
43
- // pending('work in progress')
44
42
expect ( compileSnippet ( runtime , `
45
43
<richtext>single</richtext>
46
44
` ) ) . toEqual ( {
@@ -57,7 +55,6 @@ describe('richtext component', () => {
57
55
} )
58
56
59
57
describe ( 'span' , ( ) => {
60
- // pending('work in progress')
61
58
it ( 'single node' , ( ) => {
62
59
expect ( compileSnippet ( runtime , `
63
60
<richtext>
@@ -125,7 +122,6 @@ describe('richtext component', () => {
125
122
} )
126
123
127
124
describe ( 'a' , ( ) => {
128
- // pending('work in progress')
129
125
it ( 'single node' , ( ) => {
130
126
expect ( compileSnippet ( runtime , `
131
127
<richtext>
@@ -164,7 +160,6 @@ describe('richtext component', () => {
164
160
} )
165
161
166
162
describe ( 'image' , ( ) => {
167
- // pending('work in progress')
168
163
it ( 'single node' , ( ) => {
169
164
expect ( compileSnippet ( runtime , `
170
165
<richtext>
@@ -223,7 +218,6 @@ describe('richtext component', () => {
223
218
} )
224
219
225
220
describe ( 'nested' , ( ) => {
226
- // pending('work in progress')
227
221
it ( 'span' , ( ) => {
228
222
expect ( compileSnippet ( runtime , `
229
223
<richtext>
@@ -298,13 +292,11 @@ describe('richtext component', () => {
298
292
} )
299
293
300
294
describe ( 'with styles' , ( ) => {
301
- // pending('work in progress')
302
295
it ( 'inline' , ( ) => {
303
- // pending('work in progress')
304
296
expect ( compileSnippet ( runtime , `
305
297
<richtext>
306
298
<span style="font-size:16px;color:#FF6600;">ABCD</span>
307
- <image style="width:40px ;height:60px " src="path/to/A.png"></image>
299
+ <image style="width:33.33px ;height:66.67px " src="path/to/A.png"></image>
308
300
</richtext>
309
301
` ) ) . toEqual ( {
310
302
type : 'richtext' ,
@@ -315,15 +307,14 @@ describe('richtext component', () => {
315
307
attr : { value : 'ABCD' }
316
308
} , {
317
309
type : 'image' ,
318
- style : { width : 40 , height : 60 } ,
310
+ style : { width : 33.33 , height : 66.67 } ,
319
311
attr : { src : 'path/to/A.png' }
320
312
} ]
321
313
}
322
314
} )
323
315
} )
324
316
325
317
it ( 'class list' , ( ) => {
326
- // pending('work in progress')
327
318
expect ( compileSnippet ( runtime , `
328
319
<richtext>
329
320
<image class="icon" src="path/to/A.png"></image>
@@ -353,7 +344,6 @@ describe('richtext component', () => {
353
344
} )
354
345
355
346
describe ( 'data binding' , ( ) => {
356
- // pending('work in progress')
357
347
it ( 'simple' , ( ) => {
358
348
expect ( compileSnippet ( runtime , `
359
349
<richtext>
@@ -502,7 +492,6 @@ describe('richtext component', () => {
502
492
} )
503
493
504
494
it ( 'class list' , ( ) => {
505
- // pending('work in progress')
506
495
expect ( compileSnippet ( runtime , `
507
496
<richtext>
508
497
<image :class="classList" src="path/to/A.png"></image>
@@ -575,51 +564,7 @@ describe('richtext component', () => {
575
564
} )
576
565
} )
577
566
578
- describe ( 'bind events' , ( ) => {
579
- pending ( 'work in progress' )
580
- it ( 'inline' , ( done ) => {
581
- const { render, staticRenderFns } = compileAndStringify ( `
582
- <div>
583
- <richtext>
584
- <span @click="handler">{{label}}</span>
585
- </richtext>
586
- </div>
587
- ` )
588
- const instance = createInstance ( runtime , `
589
- new Vue({
590
- el: 'body',
591
- render: ${ render } ,
592
- staticRenderFns: ${ staticRenderFns } ,
593
- data: { label: 'AAA' },
594
- methods: {
595
- handler: function () {
596
- this.label = 'BBB'
597
- }
598
- }
599
- })
600
- ` )
601
- // instance.$fireEvent(instance.doc.body.children[0].ref, 'click', {})
602
- const richtext = instance . doc . body . children [ 0 ]
603
- const span = richtext . children [ 0 ] . ref
604
- instance . $fireEvent ( span . ref , 'click' , { } )
605
- setTimeout ( ( ) => {
606
- expect ( instance . getRealRoot ( ) . children [ 0 ] ) . toEqual ( {
607
- type : 'richtext' ,
608
- event : [ 'click' ] ,
609
- attr : {
610
- value : [ {
611
- type : 'span' ,
612
- attr : { value : 'BBB' }
613
- } ]
614
- }
615
- } )
616
- done ( )
617
- } , 0 )
618
- } )
619
- } )
620
-
621
567
describe ( 'itself' , ( ) => {
622
- // pending('work in progress')
623
568
it ( 'inline styles' , ( ) => {
624
569
expect ( compileSnippet ( runtime , `
625
570
<richtext style="background-color:red">
@@ -638,7 +583,6 @@ describe('richtext component', () => {
638
583
} )
639
584
640
585
it ( 'class list' , ( ) => {
641
- // pending('work in progress')
642
586
expect ( compileSnippet ( runtime , `
643
587
<richtext class="title">
644
588
<span class="large">ABCD</span>
@@ -661,6 +605,33 @@ describe('richtext component', () => {
661
605
} )
662
606
} )
663
607
608
+ it ( 'update styles' , ( ) => {
609
+ expect ( compileSnippet ( runtime , `
610
+ <richtext :class="classList" :style="{ backgroundColor: color }">
611
+ <span class="large">ABCD</span>
612
+ </richtext>
613
+ ` , `
614
+ data: { classList: ['unknow'], color: '#FF6600' },
615
+ style: {
616
+ title: { height: 200 },
617
+ large: { fontSize: 24 }
618
+ },
619
+ created: function () {
620
+ this.classList = ['title']
621
+ }
622
+ ` ) ) . toEqual ( {
623
+ type : 'richtext' ,
624
+ style : { backgroundColor : '#FF6600' , height : 200 } ,
625
+ attr : {
626
+ value : [ {
627
+ type : 'span' ,
628
+ style : { fontSize : 24 } ,
629
+ attr : { value : 'ABCD' }
630
+ } ]
631
+ }
632
+ } )
633
+ } )
634
+
664
635
it ( 'bind events' , ( done ) => {
665
636
const { render, staticRenderFns } = compileAndStringify ( `
666
637
<div>
@@ -698,5 +669,31 @@ describe('richtext component', () => {
698
669
done ( )
699
670
} , 0 )
700
671
} )
672
+
673
+ it ( 'v-for' , ( ) => {
674
+ expect ( compileSnippet ( runtime , `
675
+ <div>
676
+ <richtext v-for="k in labels">
677
+ <span>{{k}}</span>
678
+ </richtext>
679
+ </div>
680
+ ` , `
681
+ data: {
682
+ labels: ['A', 'B', 'C']
683
+ }
684
+ ` ) ) . toEqual ( {
685
+ type : 'div' ,
686
+ children : [ {
687
+ type : 'richtext' ,
688
+ attr : { value : [ { type : 'span' , attr : { value : 'A' } } ] }
689
+ } , {
690
+ type : 'richtext' ,
691
+ attr : { value : [ { type : 'span' , attr : { value : 'B' } } ] }
692
+ } , {
693
+ type : 'richtext' ,
694
+ attr : { value : [ { type : 'span' , attr : { value : 'C' } } ] }
695
+ } ]
696
+ } )
697
+ } )
701
698
} )
702
699
} )
0 commit comments