perf: iPhoneX适配提取到独立behaviors @rex-zsd (#1048)

This commit is contained in:
rex 2018-12-11 14:55:34 +08:00 committed by neverland
parent 163d0da836
commit cd0544e68d
6 changed files with 38 additions and 16 deletions

View File

@ -1,6 +1,9 @@
import { VantComponent } from '../common/component';
import { iphonex } from '../mixins/iphonex';
VantComponent({
mixins: [iphonex],
props: {
safeAreaInsetBottom: {
type: Boolean,

View File

@ -1,21 +1,6 @@
import { classNames } from '../common/class-names';
export const basic = Behavior({
created() {
wx.getSystemInfo({
success: ({ model, screenHeight }) => {
const isIphoneX = /iphone x/i.test(model);
const isIphoneNew = /iPhone11/i.test(model) && screenHeight === 812;
if (isIphoneX || isIphoneNew) {
this.set({
isIPhoneX: true
});
}
}
});
},
methods: {
classNames,

View File

@ -0,0 +1,27 @@
let isIPhoneX = null;
function getIsIPhoneX() {
return new Promise((resolve, reject) => {
if (isIPhoneX !== null) {
resolve(isIPhoneX);
} else {
wx.getSystemInfo({
success: ({ model, screenHeight }) => {
const iphoneX = /iphone x/i.test(model);
const iphoneNew = /iPhone11/i.test(model) && screenHeight === 812;
isIPhoneX = iphoneX || iphoneNew;
resolve(isIPhoneX);
},
fail: reject
});
}
});
}
export const iphonex = Behavior({
created() {
getIsIPhoneX().then(isIPhoneX => {
this.set({ isIPhoneX });
});
}
});

View File

@ -1,8 +1,9 @@
import { VantComponent } from '../common/component';
import { transition } from '../mixins/transition';
import { iphonex } from '../mixins/iphonex';
VantComponent({
mixins: [transition(false)],
mixins: [transition(false), iphonex],
props: {
transition: String,

View File

@ -1,4 +1,5 @@
import { VantComponent } from '../common/component';
import { iphonex } from '../mixins/iphonex';
VantComponent({
classes: [
@ -7,6 +8,8 @@ VantComponent({
'button-class'
],
mixins: [iphonex],
props: {
tip: null,
type: Number,

View File

@ -1,4 +1,5 @@
import { VantComponent } from '../common/component';
import { iphonex } from '../mixins/iphonex';
VantComponent({
relation: {
@ -18,6 +19,8 @@ VantComponent({
}
},
mixins: [iphonex],
props: {
active: Number,
fixed: {