2020-06-15 14:00:46 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { SafeAreaView } from 'react-native-safe-area-context';
|
|
|
|
import { View, StyleSheet } from 'react-native';
|
|
|
|
import { themes } from '../../constants/colors';
|
|
|
|
import { themedHeader } from '../../utils/navigation';
|
2020-06-26 20:22:56 +00:00
|
|
|
import { isIOS, isTablet } from '../../utils/deviceInfo';
|
2020-10-30 16:15:58 +00:00
|
|
|
import { withTheme } from '../../theme';
|
2020-06-15 14:00:46 +00:00
|
|
|
|
|
|
|
// Get from https://github.com/react-navigation/react-navigation/blob/master/packages/stack/src/views/Header/HeaderSegment.tsx#L69
|
|
|
|
export const headerHeight = isIOS ? 44 : 56;
|
|
|
|
|
2020-06-26 20:22:56 +00:00
|
|
|
export const getHeaderHeight = (isLandscape) => {
|
|
|
|
if (isIOS) {
|
|
|
|
if (isLandscape && !isTablet) {
|
|
|
|
return 32;
|
|
|
|
} else {
|
|
|
|
return 44;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 56;
|
|
|
|
};
|
|
|
|
|
2020-11-04 19:13:29 +00:00
|
|
|
export const getHeaderTitlePosition = ({ insets, numIconsRight }) => ({
|
|
|
|
left: insets.left + 60,
|
|
|
|
right: insets.right + (45 * numIconsRight)
|
2020-07-06 20:56:28 +00:00
|
|
|
});
|
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
const styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
height: headerHeight,
|
|
|
|
flexDirection: 'row',
|
|
|
|
justifyContent: 'center',
|
|
|
|
elevation: 4
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const Header = ({
|
|
|
|
theme, headerLeft, headerTitle, headerRight
|
|
|
|
}) => (
|
|
|
|
<SafeAreaView style={{ backgroundColor: themes[theme].headerBackground }} edges={['top', 'left', 'right']}>
|
|
|
|
<View style={[styles.container, { ...themedHeader(theme).headerStyle }]}>
|
|
|
|
{headerLeft ? headerLeft() : null}
|
|
|
|
{headerTitle ? headerTitle() : null}
|
|
|
|
{headerRight ? headerRight() : null}
|
|
|
|
</View>
|
|
|
|
</SafeAreaView>
|
|
|
|
);
|
|
|
|
|
|
|
|
Header.propTypes = {
|
|
|
|
theme: PropTypes.string,
|
|
|
|
headerLeft: PropTypes.element,
|
|
|
|
headerTitle: PropTypes.element,
|
|
|
|
headerRight: PropTypes.element
|
|
|
|
};
|
|
|
|
|
2020-10-30 16:15:58 +00:00
|
|
|
export default withTheme(Header);
|