perf(divider): use wxs (#3887)

This commit is contained in:
rex 2020-12-22 20:26:04 +08:00 committed by GitHub
parent 2f7d66a14f
commit 8e815c9c50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 30 deletions

View File

@ -2,33 +2,12 @@ import { VantComponent } from '../common/component';
VantComponent({ VantComponent({
props: { props: {
dashed: { dashed: Boolean,
type: Boolean, hairline: Boolean,
value: false, contentPosition: String,
}, fontSize: String,
hairline: { borderColor: String,
type: Boolean, textColor: String,
value: false, customStyle: String,
},
contentPosition: {
type: String,
value: '',
},
fontSize: {
type: Number,
value: '',
},
borderColor: {
type: String,
value: '',
},
textColor: {
type: String,
value: '',
},
customStyle: {
type: String,
value: '',
},
}, },
}); });

View File

@ -1,8 +1,9 @@
<wxs src="../wxs/utils.wxs" module="utils" /> <wxs src="../wxs/utils.wxs" module="utils" />
<wxs src="./index.wxs" module="computed" />
<view <view
class="custom-class {{ utils.bem('divider', [{dashed, hairline}, contentPosition]) }}" class="custom-class {{ utils.bem('divider', [{ dashed, hairline }, contentPosition]) }}"
style="{{ borderColor ? 'border-color: ' + borderColor + ';' : '' }}{{ textColor ? 'color: ' + textColor + ';' : '' }} {{ fontSize ? 'font-size: ' + fontSize + 'px;' : '' }} {{ customStyle }}" style="{{ computed.rootStyle({ borderColor, textColor, fontSize, customStyle }) }}"
> >
<slot /> <slot />
</view> </view>

View File

@ -0,0 +1,18 @@
/* eslint-disable */
var style = require('../wxs/style.wxs');
var addUnit = require('../wxs/add-unit.wxs');
function rootStyle(data) {
return style([
{
'border-color': data.borderColor,
color: data.textColor,
'font-size': addUnit(data.fontSize),
},
data.customStyle,
]);
}
module.exports = {
rootStyle: rootStyle,
};