fln-espranza 0.0.27 → 0.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/EOption.tsx +4 -2
- package/components/ETimeLineCard.tsx +19 -14
- package/package.json +1 -1
package/components/EOption.tsx
CHANGED
|
@@ -48,7 +48,7 @@ const EOption = ({
|
|
|
48
48
|
activeOpacity={0.7}
|
|
49
49
|
{...props}
|
|
50
50
|
>
|
|
51
|
-
{imageSource
|
|
51
|
+
{imageSource ? (
|
|
52
52
|
<View
|
|
53
53
|
style={[
|
|
54
54
|
tw`${MediaContainerStyle}`,
|
|
@@ -80,7 +80,9 @@ const EOption = ({
|
|
|
80
80
|
resizeMode="contain"
|
|
81
81
|
/>
|
|
82
82
|
</View>
|
|
83
|
-
)
|
|
83
|
+
)
|
|
84
|
+
: <></>
|
|
85
|
+
}
|
|
84
86
|
{text ? (
|
|
85
87
|
<EText
|
|
86
88
|
size={"base"}
|
|
@@ -1,25 +1,22 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
2
|
import { Dimensions, TouchableOpacity, View } from 'react-native'
|
|
3
|
-
import { ChevronRightIcon } from 'react-native-heroicons/solid';
|
|
4
3
|
import tw from '../lib/tailwind'
|
|
5
4
|
import { Colors } from '../utils/Color';
|
|
6
5
|
import EBadge from './EBadge'
|
|
7
|
-
import EButton from './EButton';
|
|
8
|
-
import EDateAndTimeCard from './EDateAndTimeCard'
|
|
9
6
|
import EText from './EText';
|
|
10
|
-
import
|
|
7
|
+
import EIconChevronRight from './icons/EIconChevronRight';
|
|
11
8
|
|
|
12
9
|
interface IProps {
|
|
13
10
|
title: string;
|
|
14
11
|
description: string;
|
|
15
12
|
completed: boolean;
|
|
16
|
-
anotherButton?: boolean;
|
|
17
13
|
onPress?: () => void;
|
|
18
|
-
|
|
14
|
+
buttonText?: string;
|
|
19
15
|
disabled: boolean;
|
|
16
|
+
badgeText?: string;
|
|
20
17
|
}
|
|
21
18
|
|
|
22
|
-
export default function ETimeLineCard({ title, description, completed,
|
|
19
|
+
export default function ETimeLineCard({ title, description, completed, disabled, onPress, buttonText, badgeText }: IProps) {
|
|
23
20
|
return (
|
|
24
21
|
<TouchableOpacity
|
|
25
22
|
onPress={() => onPress && onPress()}
|
|
@@ -42,25 +39,33 @@ export default function ETimeLineCard({ title, description, completed, anotherBu
|
|
|
42
39
|
{description}
|
|
43
40
|
</EText>
|
|
44
41
|
</View>
|
|
45
|
-
<View style={tw`ml-4`}>
|
|
42
|
+
{/* <View style={tw`ml-4`}>
|
|
46
43
|
<ChevronRightIcon style={[tw``, { color: Colors['text-body'] }]} size={16} />
|
|
44
|
+
</View> */}
|
|
45
|
+
<View style={tw`ml-4`}>
|
|
46
|
+
<EBadge
|
|
47
|
+
completed={completed}
|
|
48
|
+
text={
|
|
49
|
+
badgeText ? badgeText : completed ? "Complete" : "Pending"}
|
|
50
|
+
color={completed ? Colors['primary-base'] : Colors.warning}
|
|
51
|
+
/>
|
|
47
52
|
</View>
|
|
48
53
|
</View>
|
|
49
54
|
|
|
50
55
|
<View style={tw`mt-6 flex-row items-center justify-between`}>
|
|
51
|
-
<EBadge
|
|
56
|
+
{/* <EBadge
|
|
52
57
|
completed={completed}
|
|
53
58
|
text={completed ? "Complete" : "Pending"}
|
|
54
59
|
color={completed ? Colors['primary-base'] : Colors.warning}
|
|
55
|
-
/>
|
|
60
|
+
/> */}
|
|
56
61
|
|
|
57
62
|
{
|
|
58
|
-
|
|
59
|
-
<TouchableOpacity style={tw`flex-row`} onPress={
|
|
63
|
+
!disabled ? (
|
|
64
|
+
<TouchableOpacity style={tw`flex-row`} onPress={onPress}>
|
|
60
65
|
<EText size="sm" style={[tw`ml-2 font-semibold`, { color: Colors['primary-base'] }]}>
|
|
61
|
-
|
|
66
|
+
{buttonText}
|
|
62
67
|
</EText>
|
|
63
|
-
<
|
|
68
|
+
<EIconChevronRight size={20} style={[tw`ml-2`, { color: Colors['primary-base'] }]} />
|
|
64
69
|
</TouchableOpacity>
|
|
65
70
|
|
|
66
71
|
) : <></>
|