feat(tabbar): add new props placeholder & icon-prefix (#3792)

fix #3445
This commit is contained in:
rex 2020-11-29 19:45:51 +08:00 committed by GitHub
parent c254b3d073
commit c7aebbe686
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 46 additions and 22 deletions

View File

@ -6,6 +6,10 @@ VantComponent({
name: null, name: null,
icon: String, icon: String,
dot: Boolean, dot: Boolean,
iconPrefix: {
type: String,
value: 'van-icon',
},
}, },
relation: { relation: {
@ -20,9 +24,16 @@ VantComponent({
methods: { methods: {
onClick() { onClick() {
if (this.parent) { const { parent } = this;
this.parent.onChange(this); if (parent) {
const index = parent.children.indexOf(this);
const active = this.data.name || index;
if (active !== this.data.active) {
parent.$emit('change', active);
}
} }
this.$emit('click'); this.$emit('click');
}, },
@ -36,7 +47,7 @@ VantComponent({
const parentData = parent.data; const parentData = parent.data;
const { data } = this; const { data } = this;
const active = (data.name || index) === parentData.active; const active = (data.name || index) === parentData.active;
const patch: { [key: string]: any } = {}; const patch: Record<string, unknown> = {};
if (active !== data.active) { if (active !== data.active) {
patch.active = active; patch.active = active;
@ -48,9 +59,9 @@ VantComponent({
patch.inactiveColor = parentData.inactiveColor; patch.inactiveColor = parentData.inactiveColor;
} }
return Object.keys(patch).length > 0 if (Object.keys(patch).length > 0) {
? this.set(patch) this.setData(patch);
: Promise.resolve(); }
}, },
}, },
}); });

View File

@ -3,19 +3,17 @@
<view <view
class="{{ utils.bem('tabbar-item', { active }) }} custom-class" class="{{ utils.bem('tabbar-item', { active }) }} custom-class"
style="color: {{ active ? activeColor : inactiveColor }}" style="color: {{ active ? activeColor : inactiveColor }}"
bind:tap="onClick" bindtap="onClick"
> >
<view class="van-tabbar-item__icon"> <view class="van-tabbar-item__icon">
<van-icon <van-icon
wx:if="{{ icon }}" wx:if="{{ icon }}"
name="{{ icon }}" name="{{ icon }}"
class-prefix="{{ iconPrefix }}"
custom-class="van-tabbar-item__icon__inner" custom-class="van-tabbar-item__icon__inner"
/> />
<block wx:else> <block wx:else>
<slot <slot wx:if="{{ active }}" name="icon-active" />
wx:if="{{ active }}"
name="icon-active"
/>
<slot wx:else name="icon" /> <slot wx:else name="icon" />
</block> </block>
<van-info <van-info

View File

@ -176,6 +176,7 @@ Page({
| --- | --- | --- | --- | --- | | --- | --- | --- | --- | --- |
| active | 当前选中标签的索引 | _number_ | - | - | | active | 当前选中标签的索引 | _number_ | - | - |
| fixed | 是否固定在底部 | _boolean_ | `true` | - | | fixed | 是否固定在底部 | _boolean_ | `true` | - |
| placeholder | 固定在底部时,是否在标签位置生成一个等高的占位元素 | _boolean_ | `false` |
| border | 是否展示外边框 | _boolean_ | `true` | - | | border | 是否展示外边框 | _boolean_ | `true` | - |
| z-index | 元素 z-index | _number_ | `1` | - | | z-index | 元素 z-index | _number_ | `1` | - |
| active-color | 选中标签的颜色 | _string_ | `#1989fa` | - | | active-color | 选中标签的颜色 | _string_ | `#1989fa` | - |
@ -194,6 +195,7 @@ Page({
| --- | --- | --- | --- | --- | | --- | --- | --- | --- | --- |
| name | 标签名称,作为匹配的标识符 | _string \| number_ | 当前标签的索引值 | - | | name | 标签名称,作为匹配的标识符 | _string \| number_ | 当前标签的索引值 | - |
| icon | 图标名称或图片链接,可选值见 [Icon 组件](#/icon) | _string_ | - | - | | icon | 图标名称或图片链接,可选值见 [Icon 组件](#/icon) | _string_ | - | - |
| icon-prefix | 图标类名前缀,同 Icon 组件的 [class-prefix 属性](#/icon#props) | _string_ | `van-icon` |
| dot | 是否显示小红点 | _boolean_ | - | - | | dot | 是否显示小红点 | _boolean_ | - | - |
| info | 图标右上角提示信息 | _string \| number_ | - | - | | info | 图标右上角提示信息 | _string \| number_ | - | - |

View File

@ -1,3 +1,4 @@
import { getRect } from '../common/utils';
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
type TrivialInstance = WechatMiniprogram.Component.TrivialInstance; type TrivialInstance = WechatMiniprogram.Component.TrivialInstance;
@ -32,6 +33,11 @@ VantComponent({
fixed: { fixed: {
type: Boolean, type: Boolean,
value: true, value: true,
observer: 'setHeight',
},
placeholder: {
type: Boolean,
observer: 'setHeight',
}, },
border: { border: {
type: Boolean, type: Boolean,
@ -47,25 +53,30 @@ VantComponent({
}, },
}, },
data: {
height: 50,
},
methods: { methods: {
updateChildren() { updateChildren() {
const { children } = this; const { children } = this;
if (!Array.isArray(children) || !children.length) { if (!Array.isArray(children) || !children.length) {
return Promise.resolve(); return;
} }
return Promise.all( children.forEach((child: TrivialInstance) => child.updateFromParent());
children.map((child: TrivialInstance) => child.updateFromParent())
);
}, },
onChange(child: TrivialInstance) { setHeight() {
const index = this.children.indexOf(child); if (!this.data.fixed || !this.data.placeholder) {
const active = child.data.name || index; return;
if (active !== this.data.active) {
this.$emit('change', active);
} }
wx.nextTick(() => {
getRect.call(this, '.van-tabbar').then((res) => {
this.setData({ height: res.height });
});
});
}, },
}, },
}); });

View File

@ -1,8 +1,10 @@
<wxs src="../wxs/utils.wxs" module="utils" /> <wxs src="../wxs/utils.wxs" module="utils" />
<view <view
class="custom-class {{ border ? 'van-hairline--top-bottom' : '' }} {{ utils.bem('tabbar', { fixed, safe: safeAreaInsetBottom }) }}" class="{{ border ? 'van-hairline--top-bottom' : '' }} {{ utils.bem('tabbar', { fixed, safe: safeAreaInsetBottom }) }} custom-class"
style="{{ zIndex ? 'z-index: ' + zIndex : '' }}" style="{{ zIndex ? 'z-index: ' + zIndex : '' }}"
> >
<slot /> <slot />
</view> </view>
<view wx:if="{{ fixed && placeholder }}" style="height: {{ height }}px;"></view>