Rocket.Chat.ReactNative/app/containers/HeaderButton.js

89 lines
2.5 KiB
JavaScript
Raw Normal View History

2019-03-12 16:23:06 +00:00
import React from 'react';
import PropTypes from 'prop-types';
import { HeaderButtons, HeaderButton, Item } from 'react-navigation-header-buttons';
2019-03-12 16:23:06 +00:00
import { CustomIcon } from '../lib/Icons';
2019-12-04 16:39:53 +00:00
import { isIOS, isAndroid } from '../utils/deviceInfo';
import { themes } from '../constants/colors';
2019-07-29 16:33:28 +00:00
import I18n from '../i18n';
2019-12-04 16:39:53 +00:00
import { withTheme } from '../theme';
2019-03-12 16:23:06 +00:00
export const headerIconSize = 23;
2019-03-12 16:23:06 +00:00
2019-12-04 16:39:53 +00:00
const CustomHeaderButton = React.memo(withTheme(({ theme, ...props }) => (
<HeaderButton
{...props}
IconComponent={CustomIcon}
iconSize={headerIconSize}
color={
isAndroid
? themes[theme].headerTitleColor
: themes[theme].headerTintColor
}
/>
)));
2019-03-12 16:23:06 +00:00
export const CustomHeaderButtons = React.memo(props => (
<HeaderButtons
HeaderButtonComponent={CustomHeaderButton}
{...props}
/>
));
export const DrawerButton = React.memo(({ navigation, testID, ...otherProps }) => (
2019-03-12 16:23:06 +00:00
<CustomHeaderButtons left>
<Item title='drawer' iconName='customize' onPress={navigation.toggleDrawer} testID={testID} {...otherProps} />
2019-03-12 16:23:06 +00:00
</CustomHeaderButtons>
));
export const CloseModalButton = React.memo(({ navigation, testID }) => (
<CustomHeaderButtons left>
<Item title='close' iconName='cross' onPress={() => navigation.pop()} testID={testID} />
</CustomHeaderButtons>
));
2019-07-18 17:44:02 +00:00
export const CloseShareExtensionButton = React.memo(({ onPress, testID }) => (
<CustomHeaderButtons left>
{isIOS
2019-07-29 16:33:28 +00:00
? <Item title={I18n.t('Cancel')} onPress={onPress} testID={testID} />
2019-07-18 17:44:02 +00:00
: <Item title='close' iconName='cross' onPress={onPress} testID={testID} />
}
</CustomHeaderButtons>
));
2019-03-12 16:23:06 +00:00
export const MoreButton = React.memo(({ onPress, testID }) => (
<CustomHeaderButtons>
<Item title='more' iconName='menu' onPress={onPress} testID={testID} />
</CustomHeaderButtons>
));
export const LegalButton = React.memo(({ navigation, testID }) => (
<MoreButton onPress={() => navigation.navigate('LegalView')} testID={testID} />
));
2019-12-04 16:39:53 +00:00
CustomHeaderButton.propTypes = {
theme: PropTypes.string
};
2019-03-12 16:23:06 +00:00
DrawerButton.propTypes = {
navigation: PropTypes.object.isRequired,
testID: PropTypes.string.isRequired
};
CloseModalButton.propTypes = {
navigation: PropTypes.object.isRequired,
testID: PropTypes.string.isRequired
};
2019-07-18 17:44:02 +00:00
CloseShareExtensionButton.propTypes = {
onPress: PropTypes.func.isRequired,
testID: PropTypes.string.isRequired
};
2019-03-12 16:23:06 +00:00
MoreButton.propTypes = {
onPress: PropTypes.func.isRequired,
testID: PropTypes.string.isRequired
};
LegalButton.propTypes = {
navigation: PropTypes.object.isRequired,
testID: PropTypes.string.isRequired
};
export { Item };