perf(wxs): improve performance with wxs

This commit is contained in:
zhongnan 2020-12-17 17:24:20 +08:00
parent 96219debee
commit daa56aa5c6
13 changed files with 124 additions and 147 deletions

View File

@ -1,20 +1,20 @@
/* eslint-disable */ /* eslint-disable */
var utils = require('../wxs/utils.wxs'); var style = require('../wxs/style.wxs');
var addUnit = require('../wxs/add-unit.wxs');
function iconStyle(checkedColor, value, disabled, parentDisabled, iconSize) { function iconStyle(checkedColor, value, disabled, parentDisabled, iconSize) {
var styles = [['font-size', utils.addUnit(iconSize)]]; var styles = {
'font-size': addUnit(iconSize),
};
if (checkedColor && value && !disabled && !parentDisabled) { if (checkedColor && value && !disabled && !parentDisabled) {
styles.push(['border-color', checkedColor]); styles['border-color'] = checkedColor;
styles.push(['background-color', checkedColor]); styles['background-color'] = checkedColor;
} }
return styles return style(styles);
.map(function(item) {
return item.join(':');
})
.join(';');
} }
module.exports = { module.exports = {
iconStyle: iconStyle iconStyle: iconStyle,
}; };

View File

@ -1,6 +1,5 @@
import { link } from '../mixins/link'; import { link } from '../mixins/link';
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { addUnit } from '../common/utils';
VantComponent({ VantComponent({
relation: { relation: {
@ -48,40 +47,8 @@ VantComponent({
direction, direction,
iconSize, iconSize,
} = data; } = data;
const width = `${100 / columnNum}%`;
const styleWrapper: string[] = [];
styleWrapper.push(`width: ${width}`);
if (square) {
styleWrapper.push(`padding-top: ${width}`);
}
if (gutter) {
const gutterValue = addUnit(gutter);
styleWrapper.push(`padding-right: ${gutterValue}`);
const index = children.indexOf(this);
if (index >= columnNum && !square) {
styleWrapper.push(`margin-top: ${gutterValue}`);
}
}
let contentStyle = '';
if (square && gutter) {
const gutterValue = addUnit(gutter);
contentStyle = `
right: ${gutterValue};
bottom: ${gutterValue};
height: auto;
`;
}
this.setData({ this.setData({
viewStyle: styleWrapper.join('; '),
contentStyle,
center, center,
border, border,
square, square,
@ -89,6 +56,8 @@ VantComponent({
clickable, clickable,
direction, direction,
iconSize, iconSize,
index: children.indexOf(this),
columnNum,
}); });
}, },

View File

@ -1,9 +1,14 @@
<wxs src="../wxs/utils.wxs" module="utils" /> <wxs src="../wxs/utils.wxs" module="utils" />
<wxs src="./index.wxs" module="computed" />
<view class="custom-class {{ utils.bem('grid-item', { square }) }}" style="{{ viewStyle }}" bindtap="onClick"> <view
class="custom-class {{ utils.bem('grid-item', { square }) }}"
style="{{ computed.wrapperStyle({ square, gutter, columnNum, index }) }}"
bindtap="onClick"
>
<view <view
class="content-class {{ utils.bem('grid-item__content', [direction, { center, square, clickable, surround: border && gutter }]) }} {{ border ? 'van-hairline--surround' : '' }}" class="content-class {{ utils.bem('grid-item__content', [direction, { center, square, clickable, surround: border && gutter }]) }} {{ border ? 'van-hairline--surround' : '' }}"
style="{{ contentStyle }}" style="{{ computed.contentStyle({ square, gutter }) }}"
> >
<block wx:if="{{ useSlot }}"> <block wx:if="{{ useSlot }}">
<slot /> <slot />

View File

@ -0,0 +1,32 @@
/* eslint-disable */
var style = require('../wxs/style.wxs');
var addUnit = require('../wxs/add-unit.wxs');
function wrapperStyle(data) {
var width = 100 / data.columnNum + '%';
return style({
width: width,
'padding-top': data.square ? width : null,
'padding-right': addUnit(data.gutter),
'margin-top':
data.index >= data.columnNum && !data.square
? addUnit(data.gutter)
: null,
});
}
function contentStyle(data) {
return data.square
? style({
right: addUnit(data.gutter),
bottom: addUnit(data.gutter),
height: 'auto',
})
: '';
}
module.exports = {
wrapperStyle: wrapperStyle,
contentStyle: contentStyle,
};

View File

@ -1,5 +1,4 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { addUnit } from '../common/utils';
VantComponent({ VantComponent({
relation: { relation: {
@ -47,19 +46,6 @@ VantComponent({
}, },
}, },
data: {
viewStyle: '',
},
created() {
const { gutter } = this.data;
if (gutter) {
this.setData({
viewStyle: `padding-left: ${addUnit(gutter)}`,
});
}
},
methods: { methods: {
updateChildren() { updateChildren() {
this.children.forEach( this.children.forEach(

View File

@ -1,3 +1,8 @@
<view class="van-grid custom-class {{ border && !gutter ? 'van-hairline--top' : '' }}" style="{{ viewStyle }}"> <wxs src="./index.wxs" module="computed" />
<view
class="van-grid custom-class {{ border && !gutter ? 'van-hairline--top' : '' }}"
style="{{ computed.rootStyle({ gutter }) }}"
>
<slot /> <slot />
</view> </view>

13
packages/grid/index.wxs Normal file
View File

@ -0,0 +1,13 @@
/* eslint-disable */
var style = require('../wxs/style.wxs');
var addUnit = require('../wxs/add-unit.wxs');
function rootStyle(data) {
return style({
'padding-left': addUnit(data.gutter),
});
}
module.exports = {
rootStyle: rootStyle,
};

View File

@ -1,10 +1,9 @@
<wxs src="../wxs/utils.wxs" module="utils" /> <wxs src="./index.wxs" module="computed" />
<wxs src="./computed.wxs" module="computed" />
<view <view
class="{{ computed.rootClass({ classPrefix, name }) }}" class="{{ computed.rootClass({ classPrefix, name }) }}"
style="{{ computed.rootStyle({ customStyle, color, size }) }}" style="{{ computed.rootStyle({ customStyle, color, size }) }}"
bind:tap="onClick" bindtap="onClick"
> >
<van-info <van-info
wx:if="{{ info !== null || dot }}" wx:if="{{ info !== null || dot }}"

View File

@ -1,5 +1,6 @@
/* eslint-disable */ /* eslint-disable */
var utils = require('../wxs/utils.wxs'); var style = require('../wxs/style.wxs');
var addUnit = require('../wxs/add-unit.wxs');
function isImage(name) { function isImage(name) {
return name.indexOf('/') !== -1; return name.indexOf('/') !== -1;
@ -22,25 +23,13 @@ function rootClass(data) {
} }
function rootStyle(data) { function rootStyle(data) {
var styles = []; return style([
{
if (data.color) { color: data.color,
styles.push(['color', data.color]); 'font-size': addUnit(data.size),
} },
data.customStyle,
if (data.size) { ]);
styles.push(['font-size', utils.addUnit(data.size)]);
}
if (data.customStyle) {
styles.push([data.customStyle]);
}
return styles
.map(function (pair) {
return pair.join(':');
})
.join(';');
} }
module.exports = { module.exports = {

View File

@ -1,17 +1,7 @@
import { addUnit, isDef } from '../common/utils';
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { button } from '../mixins/button'; import { button } from '../mixins/button';
import { openType } from '../mixins/open-type'; import { openType } from '../mixins/open-type';
const FIT_MODE_MAP = {
none: 'center',
fill: 'scaleToFill',
cover: 'aspectFill',
contain: 'aspectFit',
widthFix: 'widthFix',
heightFix: 'heightFix',
};
VantComponent({ VantComponent({
mixins: [button, openType], mixins: [button, openType],
@ -28,14 +18,8 @@ VantComponent({
}, },
}, },
round: Boolean, round: Boolean,
width: { width: null,
type: null, height: null,
observer: 'setStyle',
},
height: {
type: null,
observer: 'setStyle',
},
radius: null, radius: null,
lazyLoad: Boolean, lazyLoad: Boolean,
useErrorSlot: Boolean, useErrorSlot: Boolean,
@ -44,7 +28,6 @@ VantComponent({
fit: { fit: {
type: String, type: String,
value: 'fill', value: 'fill',
observer: 'setMode',
}, },
showError: { showError: {
type: Boolean, type: Boolean,
@ -62,38 +45,7 @@ VantComponent({
viewStyle: '', viewStyle: '',
}, },
mounted() {
this.setMode();
this.setStyle();
},
methods: { methods: {
setMode() {
this.setData({
mode: FIT_MODE_MAP[this.data.fit],
});
},
setStyle() {
const { width, height, radius } = this.data;
let style = '';
if (isDef(width)) {
style += `width: ${addUnit(width)};`;
}
if (isDef(height)) {
style += `height: ${addUnit(height)};`;
}
if (isDef(radius)) {
style += 'overflow: hidden;';
style += `border-radius: ${addUnit(radius)};`;
}
this.setData({ viewStyle: style });
},
onLoad(event) { onLoad(event) {
this.setData({ this.setData({
loading: false, loading: false,

View File

@ -1,14 +1,15 @@
<wxs src="../wxs/utils.wxs" module="utils" /> <wxs src="../wxs/utils.wxs" module="utils" />
<wxs src="./index.wxs" module="computed" />
<view <view
style="{{ viewStyle }}" style="{{ computed.rootStyle({ width, height, radius }) }}"
class="custom-class {{ utils.bem('image', { round })}}" class="custom-class {{ utils.bem('image', { round })}}"
bind:tap="onClick" bind:tap="onClick"
> >
<image <image
wx:if="{{ !error }}" wx:if="{{ !error }}"
src="{{ src }}" src="{{ src }}"
mode="{{ mode }}" mode="{{ computed.mode(fit) }}"
lazy-load="{{ lazyLoad }}" lazy-load="{{ lazyLoad }}"
class="image-class van-image__img" class="image-class van-image__img"
show-menu-by-longpress="{{ showMenuByLongpress }}" show-menu-by-longpress="{{ showMenuByLongpress }}"

32
packages/image/index.wxs Normal file
View File

@ -0,0 +1,32 @@
/* eslint-disable */
var style = require('../wxs/style.wxs');
var addUnit = require('../wxs/add-unit.wxs');
function rootStyle(data) {
return style([
{
width: addUnit(data.width),
height: addUnit(data.height),
'border-radius': addUnit(data.radius),
},
data.radius ? 'overflow: hidden' : null,
]);
}
var FIT_MODE_MAP = {
none: 'center',
fill: 'scaleToFill',
cover: 'aspectFill',
contain: 'aspectFit',
widthFix: 'widthFix',
heightFix: 'heightFix',
};
function mode(fit) {
return FIT_MODE_MAP[fit];
}
module.exports = {
rootStyle: rootStyle,
mode: mode,
};

View File

@ -1,18 +1,12 @@
/* eslint-disable */ /* eslint-disable */
var utils = require('../wxs/utils.wxs'); var style = require('../wxs/style.wxs');
var addUnit = require('../wxs/add-unit.wxs');
function barStyle(barHeight, activeColor) { function barStyle(barHeight, activeColor) {
var styles = [['height', utils.addUnit(barHeight)]]; return style({
height: addUnit(barHeight),
if (activeColor) { background: activeColor,
styles.push(['background', activeColor]); });
}
return styles
.map(function (item) {
return item.join(':');
})
.join(';');
} }
module.exports = { module.exports = {