perf(notify): use wxs (#3893)

This commit is contained in:
rex 2020-12-22 20:48:09 +08:00 committed by GitHub
parent 7378398da6
commit 5daa5cddfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 2 deletions

View File

@ -1,15 +1,16 @@
<wxs src="../wxs/utils.wxs" module="utils" /> <wxs src="../wxs/utils.wxs" module="utils" />
<wxs src="./index.wxs" module="computed" />
<van-transition <van-transition
name="slide-down" name="slide-down"
show="{{ show }}" show="{{ show }}"
custom-class="van-notify__container" custom-class="van-notify__container"
custom-style="z-index: {{ zIndex }}; top: {{ utils.addUnit(top) }}" custom-style="{{ computed.rootStyle({ zIndex, top }) }}"
bind:tap="onTap" bind:tap="onTap"
> >
<view <view
class="van-notify van-notify--{{ type }}" class="van-notify van-notify--{{ type }}"
style="background:{{ background }};color:{{ color }};" style="{{ computed.notifyStyle({ background, color }) }}"
> >
<view <view
wx:if="{{ safeAreaInsetTop }}" wx:if="{{ safeAreaInsetTop }}"

21
packages/notify/index.wxs Normal file
View File

@ -0,0 +1,21 @@
/* eslint-disable */
var style = require('../wxs/style.wxs');
function rootStyle(data) {
return style({
'z-index': data.zIndex,
top: addUnit(data.top),
});
}
function notifyStyle(data) {
return style({
background: data.background,
color: data.color,
});
}
module.exports = {
rootStyle: rootStyle,
notifyStyle: notifyStyle,
};