@gorhom/bottom-sheet
Version:
A performant interactive bottom sheet with fully configurable options 🚀
54 lines (51 loc) • 2.48 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.BottomSheetFooterContainer = void 0;
var _react = _interopRequireWildcard(require("react"));
var _reactNativeReanimated = require("react-native-reanimated");
var _constants = require("../../constants");
var _hooks = require("../../hooks");
var _jsxRuntime = require("react/jsx-runtime");
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
const BottomSheetFooterContainerComponent = ({
footerComponent: FooterComponent
}) => {
//#region hooks
const {
animatedLayoutState,
animatedPosition,
animatedKeyboardState
} = (0, _hooks.useBottomSheetInternal)();
//#endregion
//#region variables
const animatedFooterPosition = (0, _reactNativeReanimated.useDerivedValue)(() => {
const {
handleHeight,
footerHeight,
containerHeight
} = animatedLayoutState.get();
if (handleHeight === _constants.INITIAL_LAYOUT_VALUE) {
return 0;
}
const {
status: keyboardStatus,
heightWithinContainer: keyboardHeight
} = animatedKeyboardState.get();
const position = animatedPosition.get();
let footerTranslateY = Math.max(0, containerHeight - position);
if (keyboardStatus === _constants.KEYBOARD_STATUS.SHOWN) {
footerTranslateY = footerTranslateY - keyboardHeight;
}
footerTranslateY = footerTranslateY - footerHeight - handleHeight;
return footerTranslateY;
}, [animatedKeyboardState, animatedPosition, animatedLayoutState]);
//#endregion
return /*#__PURE__*/(0, _jsxRuntime.jsx)(FooterComponent, {
animatedFooterPosition: animatedFooterPosition
});
};
const BottomSheetFooterContainer = exports.BottomSheetFooterContainer = /*#__PURE__*/(0, _react.memo)(BottomSheetFooterContainerComponent);
BottomSheetFooterContainer.displayName = 'BottomSheetFooterContainer';
//# sourceMappingURL=BottomSheetFooterContainer.js.map
;