Skip to content

Commit 7cf188e

Browse files
Hanks10100yyx990803
authored andcommitted
feat(weex): support batch update styles and attributes (#7046)
* feat(weex): support batch update styles * feat(weex): support batch update attributes
1 parent c2b1cfe commit 7cf188e

File tree

4 files changed

+42
-9
lines changed

4 files changed

+42
-9
lines changed

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

+11-2
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,27 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWithData) {
1515
attrs = vnode.data.attrs = extend({}, attrs)
1616
}
1717

18+
const supportBatchUpdate = typeof elm.setAttrs === 'function'
19+
const batchedAttrs = {}
1820
for (key in attrs) {
1921
cur = attrs[key]
2022
old = oldAttrs[key]
2123
if (old !== cur) {
22-
elm.setAttr(key, cur)
24+
supportBatchUpdate
25+
? (batchedAttrs[key] = cur)
26+
: elm.setAttr(key, cur)
2327
}
2428
}
2529
for (key in oldAttrs) {
2630
if (attrs[key] == null) {
27-
elm.setAttr(key)
31+
supportBatchUpdate
32+
? (batchedAttrs[key] = undefined)
33+
: elm.setAttr(key)
2834
}
2935
}
36+
if (supportBatchUpdate) {
37+
elm.setAttrs(batchedAttrs)
38+
}
3039
}
3140

3241
export default {

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

+6-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,12 @@ function updateClass (oldVnode: VNodeWithData, vnode: VNodeWithData) {
3636
}
3737

3838
const style = getStyle(oldClassList, classList, ctx)
39-
for (const key in style) {
40-
el.setStyle(key, style[key])
39+
if (typeof el.setStyles === 'function') {
40+
el.setStyles(style)
41+
} else {
42+
for (const key in style) {
43+
el.setStyle(key, style[key])
44+
}
4145
}
4246
}
4347

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

+19-3
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,18 @@ function createStyle (oldVnode: VNodeWithData, vnode: VNodeWithData) {
1111
}
1212
const elm = vnode.elm
1313
const staticStyle = vnode.data.staticStyle
14+
const supportBatchUpdate = typeof elm.setStyles === 'function'
15+
const batchedStyles = {}
1416
for (const name in staticStyle) {
1517
if (staticStyle[name]) {
16-
elm.setStyle(normalize(name), staticStyle[name])
18+
supportBatchUpdate
19+
? (batchedStyles[normalize(name)] = staticStyle[name])
20+
: elm.setStyle(normalize(name), staticStyle[name])
1721
}
1822
}
23+
if (supportBatchUpdate) {
24+
elm.setStyles(batchedStyles)
25+
}
1926
updateStyle(oldVnode, vnode)
2027
}
2128

@@ -41,14 +48,23 @@ function updateStyle (oldVnode: VNodeWithData, vnode: VNodeWithData) {
4148
style = vnode.data.style = extend({}, style)
4249
}
4350

51+
const supportBatchUpdate = typeof elm.setStyles === 'function'
52+
const batchedStyles = {}
4453
for (name in oldStyle) {
4554
if (!style[name]) {
46-
elm.setStyle(normalize(name), '')
55+
supportBatchUpdate
56+
? (batchedStyles[normalize(name)] = '')
57+
: elm.setStyle(normalize(name), '')
4758
}
4859
}
4960
for (name in style) {
5061
cur = style[name]
51-
elm.setStyle(normalize(name), cur)
62+
supportBatchUpdate
63+
? (batchedStyles[normalize(name)] = cur)
64+
: elm.setStyle(normalize(name), cur)
65+
}
66+
if (supportBatchUpdate) {
67+
elm.setStyles(batchedStyles)
5268
}
5369
}
5470

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

+6-2
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,12 @@ function enter (_, vnode) {
119119
beforeEnterHook && beforeEnterHook(el)
120120

121121
if (startState) {
122-
for (const key in startState) {
123-
el.setStyle(key, startState[key])
122+
if (typeof el.setStyles === 'function') {
123+
el.setStyles(startState)
124+
} else {
125+
for (const key in startState) {
126+
el.setStyle(key, startState[key])
127+
}
124128
}
125129
}
126130

0 commit comments

Comments
 (0)