[improvement] extract safeAreaInsetBottom to mixin (#1052)

This commit is contained in:
neverland 2018-12-11 16:05:13 +08:00 committed by GitHub
parent 339df6c0e6
commit df238651c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 15 additions and 28 deletions

View File

@ -1,6 +1,9 @@
import { VantComponent } from '../common/component';
import { iphonex } from '../mixins/iphonex';
VantComponent({
mixins: [iphonex],
props: {
show: Boolean,
title: String,
@ -20,10 +23,6 @@ VantComponent({
closeOnClickOverlay: {
type: Boolean,
value: true
},
safeAreaInsetBottom: {
type: Boolean,
value: true
}
},

View File

@ -2,12 +2,5 @@ import { VantComponent } from '../common/component';
import { iphonex } from '../mixins/iphonex';
VantComponent({
mixins: [iphonex],
props: {
safeAreaInsetBottom: {
type: Boolean,
value: true
}
}
mixins: [iphonex]
});

View File

@ -19,6 +19,13 @@ function getIsIPhoneX() {
}
export const iphonex = Behavior({
properties: {
safeAreaInsetBottom: {
type: Boolean,
value: true
}
},
created() {
getIsIPhoneX().then(isIPhoneX => {
this.set({ isIPhoneX });

View File

@ -24,10 +24,6 @@ VantComponent({
position: {
type: String,
value: 'center'
},
safeAreaInsetBottom: {
type: Boolean,
value: true
}
},

View File

@ -2,14 +2,14 @@ import { VantComponent } from '../common/component';
import { iphonex } from '../mixins/iphonex';
VantComponent({
mixins: [iphonex],
classes: [
'bar-class',
'price-class',
'button-class'
],
mixins: [iphonex],
props: {
tip: null,
type: Number,
@ -25,10 +25,6 @@ VantComponent({
buttonType: {
type: String,
value: 'danger'
},
safeAreaInsetBottom: {
type: Boolean,
value: true
}
},

View File

@ -2,6 +2,8 @@ import { VantComponent } from '../common/component';
import { iphonex } from '../mixins/iphonex';
VantComponent({
mixins: [iphonex],
relation: {
name: 'tabbar-item',
type: 'descendant',
@ -19,8 +21,6 @@ VantComponent({
}
},
mixins: [iphonex],
props: {
active: Number,
fixed: {
@ -30,10 +30,6 @@ VantComponent({
zIndex: {
type: Number,
value: 1
},
safeAreaInsetBottom: {
type: Boolean,
value: true
}
},