Skip to content

Commit f1c96e7

Browse files
Hanks10100yyx990803
authored andcommitted
feat(weex): add basic support of richtext
1 parent 82f03de commit f1c96e7

File tree

4 files changed

+64
-2
lines changed

4 files changed

+64
-2
lines changed

src/platforms/weex/entry-framework.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,12 @@ function createVueModuleInstance (instanceId, moduleGetter) {
289289

290290
// patch reserved tag detection to account for dynamically registered
291291
// components
292+
const weexRegex = /^weex:/i
292293
const isReservedTag = Vue.config.isReservedTag || (() => false)
293294
Vue.config.isReservedTag = name => {
294-
return components[name] || isReservedTag(name)
295+
return components[name] || isReservedTag(name) || weexRegex.test(name)
295296
}
297+
Vue.config.parsePlatformTagName = name => name.replace(weexRegex, '')
296298

297299
// expose weex-specific info
298300
Vue.prototype.$instanceId = instanceId
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
import Richtext from './richtext'
12
import Transition from './transition'
23
import TransitionGroup from './transition-group'
34

45
export default {
6+
Richtext,
57
Transition,
68
TransitionGroup
79
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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+
15+
function getVNodeType (vnode) {
16+
const tagName = vnode.tag
17+
if (!tagName) {
18+
return ''
19+
}
20+
return tagName.replace(/vue\-component\-(\d+\-)?/, '')
21+
}
22+
23+
function convertVNodeChildren (children) {
24+
if (!children.length) {
25+
return
26+
}
27+
return children.map(vnode => {
28+
const type = getVNodeType(vnode)
29+
const props = { type }
30+
31+
// TODO: filter
32+
if (vnode.data) {
33+
props.style = vnode.data.staticStyle
34+
props.attr = vnode.data.attrs
35+
}
36+
37+
if (type === 'span') {
38+
props.attr = {}
39+
props.attr.value = vnode.text || vnode.children.map(c => c.text).join('').trim()
40+
}
41+
42+
return props
43+
})
44+
}
45+
46+
export default {
47+
name: 'richtext',
48+
abstract: true,
49+
render (h) {
50+
const children = parseChildren(h, this.$options)
51+
const values = convertVNodeChildren(children)
52+
return h('weex:richtext', {
53+
attrs: {
54+
value: values
55+
}
56+
})
57+
}
58+
}

src/platforms/weex/util/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { makeMap } from 'shared/util'
44

55
export const isReservedTag = makeMap(
66
'template,script,style,element,content,slot,link,meta,svg,view,' +
7-
'a,div,img,image,text,span,richtext,input,switch,textarea,spinner,select,' +
7+
'a,div,img,image,text,span,input,switch,textarea,spinner,select,' +
88
'slider,slider-neighbor,indicator,trisition,trisition-group,canvas,' +
99
'list,cell,header,loading,loading-indicator,refresh,scrollable,scroller,' +
1010
'video,web,embed,tabbar,tabheader,datepicker,timepicker,marquee,countdown',

0 commit comments

Comments
 (0)