Skip to content

Commit 3e4d926

Browse files
Hanks10100yyx990803
authored andcommitted
feat(weex richtext): treat richtext as runtime components
1 parent d627161 commit 3e4d926

File tree

5 files changed

+74
-64
lines changed

5 files changed

+74
-64
lines changed

src/platforms/weex/entry-framework.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,11 @@ function createVueModuleInstance (instanceId, moduleGetter) {
291291
// components
292292
const weexRegex = /^weex:/i
293293
const isReservedTag = Vue.config.isReservedTag || (() => false)
294+
const isRuntimeComponent = Vue.config.isRuntimeComponent || (() => false)
294295
Vue.config.isReservedTag = name => {
295-
return components[name] || isReservedTag(name) || weexRegex.test(name)
296+
return (!isRuntimeComponent(name) && components[name]) ||
297+
isReservedTag(name) ||
298+
weexRegex.test(name)
296299
}
297300
Vue.config.parsePlatformTagName = name => name.replace(weexRegex, '')
298301

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

+7-4
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,13 @@ function isSimpleSpan (vnode) {
99
return vnode.children && vnode.children.length === 1 && !vnode.children[0].tag
1010
}
1111

12+
const cssLengthRE = /^([+-]?[0-9]+(\.[0-9]+)?)(px|em|ex|%|in|cm|mm|pt|pc)$/i
1213
function trimCSSUnit (prop) {
13-
// TODO: more reliable
14-
return Number(String(prop).replace(/px$/i, '')) || prop
14+
const res = String(prop).match(cssLengthRE)
15+
if (res) {
16+
return Number(res[1])
17+
}
18+
return prop
1519
}
1620

1721
function parseStyle (vnode) {
@@ -23,8 +27,7 @@ function parseStyle (vnode) {
2327
if (vnode.data.style || vnode.data.class || staticStyle || staticClass) {
2428
const styles = Object.assign({}, staticStyle, vnode.data.style)
2529

26-
// TODO: more reliable
27-
const cssMap = vnode.context.$options.style
30+
const cssMap = vnode.context.$options.style || {}
2831
const classList = [].concat(staticClass, vnode.data.class)
2932
classList.forEach(name => {
3033
if (name && cssMap[name]) {

src/platforms/weex/runtime/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ import {
1010
query,
1111
mustUseProp,
1212
isReservedTag,
13+
isRuntimeComponent,
1314
isUnknownElement
1415
} from 'weex/util/index'
1516

1617
// install platform specific utils
1718
Vue.config.mustUseProp = mustUseProp
1819
Vue.config.isReservedTag = isReservedTag
20+
Vue.config.isRuntimeComponent = isRuntimeComponent
1921
Vue.config.isUnknownElement = isUnknownElement
2022

2123
// install platform runtime directives and components

src/platforms/weex/util/index.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { makeMap } from 'shared/util'
55
export const isReservedTag = makeMap(
66
'template,script,style,element,content,slot,link,meta,svg,view,' +
77
'a,div,img,image,text,span,input,switch,textarea,spinner,select,' +
8-
'slider,slider-neighbor,indicator,trisition,trisition-group,canvas,' +
8+
'slider,slider-neighbor,indicator,canvas,' +
99
'list,cell,header,loading,loading-indicator,refresh,scrollable,scroller,' +
1010
'video,web,embed,tabbar,tabheader,datepicker,timepicker,marquee,countdown',
1111
true
@@ -19,6 +19,11 @@ export const canBeLeftOpenTag = makeMap(
1919
true
2020
)
2121

22+
export const isRuntimeComponent = makeMap(
23+
'richtext,trisition,trisition-group',
24+
true
25+
)
26+
2227
export const isUnaryTag = makeMap(
2328
'embed,img,image,input,link,meta',
2429
true

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

+55-58
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ describe('richtext component', () => {
3131
})
3232

3333
it('with no child', () => {
34-
// pending('work in progress')
3534
expect(compileSnippet(runtime, `
3635
<richtext></richtext>
3736
`)).toEqual({
@@ -40,7 +39,6 @@ describe('richtext component', () => {
4039
})
4140

4241
it('with single text node', () => {
43-
// pending('work in progress')
4442
expect(compileSnippet(runtime, `
4543
<richtext>single</richtext>
4644
`)).toEqual({
@@ -57,7 +55,6 @@ describe('richtext component', () => {
5755
})
5856

5957
describe('span', () => {
60-
// pending('work in progress')
6158
it('single node', () => {
6259
expect(compileSnippet(runtime, `
6360
<richtext>
@@ -125,7 +122,6 @@ describe('richtext component', () => {
125122
})
126123

127124
describe('a', () => {
128-
// pending('work in progress')
129125
it('single node', () => {
130126
expect(compileSnippet(runtime, `
131127
<richtext>
@@ -164,7 +160,6 @@ describe('richtext component', () => {
164160
})
165161

166162
describe('image', () => {
167-
// pending('work in progress')
168163
it('single node', () => {
169164
expect(compileSnippet(runtime, `
170165
<richtext>
@@ -223,7 +218,6 @@ describe('richtext component', () => {
223218
})
224219

225220
describe('nested', () => {
226-
// pending('work in progress')
227221
it('span', () => {
228222
expect(compileSnippet(runtime, `
229223
<richtext>
@@ -298,13 +292,11 @@ describe('richtext component', () => {
298292
})
299293

300294
describe('with styles', () => {
301-
// pending('work in progress')
302295
it('inline', () => {
303-
// pending('work in progress')
304296
expect(compileSnippet(runtime, `
305297
<richtext>
306298
<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>
308300
</richtext>
309301
`)).toEqual({
310302
type: 'richtext',
@@ -315,15 +307,14 @@ describe('richtext component', () => {
315307
attr: { value: 'ABCD' }
316308
}, {
317309
type: 'image',
318-
style: { width: 40, height: 60 },
310+
style: { width: 33.33, height: 66.67 },
319311
attr: { src: 'path/to/A.png' }
320312
}]
321313
}
322314
})
323315
})
324316

325317
it('class list', () => {
326-
// pending('work in progress')
327318
expect(compileSnippet(runtime, `
328319
<richtext>
329320
<image class="icon" src="path/to/A.png"></image>
@@ -353,7 +344,6 @@ describe('richtext component', () => {
353344
})
354345

355346
describe('data binding', () => {
356-
// pending('work in progress')
357347
it('simple', () => {
358348
expect(compileSnippet(runtime, `
359349
<richtext>
@@ -502,7 +492,6 @@ describe('richtext component', () => {
502492
})
503493

504494
it('class list', () => {
505-
// pending('work in progress')
506495
expect(compileSnippet(runtime, `
507496
<richtext>
508497
<image :class="classList" src="path/to/A.png"></image>
@@ -575,51 +564,7 @@ describe('richtext component', () => {
575564
})
576565
})
577566

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-
621567
describe('itself', () => {
622-
// pending('work in progress')
623568
it('inline styles', () => {
624569
expect(compileSnippet(runtime, `
625570
<richtext style="background-color:red">
@@ -638,7 +583,6 @@ describe('richtext component', () => {
638583
})
639584

640585
it('class list', () => {
641-
// pending('work in progress')
642586
expect(compileSnippet(runtime, `
643587
<richtext class="title">
644588
<span class="large">ABCD</span>
@@ -661,6 +605,33 @@ describe('richtext component', () => {
661605
})
662606
})
663607

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+
664635
it('bind events', (done) => {
665636
const { render, staticRenderFns } = compileAndStringify(`
666637
<div>
@@ -698,5 +669,31 @@ describe('richtext component', () => {
698669
done()
699670
}, 0)
700671
})
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+
})
701698
})
702699
})

0 commit comments

Comments
 (0)