react-native-paper
Version:
Material design for React Native
79 lines (78 loc) • 2.7 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : 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 { StyleSheet, Text, Platform } from 'react-native';
import { black } from '../styles/themes/v2/colors';
let MaterialCommunityIcons;
try {
// Optionally require vector-icons
MaterialCommunityIcons = require('react-native-vector-icons/MaterialCommunityIcons').default;
} catch (e) {
let isErrorLogged = false;
// Fallback component for icons
MaterialCommunityIcons = _ref => {
let {
name,
color,
size,
...rest
} = _ref;
/* eslint-disable no-console */
if (!isErrorLogged) {
if (!/(Cannot find module|Module not found|Cannot resolve module)/.test(e.message)) {
console.error(e);
}
console.warn(`Tried to use the icon '${name}' in a component from 'react-native-paper', but 'react-native-vector-icons/MaterialCommunityIcons' could not be loaded.`, `To remove this warning, try installing 'react-native-vector-icons' or use another method to specify icon: https://callstack.github.io/react-native-paper/docs/guides/icons`);
isErrorLogged = true;
}
return /*#__PURE__*/React.createElement(Text, _extends({}, rest, {
style: [styles.icon, {
color,
fontSize: size
}]
// @ts-expect-error: Text doesn't support this, but it seems to affect TouchableNativeFeedback
,
pointerEvents: "none",
selectable: false
}), "\u25A1");
};
}
export const accessibilityProps = Platform.OS === 'web' ? {
role: 'img',
focusable: false
} : {
accessibilityElementsHidden: true,
importantForAccessibility: 'no-hide-descendants'
};
const defaultIcon = _ref2 => {
let {
name,
color = black,
size,
direction,
allowFontScaling,
testID
} = _ref2;
return /*#__PURE__*/React.createElement(MaterialCommunityIcons, _extends({
allowFontScaling: allowFontScaling,
name: name,
color: color,
size: size,
style: [{
transform: [{
scaleX: direction === 'rtl' ? -1 : 1
}],
lineHeight: size
}, styles.icon],
pointerEvents: "none",
selectable: false,
testID: testID
}, accessibilityProps));
};
const styles = StyleSheet.create({
// eslint-disable-next-line react-native/no-color-literals
icon: {
backgroundColor: 'transparent'
}
});
export default defaultIcon;
//# sourceMappingURL=MaterialCommunityIcon.js.map