create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
135 lines (118 loc) • 6.38 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = HeaderConfig;
var _native = require("@react-navigation/native");
var React = _interopRequireWildcard(require("react"));
var _reactNative = require("react-native");
var _reactNativeScreens = require("react-native-screens");
var _useBackPressSubscription = require("../utils/useBackPressSubscription");
var _FontProcessor = require("./FontProcessor");
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function () { 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; }
function HeaderConfig({
backButtonImage,
backButtonInCustomView,
direction,
disableBackButtonMenu,
headerBackTitle,
headerBackTitleStyle = {},
headerBackTitleVisible = true,
headerCenter,
headerHideBackButton,
headerHideShadow,
headerLargeStyle = {},
headerLargeTitle,
headerLargeTitleHideShadow,
headerLargeTitleStyle = {},
headerLeft,
headerRight,
headerShown,
headerStyle = {},
headerTintColor,
headerTitle,
headerTitleStyle = {},
headerTopInsetEnabled = true,
headerTranslucent,
route,
searchBar,
title
}) {
const {
colors
} = (0, _native.useTheme)();
const tintColor = headerTintColor !== null && headerTintColor !== void 0 ? headerTintColor : colors.primary; // We need to use back press subscription here to override back button behavior on JS side.
// Because screens are usually used with react-navigation and this library overrides back button
// we need to handle it first in case when search bar is open
const {
handleAttached,
handleDetached,
clearSubscription,
createSubscription
} = (0, _useBackPressSubscription.useBackPressSubscription)({
onBackPress: _reactNativeScreens.executeNativeBackPress,
isDisabled: !searchBar || !!searchBar.disableBackButtonOverride
});
const [backTitleFontFamily, largeTitleFontFamily, titleFontFamily] = (0, _FontProcessor.processFonts)([headerBackTitleStyle.fontFamily, headerLargeTitleStyle.fontFamily, headerTitleStyle.fontFamily]); // We want to clear clearSubscription only when components unmounts or search bar changes
React.useEffect(() => clearSubscription, [searchBar]);
const processedSearchBarOptions = React.useMemo(() => {
if (_reactNative.Platform.OS === 'android' && searchBar && !searchBar.disableBackButtonOverride) {
const onFocus = (...args) => {
var _searchBar$onFocus;
createSubscription();
(_searchBar$onFocus = searchBar.onFocus) === null || _searchBar$onFocus === void 0 ? void 0 : _searchBar$onFocus.call(searchBar, ...args);
};
const onClose = (...args) => {
var _searchBar$onClose;
clearSubscription();
(_searchBar$onClose = searchBar.onClose) === null || _searchBar$onClose === void 0 ? void 0 : _searchBar$onClose.call(searchBar, ...args);
};
return { ...searchBar,
onFocus,
onClose
};
}
return searchBar;
}, [searchBar, createSubscription, clearSubscription]);
return /*#__PURE__*/React.createElement(_reactNativeScreens.ScreenStackHeaderConfig, {
backButtonInCustomView: backButtonInCustomView,
backgroundColor: headerStyle.backgroundColor ? headerStyle.backgroundColor : colors.card,
backTitle: headerBackTitleVisible ? headerBackTitle : ' ',
backTitleFontFamily: backTitleFontFamily,
backTitleFontSize: headerBackTitleStyle.fontSize,
blurEffect: headerStyle.blurEffect,
color: tintColor,
direction: direction,
disableBackButtonMenu: disableBackButtonMenu,
hidden: headerShown === false,
hideBackButton: headerHideBackButton,
hideShadow: headerHideShadow,
largeTitle: headerLargeTitle,
largeTitleBackgroundColor: headerLargeStyle.backgroundColor,
largeTitleColor: headerLargeTitleStyle.color,
largeTitleFontFamily: largeTitleFontFamily,
largeTitleFontSize: headerLargeTitleStyle.fontSize,
largeTitleFontWeight: headerLargeTitleStyle.fontWeight,
largeTitleHideShadow: headerLargeTitleHideShadow,
title: headerTitle !== undefined ? headerTitle : title !== undefined ? title : route.name,
titleColor: headerTitleStyle.color !== undefined ? headerTitleStyle.color : headerTintColor !== undefined ? headerTintColor : colors.text,
titleFontFamily: titleFontFamily,
titleFontSize: headerTitleStyle.fontSize,
titleFontWeight: headerTitleStyle.fontWeight,
topInsetEnabled: headerTopInsetEnabled,
translucent: headerTranslucent === true,
onAttached: handleAttached,
onDetached: handleDetached
}, headerRight !== undefined ? /*#__PURE__*/React.createElement(_reactNativeScreens.ScreenStackHeaderRightView, null, headerRight({
tintColor
})) : null, backButtonImage !== undefined ? /*#__PURE__*/React.createElement(_reactNativeScreens.ScreenStackHeaderBackButtonImage, {
key: "backImage",
source: backButtonImage
}) : null, headerLeft !== undefined ? /*#__PURE__*/React.createElement(_reactNativeScreens.ScreenStackHeaderLeftView, null, headerLeft({
tintColor
})) : null, headerCenter !== undefined ? /*#__PURE__*/React.createElement(_reactNativeScreens.ScreenStackHeaderCenterView, null, headerCenter({
tintColor
})) : null, _reactNativeScreens.isSearchBarAvailableForCurrentPlatform && processedSearchBarOptions !== undefined ? /*#__PURE__*/React.createElement(_reactNativeScreens.ScreenStackHeaderSearchBarView, null, /*#__PURE__*/React.createElement(_reactNativeScreens.SearchBar, processedSearchBarOptions)) : null);
}
//# sourceMappingURL=HeaderConfig.js.map