152 lines
4.6 KiB
JavaScript
152 lines
4.6 KiB
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = NativeSafeAreaView;
|
||
|
|
||
|
var React = _interopRequireWildcard(require("react"));
|
||
|
|
||
|
var _reactNative = require("react-native");
|
||
|
|
||
|
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
|
||
|
|
||
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
||
|
|
||
|
/**
|
||
|
* TODO:
|
||
|
* Currently insets and frame are based on the window and are not
|
||
|
* relative to the provider view. This is inconsistent with iOS and Android.
|
||
|
* However in most cases if the provider view covers the screen this is not
|
||
|
* an issue.
|
||
|
*/
|
||
|
const CSSTransitions = {
|
||
|
WebkitTransition: 'webkitTransitionEnd',
|
||
|
Transition: 'transitionEnd',
|
||
|
MozTransition: 'transitionend',
|
||
|
MSTransition: 'msTransitionEnd',
|
||
|
OTransition: 'oTransitionEnd'
|
||
|
};
|
||
|
|
||
|
function NativeSafeAreaView({
|
||
|
children,
|
||
|
style,
|
||
|
onInsetsChange
|
||
|
}) {
|
||
|
React.useEffect(() => {
|
||
|
// Skip for SSR.
|
||
|
if (typeof document === 'undefined') {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const element = createContextElement();
|
||
|
document.body.appendChild(element);
|
||
|
|
||
|
const onEnd = () => {
|
||
|
const {
|
||
|
paddingTop,
|
||
|
paddingBottom,
|
||
|
paddingLeft,
|
||
|
paddingRight
|
||
|
} = window.getComputedStyle(element);
|
||
|
const insets = {
|
||
|
top: paddingTop ? parseInt(paddingTop, 10) : 0,
|
||
|
bottom: paddingBottom ? parseInt(paddingBottom, 10) : 0,
|
||
|
left: paddingLeft ? parseInt(paddingLeft, 10) : 0,
|
||
|
right: paddingRight ? parseInt(paddingRight, 10) : 0
|
||
|
};
|
||
|
const frame = {
|
||
|
x: 0,
|
||
|
y: 0,
|
||
|
width: document.documentElement.offsetWidth,
|
||
|
height: document.documentElement.offsetHeight
|
||
|
}; // @ts-ignore: missing properties
|
||
|
|
||
|
onInsetsChange({
|
||
|
nativeEvent: {
|
||
|
insets,
|
||
|
frame
|
||
|
}
|
||
|
});
|
||
|
};
|
||
|
|
||
|
element.addEventListener(getSupportedTransitionEvent(), onEnd);
|
||
|
onEnd();
|
||
|
return () => {
|
||
|
document.body.removeChild(element);
|
||
|
element.removeEventListener(getSupportedTransitionEvent(), onEnd);
|
||
|
};
|
||
|
}, [onInsetsChange]);
|
||
|
return /*#__PURE__*/React.createElement(_reactNative.View, {
|
||
|
style: style
|
||
|
}, children);
|
||
|
}
|
||
|
|
||
|
let _supportedTransitionEvent = null;
|
||
|
|
||
|
function getSupportedTransitionEvent() {
|
||
|
if (_supportedTransitionEvent !== null) {
|
||
|
return _supportedTransitionEvent;
|
||
|
}
|
||
|
|
||
|
const element = document.createElement('invalidtype');
|
||
|
_supportedTransitionEvent = CSSTransitions.Transition;
|
||
|
|
||
|
for (const key in CSSTransitions) {
|
||
|
if (element.style[key] !== undefined) {
|
||
|
_supportedTransitionEvent = CSSTransitions[key];
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return _supportedTransitionEvent;
|
||
|
}
|
||
|
|
||
|
let _supportedEnv = null;
|
||
|
|
||
|
function getSupportedEnv() {
|
||
|
if (_supportedEnv !== null) {
|
||
|
return _supportedEnv;
|
||
|
}
|
||
|
|
||
|
const {
|
||
|
CSS
|
||
|
} = window;
|
||
|
|
||
|
if (CSS && CSS.supports && CSS.supports('top: constant(safe-area-inset-top)')) {
|
||
|
_supportedEnv = 'constant';
|
||
|
} else {
|
||
|
_supportedEnv = 'env';
|
||
|
}
|
||
|
|
||
|
return _supportedEnv;
|
||
|
}
|
||
|
|
||
|
function getInset(side) {
|
||
|
return "".concat(getSupportedEnv(), "(safe-area-inset-").concat(side, ")");
|
||
|
}
|
||
|
|
||
|
function createContextElement() {
|
||
|
const element = document.createElement('div');
|
||
|
const {
|
||
|
style
|
||
|
} = element;
|
||
|
style.position = 'fixed';
|
||
|
style.left = '0';
|
||
|
style.top = '0';
|
||
|
style.width = '0';
|
||
|
style.height = '0';
|
||
|
style.zIndex = '-1';
|
||
|
style.overflow = 'hidden';
|
||
|
style.visibility = 'hidden'; // Bacon: Anything faster than this and the callback will be invoked too early with the wrong insets
|
||
|
|
||
|
style.transitionDuration = '0.05s';
|
||
|
style.transitionProperty = 'padding';
|
||
|
style.transitionDelay = '0s';
|
||
|
style.paddingTop = getInset('top');
|
||
|
style.paddingBottom = getInset('bottom');
|
||
|
style.paddingLeft = getInset('left');
|
||
|
style.paddingRight = getInset('right');
|
||
|
return element;
|
||
|
}
|
||
|
//# sourceMappingURL=NativeSafeAreaProvider.js.map
|