perf(icon): use wxs (#3791)

This commit is contained in:
rex 2020-11-29 18:24:26 +08:00 committed by GitHub
parent 35b2c1d99d
commit 166ba61c0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 56 additions and 13 deletions

View File

@ -10,9 +10,8 @@ page {
}
.icon {
display: block;
margin: 16px 0;
color: #323233;
color: #323233 !important;
}
.text {

View File

@ -0,0 +1,50 @@
/* eslint-disable */
var utils = require('../wxs/utils.wxs');
function isImage(name) {
return name.indexOf('/') !== -1;
}
function rootClass(data) {
var classes = ['custom-class'];
if (data.classPrefix != null) {
classes.push(data.classPrefix);
}
if (isImage(data.name)) {
classes.push('van-icon--image');
} else if (data.classPrefix != null) {
classes.push(data.classPrefix + '-' + data.name);
}
return classes.join(' ');
}
function rootStyle(data) {
var styles = [];
if (data.color) {
styles.push(['color', data.color]);
}
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 = {
isImage: isImage,
rootClass: rootClass,
rootStyle: rootStyle,
};

View File

@ -11,14 +11,7 @@ VantComponent({
type: String,
value: 'van-icon',
},
name: {
type: String,
observer(val) {
this.setData({
isImageName: val.indexOf('/') !== -1,
});
},
},
name: String,
},
methods: {

View File

@ -1,8 +1,9 @@
<wxs src="../wxs/utils.wxs" module="utils" />
<wxs src="./computed.wxs" module="computed" />
<view
class="custom-class {{ classPrefix }} {{ isImageName ? 'van-icon--image' : classPrefix + '-' + name }}"
style="color: {{ color }};font-size: {{ utils.addUnit(size) }};{{ customStyle }}"
class="{{ computed.rootClass({ classPrefix, name }) }}"
style="{{ computed.rootStyle({ customStyle, color, size }) }}"
bind:tap="onClick"
>
<van-info
@ -12,7 +13,7 @@
custom-class="van-icon__info"
/>
<image
wx:if="{{ isImageName }}"
wx:if="{{ computed.isImage(name) }}"
src="{{ name }}"
mode="aspectFit"
class="van-icon__image"