Skip to content

Commit d627161

Browse files
Hanks10100yyx990803
authored andcommitted
feat(weex richtext): support events and add more test cases
1 parent b609642 commit d627161

File tree

2 files changed

+122
-21
lines changed

2 files changed

+122
-21
lines changed

src/platforms/weex/runtime/components/richtext.js

+22-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
function getVNodeType (vnode) {
2-
const tagName = vnode.tag
3-
if (!tagName) {
2+
if (!vnode.tag) {
43
return ''
54
}
6-
return tagName.replace(/vue\-component\-(\d+\-)?/, '')
5+
return vnode.tag.replace(/vue\-component\-(\d+\-)?/, '')
76
}
87

98
function isSimpleSpan (vnode) {
109
return vnode.children && vnode.children.length === 1 && !vnode.children[0].tag
1110
}
1211

1312
function trimCSSUnit (prop) {
13+
// TODO: more reliable
1414
return Number(String(prop).replace(/px$/i, '')) || prop
1515
}
1616

1717
function parseStyle (vnode) {
18+
if (!vnode || !vnode.data) {
19+
return
20+
}
21+
1822
const { staticStyle, staticClass } = vnode.data
1923
if (vnode.data.style || vnode.data.class || staticStyle || staticClass) {
2024
const styles = Object.assign({}, staticStyle, vnode.data.style)
@@ -39,6 +43,7 @@ function convertVNodeChildren (children) {
3943
if (!children.length) {
4044
return
4145
}
46+
4247
return children.map(vnode => {
4348
const type = getVNodeType(vnode)
4449
const props = { type }
@@ -49,17 +54,20 @@ function convertVNodeChildren (children) {
4954
props.attr = {
5055
value: (vnode.text || '').trim()
5156
}
52-
}
53-
54-
if (vnode.data) {
57+
} else {
5558
props.style = parseStyle(vnode)
56-
props.attr = vnode.data.attrs
57-
}
59+
if (vnode.data) {
60+
props.attr = vnode.data.attrs
61+
if (vnode.data.on) {
62+
props.events = vnode.data.on
63+
}
64+
}
5865

59-
if (type === 'span' && isSimpleSpan(vnode)) {
60-
props.attr = props.attr || {}
61-
props.attr.value = vnode.children[0].text.trim()
62-
return props
66+
if (type === 'span' && isSimpleSpan(vnode)) {
67+
props.attr = props.attr || {}
68+
props.attr.value = vnode.children[0].text.trim()
69+
return props
70+
}
6371
}
6472

6573
if (vnode.children && vnode.children.length) {
@@ -72,9 +80,10 @@ function convertVNodeChildren (children) {
7280

7381
export default {
7482
name: 'richtext',
75-
abstract: true,
83+
// abstract: true,
7684
render (h) {
7785
return h('weex:richtext', {
86+
on: this._events,
7887
attrs: {
7988
value: convertVNodeChildren(this.$options._renderChildren || [])
8089
}

test/weex/runtime/component/richtext.spec.js

+100-8
Original file line numberDiff line numberDiff line change
@@ -577,34 +577,126 @@ describe('richtext component', () => {
577577

578578
describe('bind events', () => {
579579
pending('work in progress')
580-
it('inline', () => {
580+
it('inline', (done) => {
581581
const { render, staticRenderFns } = compileAndStringify(`
582582
<div>
583-
<richtext>
584-
<span @click="handler">Button</span>
585-
</richtext>
583+
<richtext>
584+
<span @click="handler">{{label}}</span>
585+
</richtext>
586586
</div>
587587
`)
588588
const instance = createInstance(runtime, `
589589
new Vue({
590590
el: 'body',
591591
render: ${render},
592592
staticRenderFns: ${staticRenderFns},
593+
data: { label: 'AAA' },
593594
methods: {
594-
handler: function () {}
595+
handler: function () {
596+
this.label = 'BBB'
597+
}
595598
}
596599
})
597600
`)
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({
599629
type: 'richtext',
630+
style: { backgroundColor: 'red' },
600631
attr: {
601632
value: [{
602633
type: 'span',
603-
events: { click: 'handler' },
604-
attr: { value: 'Button' }
634+
attr: { value: 'empty' }
605635
}]
606636
}
607637
})
608638
})
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+
})
609701
})
610702
})

0 commit comments

Comments
 (0)