@@ -577,34 +577,126 @@ describe('richtext component', () => {
577
577
578
578
describe ( 'bind events' , ( ) => {
579
579
pending ( 'work in progress' )
580
- it ( 'inline' , ( ) => {
580
+ it ( 'inline' , ( done ) => {
581
581
const { render, staticRenderFns } = compileAndStringify ( `
582
582
<div>
583
- <richtext>
584
- <span @click="handler">Button </span>
585
- </richtext>
583
+ <richtext>
584
+ <span @click="handler">{{label}} </span>
585
+ </richtext>
586
586
</div>
587
587
` )
588
588
const instance = createInstance ( runtime , `
589
589
new Vue({
590
590
el: 'body',
591
591
render: ${ render } ,
592
592
staticRenderFns: ${ staticRenderFns } ,
593
+ data: { label: 'AAA' },
593
594
methods: {
594
- handler: function () {}
595
+ handler: function () {
596
+ this.label = 'BBB'
597
+ }
595
598
}
596
599
})
597
600
` )
598
- expect ( instance . getRealRoot ( ) . children [ 0 ] ) . toEqual ( {
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
+ describe ( 'itself' , ( ) => {
622
+ // pending('work in progress')
623
+ it ( 'inline styles' , ( ) => {
624
+ expect ( compileSnippet ( runtime , `
625
+ <richtext style="background-color:red">
626
+ <span>empty</span>
627
+ </richtext>
628
+ ` ) ) . toEqual ( {
599
629
type : 'richtext' ,
630
+ style : { backgroundColor : 'red' } ,
600
631
attr : {
601
632
value : [ {
602
633
type : 'span' ,
603
- events : { click : 'handler' } ,
604
- attr : { value : 'Button' }
634
+ attr : { value : 'empty' }
605
635
} ]
606
636
}
607
637
} )
608
638
} )
639
+
640
+ it ( 'class list' , ( ) => {
641
+ // pending('work in progress')
642
+ expect ( compileSnippet ( runtime , `
643
+ <richtext class="title">
644
+ <span class="large">ABCD</span>
645
+ </richtext>
646
+ ` , `
647
+ style: {
648
+ title: { backgroundColor: '#FF6600', height: 200 },
649
+ large: { fontSize: 24 }
650
+ }
651
+ ` ) ) . toEqual ( {
652
+ type : 'richtext' ,
653
+ style : { backgroundColor : '#FF6600' , height : 200 } ,
654
+ attr : {
655
+ value : [ {
656
+ type : 'span' ,
657
+ style : { fontSize : 24 } ,
658
+ attr : { value : 'ABCD' }
659
+ } ]
660
+ }
661
+ } )
662
+ } )
663
+
664
+ it ( 'bind events' , ( done ) => {
665
+ const { render, staticRenderFns } = compileAndStringify ( `
666
+ <div>
667
+ <richtext @click="handler">
668
+ <span>Label: {{label}}</span>
669
+ </richtext>
670
+ </div>
671
+ ` )
672
+ const instance = createInstance ( runtime , `
673
+ new Vue({
674
+ el: 'body',
675
+ render: ${ render } ,
676
+ staticRenderFns: ${ staticRenderFns } ,
677
+ data: { label: 'AAA' },
678
+ methods: {
679
+ handler: function () {
680
+ this.label = 'BBB'
681
+ }
682
+ }
683
+ })
684
+ ` )
685
+ const richtext = instance . doc . body . children [ 0 ]
686
+ instance . $fireEvent ( richtext . ref , 'click' , { } )
687
+ setTimeout ( ( ) => {
688
+ expect ( instance . getRealRoot ( ) . children [ 0 ] ) . toEqual ( {
689
+ type : 'richtext' ,
690
+ event : [ 'click' ] ,
691
+ attr : {
692
+ value : [ {
693
+ type : 'span' ,
694
+ attr : { value : 'Label: BBB' }
695
+ } ]
696
+ }
697
+ } )
698
+ done ( )
699
+ } , 0 )
700
+ } )
609
701
} )
610
702
} )
0 commit comments