You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.8 KiB
83 lines
3.8 KiB
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.SafeAreaView = SafeAreaView;
|
|
var React = _interopRequireWildcard(require("react"));
|
|
var _reactNative = require("react-native");
|
|
var _SafeAreaContext = require("./SafeAreaContext");
|
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && 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; }
|
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
// prettier-ignore
|
|
const TOP = 0b1000,
|
|
RIGHT = 0b0100,
|
|
BOTTOM = 0b0010,
|
|
LEFT = 0b0001,
|
|
ALL = 0b1111;
|
|
|
|
/* eslint-disable no-bitwise */
|
|
|
|
const edgeBitmaskMap = {
|
|
top: TOP,
|
|
right: RIGHT,
|
|
bottom: BOTTOM,
|
|
left: LEFT
|
|
};
|
|
function SafeAreaView(_ref) {
|
|
let {
|
|
style = {},
|
|
mode,
|
|
edges,
|
|
...rest
|
|
} = _ref;
|
|
const insets = (0, _SafeAreaContext.useSafeAreaInsets)();
|
|
const edgeBitmask = edges != null ? edges.reduce((accum, edge) => accum | edgeBitmaskMap[edge], 0) : ALL;
|
|
const appliedStyle = React.useMemo(() => {
|
|
const insetTop = edgeBitmask & TOP ? insets.top : 0;
|
|
const insetRight = edgeBitmask & RIGHT ? insets.right : 0;
|
|
const insetBottom = edgeBitmask & BOTTOM ? insets.bottom : 0;
|
|
const insetLeft = edgeBitmask & LEFT ? insets.left : 0;
|
|
const flatStyle = _reactNative.StyleSheet.flatten(style);
|
|
if (mode === 'margin') {
|
|
const {
|
|
margin = 0,
|
|
marginVertical = margin,
|
|
marginHorizontal = margin,
|
|
marginTop = marginVertical,
|
|
marginRight = marginHorizontal,
|
|
marginBottom = marginVertical,
|
|
marginLeft = marginHorizontal
|
|
} = flatStyle;
|
|
const marginStyle = {
|
|
marginTop: marginTop + insetTop,
|
|
marginRight: marginRight + insetRight,
|
|
marginBottom: marginBottom + insetBottom,
|
|
marginLeft: marginLeft + insetLeft
|
|
};
|
|
return [style, marginStyle];
|
|
} else {
|
|
const {
|
|
padding = 0,
|
|
paddingVertical = padding,
|
|
paddingHorizontal = padding,
|
|
paddingTop = paddingVertical,
|
|
paddingRight = paddingHorizontal,
|
|
paddingBottom = paddingVertical,
|
|
paddingLeft = paddingHorizontal
|
|
} = flatStyle;
|
|
const paddingStyle = {
|
|
paddingTop: paddingTop + insetTop,
|
|
paddingRight: paddingRight + insetRight,
|
|
paddingBottom: paddingBottom + insetBottom,
|
|
paddingLeft: paddingLeft + insetLeft
|
|
};
|
|
return [style, paddingStyle];
|
|
}
|
|
}, [style, insets, mode, edgeBitmask]);
|
|
return /*#__PURE__*/React.createElement(_reactNative.View, _extends({
|
|
style: appliedStyle
|
|
}, rest));
|
|
}
|
|
//# sourceMappingURL=SafeAreaView.web.js.map
|