UNPKG

react-native-paper

Version:
626 lines (596 loc) 21.3 kB
function _extends() { _extends = Object.assign || 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); } import * as React from 'react'; import { View, Animated, TouchableWithoutFeedback, StyleSheet, Platform, Keyboard } from 'react-native'; import { getBottomSpace } from 'react-native-iphone-x-helper'; import color from 'color'; import overlay from '../styles/overlay'; import Icon from './Icon'; import Surface from './Surface'; import Badge from './Badge'; import TouchableRipple from './TouchableRipple/TouchableRipple'; import Text from './Typography/Text'; import { black, white } from '../styles/colors'; import { withTheme } from '../core/theming'; import useAnimatedValue from '../utils/useAnimatedValue'; import useAnimatedValueArray from '../utils/useAnimatedValueArray'; import useLayout from '../utils/useLayout'; const MIN_RIPPLE_SCALE = 0.001; // Minimum scale is not 0 due to bug with animation const MIN_TAB_WIDTH = 96; const MAX_TAB_WIDTH = 168; const BAR_HEIGHT = 56; const BOTTOM_INSET = getBottomSpace(); const FAR_FAR_AWAY = Platform.OS === 'web' ? 0 : 9999; const Touchable = ({ route: _0, style, children, borderless, centered, rippleColor, ...rest }) => TouchableRipple.supported ? /*#__PURE__*/React.createElement(TouchableRipple, _extends({}, rest, { disabled: rest.disabled || undefined, borderless: borderless, centered: centered, rippleColor: rippleColor, style: style }), children) : /*#__PURE__*/React.createElement(TouchableWithoutFeedback, rest, /*#__PURE__*/React.createElement(View, { style: style }, children)); const SceneComponent = /*#__PURE__*/React.memo(({ component, ...rest }) => /*#__PURE__*/React.createElement(component, rest)); /** * Bottom navigation provides quick navigation between top-level views of an app with a bottom navigation bar. * It is primarily designed for use on mobile. * * For integration with React Navigation, you can use [react-navigation-material-bottom-tabs](https://github.com/react-navigation/react-navigation/tree/main/packages/material-bottom-tabs) and consult [createMaterialBottomTabNavigator](https://reactnavigation.org/docs/material-bottom-tab-navigator/) documentation. * * By default Bottom navigation uses primary color as a background, in dark theme with `adaptive` mode it will use surface colour instead. * See [Dark Theme](https://callstack.github.io/react-native-paper/theming.html#dark-theme) for more information. * * <div class="screenshots"> * <img class="medium" src="screenshots/bottom-navigation.gif" /> * </div> * * ## Usage * ```js * import * as React from 'react'; * import { BottomNavigation, Text } from 'react-native-paper'; * * const MusicRoute = () => <Text>Music</Text>; * * const AlbumsRoute = () => <Text>Albums</Text>; * * const RecentsRoute = () => <Text>Recents</Text>; * * const MyComponent = () => { * const [index, setIndex] = React.useState(0); * const [routes] = React.useState([ * { key: 'music', title: 'Music', icon: 'queue-music' }, * { key: 'albums', title: 'Albums', icon: 'album' }, * { key: 'recents', title: 'Recents', icon: 'history' }, * ]); * * const renderScene = BottomNavigation.SceneMap({ * music: MusicRoute, * albums: AlbumsRoute, * recents: RecentsRoute, * }); * * return ( * <BottomNavigation * navigationState={{ index, routes }} * onIndexChange={setIndex} * renderScene={renderScene} * /> * ); * }; * * export default MyComponent; * ``` */ const BottomNavigation = ({ navigationState, renderScene, renderIcon, renderLabel, renderTouchable = props => /*#__PURE__*/React.createElement(Touchable, props), getLabelText = ({ route }) => route.title, getBadge = ({ route }) => route.badge, getColor = ({ route }) => route.color, getAccessibilityLabel = ({ route }) => route.accessibilityLabel, getTestID = ({ route }) => route.testID, activeColor, inactiveColor, keyboardHidesNavigationBar = true, barStyle, labeled = true, style, theme, sceneAnimationEnabled = false, onTabPress, onIndexChange, shifting = navigationState.routes.length > 3 }) => { const { scale } = theme.animation; const focusedKey = navigationState.routes[navigationState.index].key; /** * Visibility of the navigation bar, visible state is 1 and invisible is 0. */ const visibleAnim = useAnimatedValue(1); /** * Active state of individual tab items, active state is 1 and inactive state is 0. */ const tabsAnims = useAnimatedValueArray(navigationState.routes.map( // focused === 1, unfocused === 0 (_, i) => i === navigationState.index ? 1 : 0)); /** * The top offset for each tab item to position it offscreen. * Placing items offscreen helps to save memory usage for inactive screens with removeClippedSubviews. * We use animated values for this to prevent unnecessary re-renders. */ const offsetsAnims = useAnimatedValueArray(navigationState.routes.map( // offscreen === 1, normal === 0 (_, i) => i === navigationState.index ? 0 : 1)); /** * Index of the currently active tab. Used for setting the background color. * We don't use the color as an animated value directly, because `setValue` seems to be buggy with colors. */ const indexAnim = useAnimatedValue(navigationState.index); /** * Animation for the background color ripple, used to determine it's scale and opacity. */ const rippleAnim = useAnimatedValue(MIN_RIPPLE_SCALE); /** * Layout of the navigation bar. The width is used to determine the size and position of the ripple. */ const [layout, onLayout] = useLayout(); /** * List of loaded tabs, tabs will be loaded when navigated to. */ const [loaded, setLoaded] = React.useState([focusedKey]); if (!loaded.includes(focusedKey)) { // Set the current tab to be loaded if it was not loaded before setLoaded(loaded => [...loaded, focusedKey]); } /** * Track whether the keyboard is visible to show and hide the navigation bar. */ const [keyboardVisible, setKeyboardVisible] = React.useState(false); const handleKeyboardShow = React.useCallback(() => { setKeyboardVisible(true); Animated.timing(visibleAnim, { toValue: 0, duration: 150 * scale, useNativeDriver: true }).start(); }, [scale, visibleAnim]); const handleKeyboardHide = React.useCallback(() => { Animated.timing(visibleAnim, { toValue: 1, duration: 100 * scale, useNativeDriver: true }).start(() => { setKeyboardVisible(false); }); }, [scale, visibleAnim]); const animateToIndex = React.useCallback(index => { // Reset the ripple to avoid glitch if it's currently animating rippleAnim.setValue(MIN_RIPPLE_SCALE); Animated.parallel([Animated.timing(rippleAnim, { toValue: 1, duration: shifting ? 400 * scale : 0, useNativeDriver: true }), ...navigationState.routes.map((_, i) => Animated.timing(tabsAnims[i], { toValue: i === index ? 1 : 0, duration: shifting ? 150 * scale : 0, useNativeDriver: true }))]).start(({ finished }) => { // Workaround a bug in native animations where this is reset after first animation tabsAnims.map((tab, i) => tab.setValue(i === index ? 1 : 0)); // Update the index to change bar's background color and then hide the ripple indexAnim.setValue(index); rippleAnim.setValue(MIN_RIPPLE_SCALE); if (finished) { // Position all inactive screens offscreen to save memory usage // Only do it when animation has finished to avoid glitches mid-transition if switching fast offsetsAnims.forEach((offset, i) => { if (i === index) { offset.setValue(0); } else { offset.setValue(1); } }); } }); }, [indexAnim, shifting, navigationState.routes, offsetsAnims, rippleAnim, scale, tabsAnims]); React.useEffect(() => { // Workaround for native animated bug in react-native@^0.57 // Context: https://github.com/callstack/react-native-paper/pull/637 animateToIndex(navigationState.index); // eslint-disable-next-line react-hooks/exhaustive-deps }, []); React.useEffect(() => { if (Platform.OS === 'ios') { Keyboard.addListener('keyboardWillShow', handleKeyboardShow); Keyboard.addListener('keyboardWillHide', handleKeyboardHide); } else { Keyboard.addListener('keyboardDidShow', handleKeyboardShow); Keyboard.addListener('keyboardDidHide', handleKeyboardHide); } return () => { if (Platform.OS === 'ios') { Keyboard.removeListener('keyboardWillShow', handleKeyboardShow); Keyboard.removeListener('keyboardWillHide', handleKeyboardHide); } else { Keyboard.removeListener('keyboardDidShow', handleKeyboardShow); Keyboard.removeListener('keyboardDidHide', handleKeyboardHide); } }; }, [handleKeyboardHide, handleKeyboardShow]); const prevNavigationState = React.useRef(); React.useEffect(() => { // Reset offsets of previous and current tabs before animation offsetsAnims.forEach((offset, i) => { var _prevNavigationState$; if (i === navigationState.index || i === ((_prevNavigationState$ = prevNavigationState.current) === null || _prevNavigationState$ === void 0 ? void 0 : _prevNavigationState$.index)) { offset.setValue(0); } }); animateToIndex(navigationState.index); }, [navigationState.index, animateToIndex, offsetsAnims]); const handleTabPress = index => { const event = { route: navigationState.routes[index], defaultPrevented: false, preventDefault: () => { event.defaultPrevented = true; } }; onTabPress === null || onTabPress === void 0 ? void 0 : onTabPress(event); if (event.defaultPrevented) { return; } if (index !== navigationState.index) { onIndexChange(index); } }; const jumpTo = React.useCallback(key => { const index = navigationState.routes.findIndex(route => route.key === key); onIndexChange(index); }, [navigationState.routes, onIndexChange]); const { routes } = navigationState; const { colors, dark: isDarkTheme, mode } = theme; const { backgroundColor: customBackground, elevation = 4 } = StyleSheet.flatten(barStyle) || {}; const approxBackgroundColor = customBackground ? customBackground : isDarkTheme && mode === 'adaptive' ? overlay(elevation, colors.surface) : colors.primary; const backgroundColor = shifting ? indexAnim.interpolate({ inputRange: routes.map((_, i) => i), // FIXME: does outputRange support ColorValue or just strings? // @ts-expect-error outputRange: routes.map(route => getColor({ route }) || approxBackgroundColor) }) : approxBackgroundColor; const isDark = typeof approxBackgroundColor === 'string' ? !color(approxBackgroundColor).isLight() : true; const textColor = isDark ? white : black; const activeTintColor = typeof activeColor !== 'undefined' ? activeColor : textColor; const inactiveTintColor = typeof inactiveColor !== 'undefined' ? inactiveColor : color(textColor).alpha(0.5).rgb().string(); const touchColor = color(activeColor || activeTintColor).alpha(0.12).rgb().string(); const maxTabWidth = routes.length > 3 ? MIN_TAB_WIDTH : MAX_TAB_WIDTH; const maxTabBarWidth = maxTabWidth * routes.length; const tabBarWidth = Math.min(layout.width, maxTabBarWidth); const tabWidth = tabBarWidth / routes.length; const rippleSize = layout.width / 4; return /*#__PURE__*/React.createElement(View, { style: [styles.container, style] }, /*#__PURE__*/React.createElement(View, { style: [styles.content, { backgroundColor: colors.background }] }, routes.map((route, index) => { if (!loaded.includes(route.key)) { // Don't render a screen if we've never navigated to it return null; } const focused = navigationState.index === index; const opacity = sceneAnimationEnabled ? tabsAnims[index] : focused ? 1 : 0; const top = sceneAnimationEnabled ? offsetsAnims[index].interpolate({ inputRange: [0, 1], outputRange: [0, FAR_FAR_AWAY] }) : focused ? 0 : FAR_FAR_AWAY; return /*#__PURE__*/React.createElement(Animated.View, { key: route.key, pointerEvents: focused ? 'auto' : 'none', accessibilityElementsHidden: !focused, importantForAccessibility: focused ? 'auto' : 'no-hide-descendants', style: [StyleSheet.absoluteFill, { opacity }], collapsable: false, removeClippedSubviews: // On iOS, set removeClippedSubviews to true only when not focused // This is an workaround for a bug where the clipped view never re-appears Platform.OS === 'ios' ? navigationState.index !== index : true }, /*#__PURE__*/React.createElement(Animated.View, { style: [styles.content, { top }] }, renderScene({ route, jumpTo }))); })), /*#__PURE__*/React.createElement(Surface, { style: [styles.bar, keyboardHidesNavigationBar ? { // When the keyboard is shown, slide down the navigation bar transform: [{ translateY: visibleAnim.interpolate({ inputRange: [0, 1], outputRange: [layout.height, 0] }) }], // Absolutely position the navigation bar so that the content is below it // This is needed to avoid gap at bottom when the navigation bar is hidden position: keyboardVisible ? 'absolute' : null } : null, barStyle], pointerEvents: layout.measured ? keyboardHidesNavigationBar && keyboardVisible ? 'none' : 'auto' : 'none', onLayout: onLayout }, /*#__PURE__*/React.createElement(Animated.View, { style: [styles.barContent, { backgroundColor }] }, /*#__PURE__*/React.createElement(View, { style: [styles.items, { marginBottom: BOTTOM_INSET, maxWidth: maxTabBarWidth }] }, shifting ? /*#__PURE__*/React.createElement(Animated.View, { pointerEvents: "none", style: [styles.ripple, { // Since we have a single ripple, we have to reposition it so that it appears to expand from active tab. // We need to move it from the top to center of the navigation bar and from the left to the active tab. top: (BAR_HEIGHT - rippleSize) / 2, left: tabWidth * (navigationState.index + 0.5) - rippleSize / 2, height: rippleSize, width: rippleSize, borderRadius: rippleSize / 2, backgroundColor: getColor({ route: routes[navigationState.index] }), transform: [{ // Scale to twice the size to ensure it covers the whole navigation bar scale: rippleAnim.interpolate({ inputRange: [0, 1], outputRange: [0, 8] }) }], opacity: rippleAnim.interpolate({ inputRange: [0, MIN_RIPPLE_SCALE, 0.3, 1], outputRange: [0, 0, 1, 1] }) }] }) : null, routes.map((route, index) => { const focused = navigationState.index === index; const active = tabsAnims[index]; // Scale the label up const scale = labeled && shifting ? active.interpolate({ inputRange: [0, 1], outputRange: [0.5, 1] }) : 1; // Move down the icon to account for no-label in shifting and smaller label in non-shifting. const translateY = labeled ? shifting ? active.interpolate({ inputRange: [0, 1], outputRange: [7, 0] }) : 0 : 7; // We render the active icon and label on top of inactive ones and cross-fade them on change. // This trick gives the illusion that we are animating between active and inactive colors. // This is to ensure that we can use native driver, as colors cannot be animated with native driver. const activeOpacity = active; const inactiveOpacity = active.interpolate({ inputRange: [0, 1], outputRange: [1, 0] }); const badge = getBadge({ route }); return renderTouchable({ key: route.key, route, borderless: true, centered: true, rippleColor: touchColor, onPress: () => handleTabPress(index), testID: getTestID({ route }), accessibilityLabel: getAccessibilityLabel({ route }), // @ts-expect-error We keep old a11y props for backwards compat with old RN versions accessibilityTraits: focused ? ['button', 'selected'] : 'button', accessibilityComponentType: 'button', accessibilityRole: 'button', accessibilityState: { selected: focused }, style: styles.item, children: /*#__PURE__*/React.createElement(View, { pointerEvents: "none" }, /*#__PURE__*/React.createElement(Animated.View, { style: [styles.iconContainer, { transform: [{ translateY }] }] }, /*#__PURE__*/React.createElement(Animated.View, { style: [styles.iconWrapper, { opacity: activeOpacity }] }, renderIcon ? renderIcon({ route, focused: true, color: activeTintColor }) : /*#__PURE__*/React.createElement(Icon, { source: route.icon, color: activeTintColor, size: 24 })), /*#__PURE__*/React.createElement(Animated.View, { style: [styles.iconWrapper, { opacity: inactiveOpacity }] }, renderIcon ? renderIcon({ route, focused: false, color: inactiveTintColor }) : /*#__PURE__*/React.createElement(Icon, { source: route.icon, color: inactiveTintColor, size: 24 })), /*#__PURE__*/React.createElement(View, { style: [styles.badgeContainer, { right: (badge != null && typeof badge !== 'boolean' ? String(badge).length * -2 : 0) - 2 }] }, typeof badge === 'boolean' ? /*#__PURE__*/React.createElement(Badge, { visible: badge, size: 8 }) : /*#__PURE__*/React.createElement(Badge, { visible: badge != null, size: 16 }, badge))), labeled ? /*#__PURE__*/React.createElement(Animated.View, { style: [styles.labelContainer, { transform: [{ scale }] }] }, /*#__PURE__*/React.createElement(Animated.View, { style: [styles.labelWrapper, { opacity: activeOpacity }] }, renderLabel ? renderLabel({ route, focused: true, color: activeTintColor }) : /*#__PURE__*/React.createElement(Text, { style: [styles.label, { color: activeTintColor }] }, getLabelText({ route }))), shifting ? null : /*#__PURE__*/React.createElement(Animated.View, { style: [styles.labelWrapper, { opacity: inactiveOpacity }] }, renderLabel ? renderLabel({ route, focused: false, color: inactiveTintColor }) : /*#__PURE__*/React.createElement(Text, { selectable: false, style: [styles.label, { color: inactiveTintColor }] }, getLabelText({ route })))) : /*#__PURE__*/React.createElement(View, { style: styles.labelContainer })) }); }))))); }; /** * Function which takes a map of route keys to components. * Pure components are used to minimize re-rendering of the pages. * This drastically improves the animation performance. */ BottomNavigation.SceneMap = scenes => { return ({ route, jumpTo }) => /*#__PURE__*/React.createElement(SceneComponent, { key: route.key, component: scenes[route.key ? route.key : ''], route: route, jumpTo: jumpTo }); }; export default withTheme(BottomNavigation); const styles = StyleSheet.create({ container: { flex: 1, overflow: 'hidden' }, content: { flex: 1 }, bar: { left: 0, right: 0, bottom: 0, elevation: 4 }, barContent: { alignItems: 'center', overflow: 'hidden' }, items: { flexDirection: 'row', width: '100%' }, item: { flex: 1, // Top padding is 6 and bottom padding is 10 // The extra 4dp bottom padding is offset by label's height paddingVertical: 6 }, ripple: { position: 'absolute' }, iconContainer: { height: 24, width: 24, marginTop: 2, marginHorizontal: 12, alignSelf: 'center' }, iconWrapper: { ...StyleSheet.absoluteFillObject, alignItems: 'center' }, labelContainer: { height: 16, paddingBottom: 2 }, labelWrapper: { ...StyleSheet.absoluteFillObject }, // eslint-disable-next-line react-native/no-color-literals label: { fontSize: 12, textAlign: 'center', backgroundColor: 'transparent', ...(Platform.OS === 'web' ? { whiteSpace: 'nowrap', alignSelf: 'center' } : null) }, badgeContainer: { position: 'absolute', left: 0, top: -2 } }); //# sourceMappingURL=BottomNavigation.js.map