-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathModuleIDP.tsx
77 lines (71 loc) · 1.77 KB
/
ModuleIDP.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
import * as React from "react";
import { Image, ImageSourcePropType, StyleSheet } from "react-native";
import { addCacheTimestampToUri } from "../../utils/image";
import {
IOListItemLogoMargin,
useIOExperimentalDesign,
useIOTheme
} from "../../core";
import { IOText } from "../typography";
import {
PressableModuleBase,
PressableModuleBaseProps
} from "./PressableModuleBase";
interface ModuleIDP extends PressableModuleBaseProps {
name: string;
localLogo: ImageSourcePropType;
logo: ImageSourcePropType;
accessibilityLabel?: string;
}
const styles = StyleSheet.create({
idpLogo: {
marginStart: IOListItemLogoMargin,
width: 120,
height: 30,
resizeMode: "contain"
}
});
export const ModuleIDP = ({
name,
localLogo,
logo,
withLooseSpacing = false,
onPress,
testID,
accessibilityLabel
}: ModuleIDP) => {
const theme = useIOTheme();
const { isExperimental } = useIOExperimentalDesign();
// eslint-disable-next-line no-console
const urlLogoIDP = localLogo ? localLogo : addCacheTimestampToUri(logo);
return (
<PressableModuleBase
onPress={onPress}
testID={testID}
withLooseSpacing={withLooseSpacing}
>
<IOText
font={isExperimental ? "Titillio" : "TitilliumSansPro"}
weight={"Semibold"}
size={12}
lineHeight={16}
color={theme["textBody-tertiary"]}
textStyle={{
alignSelf: "center",
textTransform: "uppercase",
letterSpacing: 0.5,
flexShrink: 1
}}
accessibilityLabel={accessibilityLabel ?? name}
>
{name}
</IOText>
<Image
accessibilityIgnoresInvertColors
source={urlLogoIDP}
style={styles.idpLogo}
/>
</PressableModuleBase>
);
};
export default ModuleIDP;