react-native-paper
Version:
Material design for React Native
107 lines (104 loc) • 3.01 kB
JavaScript
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 color from 'color';
import * as React from 'react';
import { View, StyleSheet } from 'react-native';
import Text from '../Typography/Text';
import Icon from '../Icon';
import TouchableRipple from '../TouchableRipple/TouchableRipple';
import { withTheme } from '../../core/theming';
/**
* A component used to show an action item with an icon and a label in a navigation drawer.
*
* <div class="screenshots">
* <figure>
* <img class="medium" src="screenshots/drawer-item.png" />
* </figure>
* </div>
*
* ## Usage
* ```js
* import * as React from 'react';
* import { Drawer } from 'react-native-paper';
*
* const MyComponent = () => (
* <Drawer.Item
* style={{ backgroundColor: '#64ffda' }}
* icon="star"
* label="First Item"
* />
* );
*
* export default MyComponent;
* ```
*/
const DrawerItem = ({
icon,
label,
active,
theme,
style,
onPress,
accessibilityLabel,
...rest
}) => {
const {
colors,
roundness
} = theme;
const backgroundColor = active ? color(colors.primary).alpha(0.12).rgb().string() : 'transparent';
const contentColor = active ? colors.primary : color(colors.text).alpha(0.68).rgb().string();
const font = theme.fonts.medium;
const labelMargin = icon ? 32 : 0;
return /*#__PURE__*/React.createElement(View, _extends({}, rest, {
style: [styles.container, {
backgroundColor,
borderRadius: roundness
}, style]
}), /*#__PURE__*/React.createElement(TouchableRipple, {
borderless: true,
delayPressIn: 0,
onPress: onPress,
style: {
borderRadius: roundness
} // @ts-expect-error We keep old a11y props for backwards compat with old RN versions
,
accessibilityTraits: active ? ['button', 'selected'] : 'button',
accessibilityComponentType: "button",
accessibilityRole: "button",
accessibilityState: {
selected: active
},
accessibilityLabel: accessibilityLabel
}, /*#__PURE__*/React.createElement(View, {
style: styles.wrapper
}, icon ? /*#__PURE__*/React.createElement(Icon, {
source: icon,
size: 24,
color: contentColor
}) : null, /*#__PURE__*/React.createElement(Text, {
selectable: false,
numberOfLines: 1,
style: [styles.label, {
color: contentColor,
...font,
marginLeft: labelMargin
}]
}, label))));
};
DrawerItem.displayName = 'Drawer.Item';
const styles = StyleSheet.create({
container: {
marginHorizontal: 10,
marginVertical: 4
},
wrapper: {
flexDirection: 'row',
alignItems: 'center',
padding: 8
},
label: {
marginRight: 32
}
});
export default withTheme(DrawerItem);
//# sourceMappingURL=DrawerItem.js.map