-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
MaterialCommunityIcon.tsx
109 lines (98 loc) · 2.53 KB
/
MaterialCommunityIcon.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
import * as React from 'react';
import { StyleSheet, Text, Platform } from 'react-native';
export type IconProps = {
name: string;
color: string;
size: number;
direction: 'rtl' | 'ltr';
allowFontScaling?: boolean;
};
let MaterialCommunityIcons: any;
try {
// Optionally require vector-icons
MaterialCommunityIcons = require('react-native-vector-icons/MaterialCommunityIcons')
.default;
} catch (e) {
if (
// @ts-ignore
global.__expo &&
// @ts-ignore
global.__expo.Icon &&
// @ts-ignore
global.__expo.Icon.MaterialCommunityIcons
) {
// Snack doesn't properly bundle vector icons from subpath
// Use icons from the __expo global if available
// @ts-ignore
MaterialCommunityIcons = global.__expo.Icon.MaterialCommunityIcons;
} else {
let isErrorLogged = false;
// Fallback component for icons
// @ts-ignore
MaterialCommunityIcons = ({ name, color, size, ...rest }) => {
/* 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' 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/icons.html.`
);
isErrorLogged = true;
}
return (
<Text
{...rest}
style={[styles.icon, { color, fontSize: size }]}
// @ts-ignore
pointerEvents="none"
>
□
</Text>
);
};
}
}
export const accessibilityProps =
Platform.OS === 'web'
? {
role: 'img',
focusable: false,
}
: {
accessibilityElementsHidden: true,
importantForAccessibility: 'no-hide-descendants' as 'no-hide-descendants',
};
const defaultIcon = ({
name,
color,
size,
direction,
allowFontScaling,
}: IconProps) => (
<MaterialCommunityIcons
allowFontScaling={allowFontScaling}
name={name}
color={color}
size={size}
style={[
{
transform: [{ scaleX: direction === 'rtl' ? -1 : 1 }],
},
styles.icon,
]}
pointerEvents="none"
{...accessibilityProps}
/>
);
const styles = StyleSheet.create({
icon: {
backgroundColor: 'transparent',
},
});
export default defaultIcon;