-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathutils.tsx
More file actions
82 lines (71 loc) · 1.55 KB
/
Copy pathutils.tsx
File metadata and controls
82 lines (71 loc) · 1.55 KB
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
import type { StyleProp, ViewStyle } from 'react-native';
import type { InternalTheme, Theme } from '../../types';
type CardMode = 'elevated' | 'outlined' | 'contained';
type BorderRadiusStyles = Pick<
ViewStyle,
Extract<keyof ViewStyle, `border${string}Radius`>
>;
export type CardActionChildProps = {
compact?: boolean;
mode?: string;
style?: StyleProp<ViewStyle>;
};
export const getCardCoverStyle = ({
theme,
index: _index,
total: _total,
borderRadiusStyles,
}: {
theme: InternalTheme;
borderRadiusStyles: BorderRadiusStyles;
index?: number;
total?: number;
}) => {
const { roundness } = theme;
if (Object.keys(borderRadiusStyles).length > 0) {
return {
borderRadius: 3 * roundness,
...borderRadiusStyles,
};
}
return {
borderRadius: 3 * roundness,
};
};
const getBorderColor = ({ theme }: { theme: InternalTheme }) => {
return (theme as Theme).colors.outline;
};
const getBackgroundColor = ({
theme,
isMode,
}: {
theme: InternalTheme;
isMode: (mode: CardMode) => boolean;
}) => {
const { colors } = theme as Theme;
if (isMode('contained')) {
return colors.surfaceVariant;
}
if (isMode('outlined')) {
return colors.surface;
}
return undefined;
};
export const getCardColors = ({
theme,
mode,
}: {
theme: InternalTheme;
mode: CardMode;
}) => {
const isMode = (modeToCompare: CardMode) => {
return mode === modeToCompare;
};
return {
backgroundColor: getBackgroundColor({
theme,
isMode,
}),
borderColor: getBorderColor({ theme }),
};
};