mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
48 lines
1.7 KiB
JavaScript
48 lines
1.7 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var cache = null;
|
|
function getSafeArea() {
|
|
return new Promise(function (resolve, reject) {
|
|
if (cache != null) {
|
|
resolve(cache);
|
|
}
|
|
else {
|
|
wx.getSystemInfo({
|
|
success: function (_a) {
|
|
var model = _a.model, screenHeight = _a.screenHeight, statusBarHeight = _a.statusBarHeight;
|
|
var iphoneX = /iphone x/i.test(model);
|
|
var iphoneNew = /iPhone11/i.test(model) && screenHeight === 812;
|
|
cache = {
|
|
isIPhoneX: iphoneX || iphoneNew,
|
|
statusBarHeight: statusBarHeight
|
|
};
|
|
resolve(cache);
|
|
},
|
|
fail: reject
|
|
});
|
|
}
|
|
});
|
|
}
|
|
exports.safeArea = function (_a) {
|
|
var _b = _a === void 0 ? {} : _a, _c = _b.safeAreaInsetBottom, safeAreaInsetBottom = _c === void 0 ? true : _c, _d = _b.safeAreaInsetTop, safeAreaInsetTop = _d === void 0 ? false : _d;
|
|
return Behavior({
|
|
properties: {
|
|
safeAreaInsetTop: {
|
|
type: Boolean,
|
|
value: safeAreaInsetTop
|
|
},
|
|
safeAreaInsetBottom: {
|
|
type: Boolean,
|
|
value: safeAreaInsetBottom
|
|
}
|
|
},
|
|
created: function () {
|
|
var _this = this;
|
|
getSafeArea().then(function (_a) {
|
|
var isIPhoneX = _a.isIPhoneX, statusBarHeight = _a.statusBarHeight;
|
|
_this.set({ isIPhoneX: isIPhoneX, statusBarHeight: statusBarHeight });
|
|
});
|
|
}
|
|
});
|
|
};
|