Skip to content

Commit 0ea2bb4

Browse files
Hanks10100yyx990803
authored andcommitted
feat(weex): support nested components in richtext
1 parent 09302a7 commit 0ea2bb4

File tree

2 files changed

+60
-34
lines changed

2 files changed

+60
-34
lines changed

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

+32-21
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,3 @@
1-
function parseChildren (h, options) {
2-
const children = options._renderChildren
3-
if (!children) {
4-
return []
5-
}
6-
7-
return children.map(vnode => {
8-
if (!vnode.tag && vnode.text) {
9-
return h('span', vnode.text)
10-
}
11-
return vnode
12-
})
13-
}
14-
151
function getVNodeType (vnode) {
162
const tagName = vnode.tag
173
if (!tagName) {
@@ -20,6 +6,14 @@ function getVNodeType (vnode) {
206
return tagName.replace(/vue\-component\-(\d+\-)?/, '')
217
}
228

9+
function isSimpleSpan (vnode) {
10+
return vnode.children && vnode.children.length === 1 && !vnode.children[0].tag
11+
}
12+
13+
function trimCSSUnit (prop) {
14+
return Number(prop.replace(/px$/i, '')) || prop
15+
}
16+
2317
function convertVNodeChildren (children) {
2418
if (!children.length) {
2519
return
@@ -28,15 +22,34 @@ function convertVNodeChildren (children) {
2822
const type = getVNodeType(vnode)
2923
const props = { type }
3024

31-
// TODO: filter
25+
// convert raw text node
26+
if (!type) {
27+
props.type = 'span'
28+
props.attr = {
29+
value: (vnode.text || '').trim()
30+
}
31+
}
32+
3233
if (vnode.data) {
3334
props.style = vnode.data.staticStyle
3435
props.attr = vnode.data.attrs
36+
37+
// TODO: convert inline styles
38+
if (props.style) {
39+
for (const key in props.style) {
40+
props.style[key] = trimCSSUnit(props.style[key])
41+
}
42+
}
43+
}
44+
45+
if (type === 'span' && isSimpleSpan(vnode)) {
46+
props.attr = props.attr || {}
47+
props.attr.value = vnode.children[0].text.trim()
48+
return props
3549
}
3650

37-
if (type === 'span') {
38-
props.attr = {}
39-
props.attr.value = vnode.text || vnode.children.map(c => c.text).join('').trim()
51+
if (vnode.children && vnode.children.length) {
52+
props.children = convertVNodeChildren(vnode.children)
4053
}
4154

4255
return props
@@ -47,11 +60,9 @@ export default {
4760
name: 'richtext',
4861
abstract: true,
4962
render (h) {
50-
const children = parseChildren(h, this.$options)
51-
const values = convertVNodeChildren(children)
5263
return h('weex:richtext', {
5364
attrs: {
54-
value: values
65+
value: convertVNodeChildren(this.$options._renderChildren || [])
5566
}
5667
})
5768
}

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

+28-13
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ describe('richtext component', () => {
5757
})
5858

5959
describe('span', () => {
60-
// pending('work in progress')
61-
6260
it('single node', () => {
6361
expect(compileSnippet(runtime, `
6462
<richtext>
@@ -126,8 +124,6 @@ describe('richtext component', () => {
126124
})
127125

128126
describe('a', () => {
129-
// pending('work in progress')
130-
131127
it('single node', () => {
132128
expect(compileSnippet(runtime, `
133129
<richtext>
@@ -166,8 +162,6 @@ describe('richtext component', () => {
166162
})
167163

168164
describe('image', () => {
169-
pending('work in progress')
170-
171165
it('single node', () => {
172166
expect(compileSnippet(runtime, `
173167
<richtext>
@@ -185,7 +179,6 @@ describe('richtext component', () => {
185179
})
186180

187181
it('multiple node', () => {
188-
// pending('work in progress')
189182
expect(compileSnippet(runtime, `
190183
<richtext>
191184
<image src="path/to/A.png"></image>
@@ -218,7 +211,7 @@ describe('richtext component', () => {
218211
attr: {
219212
value: [{
220213
type: 'image',
221-
style: { width: '150px', height: '150px' },
214+
style: { width: 150, height: 150 },
222215
attr: { src: 'path/to/profile.png' }
223216
}]
224217
}
@@ -227,8 +220,6 @@ describe('richtext component', () => {
227220
})
228221

229222
describe('nested', () => {
230-
pending('work in progress')
231-
232223
it('span', () => {
233224
expect(compileSnippet(runtime, `
234225
<richtext>
@@ -273,7 +264,7 @@ describe('richtext component', () => {
273264
<richtext>
274265
<span>title</span>
275266
<a href="http://remote.com/xx.js">
276-
<span>name</span>
267+
<span><span>name</span></span>
277268
<image src="path/to/yy.gif"></image>
278269
</a>
279270
</richtext>
@@ -288,7 +279,10 @@ describe('richtext component', () => {
288279
attr: { href: 'http://remote.com/xx.js' },
289280
children: [{
290281
type: 'span',
291-
attr: { value: 'name' }
282+
children: [{
283+
type: 'span',
284+
attr: { value: 'name' }
285+
}]
292286
}, {
293287
type: 'image',
294288
attr: { src: 'path/to/yy.gif' }
@@ -300,6 +294,27 @@ describe('richtext component', () => {
300294
})
301295

302296
describe('with styles', () => {
303-
pending('work in progress')
297+
// pending('work in progress')
298+
it('inline', () => {
299+
expect(compileSnippet(runtime, `
300+
<richtext>
301+
<span style="font-size:16px;color:#FF6600;">ABCD</span>
302+
<image style="width:40px;height:60px" src="path/to/A.png"></image>
303+
</richtext>
304+
`)).toEqual({
305+
type: 'richtext',
306+
attr: {
307+
value: [{
308+
type: 'span',
309+
style: { fontSize: 16, color: '#FF6600' },
310+
attr: { value: 'ABCD' }
311+
}, {
312+
type: 'image',
313+
style: { width: 40, height: 60 },
314+
attr: { src: 'path/to/A.png' }
315+
}]
316+
}
317+
})
318+
})
304319
})
305320
})

0 commit comments

Comments
 (0)