Skip to content

Commit 6226503

Browse files
imyzfyyx990803
authored andcommitted
feat(weex): support object syntax of class (#7930)
1 parent ef0b250 commit 6226503

File tree

4 files changed

+95
-20
lines changed

4 files changed

+95
-20
lines changed

src/platforms/weex/runtime/modules/class.js

+19-20
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* @flow */
22

3-
import { extend } from 'shared/util'
3+
import { extend, isObject } from 'shared/util'
44

55
function updateClass (oldVnode: VNodeWithData, vnode: VNodeWithData) {
66
const el = vnode.elm
@@ -15,25 +15,8 @@ function updateClass (oldVnode: VNodeWithData, vnode: VNodeWithData) {
1515
return
1616
}
1717

18-
const oldClassList = []
19-
// unlike web, weex vnode staticClass is an Array
20-
const oldStaticClass: any = oldData.staticClass
21-
if (oldStaticClass) {
22-
oldClassList.push.apply(oldClassList, oldStaticClass)
23-
}
24-
if (oldData.class) {
25-
oldClassList.push.apply(oldClassList, oldData.class)
26-
}
27-
28-
const classList = []
29-
// unlike web, weex vnode staticClass is an Array
30-
const staticClass: any = data.staticClass
31-
if (staticClass) {
32-
classList.push.apply(classList, staticClass)
33-
}
34-
if (data.class) {
35-
classList.push.apply(classList, data.class)
36-
}
18+
const oldClassList = makeClassList(oldData)
19+
const classList = makeClassList(data)
3720

3821
if (typeof el.setClassList === 'function') {
3922
el.setClassList(classList)
@@ -49,6 +32,22 @@ function updateClass (oldVnode: VNodeWithData, vnode: VNodeWithData) {
4932
}
5033
}
5134

35+
function makeClassList (data: VNodeData): Array<string> {
36+
const classList = []
37+
// unlike web, weex vnode staticClass is an Array
38+
const staticClass: any = data.staticClass
39+
const dataClass = data.class
40+
if (staticClass) {
41+
classList.push.apply(classList, staticClass)
42+
}
43+
if (Array.isArray(dataClass)) {
44+
classList.push.apply(classList, dataClass)
45+
} else if (isObject(dataClass)) {
46+
classList.push.apply(classList, Object.keys(dataClass).filter(className => dataClass[className]))
47+
}
48+
return classList
49+
}
50+
5251
function getStyle (oldClassList: Array<string>, classList: Array<string>, ctx: Component): Object {
5352
// style is a weex-only injected object
5453
// compiled from <style> tags in weex files

test/weex/cases/cases.spec.js

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ function createEventTestCase (name) {
5454
describe('Usage', () => {
5555
describe('render', () => {
5656
it('sample', createRenderTestCase('render/sample'))
57+
it('class', createRenderTestCase('render/class'))
5758
})
5859

5960
describe('event', () => {

test/weex/cases/render/class.vdom.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
({
2+
type: 'div',
3+
children: [{
4+
type: 'div',
5+
classList: ['box', 'box1']
6+
}, {
7+
type: 'div',
8+
classList: ['box', 'box2']
9+
}, {
10+
type: 'div',
11+
classList: ['box', 'box3']
12+
}, {
13+
type: 'div',
14+
classList: ['box', 'box4']
15+
}, {
16+
type: 'div',
17+
classList: ['box', 'box5']
18+
}]
19+
})

test/weex/cases/render/class.vue

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<template>
2+
<div>
3+
<div :class="class1"></div>
4+
<div :class="class2"></div>
5+
<div class="box" :class="class3"></div>
6+
<div class="box" :class="class4"></div>
7+
<div class="box" :class="{ box5: class5 }"></div>
8+
</div>
9+
</template>
10+
11+
<style scoped>
12+
.box {
13+
width: 100px;
14+
height: 100px;
15+
}
16+
17+
.box1 {
18+
background-color: #DDD;
19+
}
20+
21+
.box2 {
22+
background-color: #CCC;
23+
}
24+
25+
.box3 {
26+
background-color: #BBB;
27+
}
28+
29+
.box4 {
30+
background-color: #AAA;
31+
}
32+
33+
.box5 {
34+
background-color: #999;
35+
}
36+
</style>
37+
38+
<script>
39+
module.exports = {
40+
data () {
41+
return {
42+
class1: ['box', 'box1'],
43+
class2: {
44+
'box': true,
45+
'box1': false,
46+
'box2': true
47+
},
48+
class3: ['box3'],
49+
class4: {
50+
'box4': true
51+
},
52+
class5: true
53+
}
54+
}
55+
}
56+
</script>

0 commit comments

Comments
 (0)