@holper/react-native-holper-storybook 0.6.101 → 0.7.0
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/.expo/README.md +8 -0
- package/.nvmrc +1 -0
- package/.prettierignore +5 -0
- package/.storybook/index.jsx +11 -0
- package/.storybook/main.js +8 -0
- package/.storybook/preview.jsx +51 -0
- package/.storybook/storybook.requires.js +43 -0
- package/.yarn/releases/yarn-4.5.0.cjs +925 -0
- package/.yarnrc.yml +3 -0
- package/App.jsx +29 -0
- package/LICENSE +21 -0
- package/{readme.md → README.md} +18 -19
- package/app.config.js +77 -0
- package/assets/adaptive-icon.png +0 -0
- package/assets/favicon.png +0 -0
- package/assets/fonts/Poppins-Bold.ttf +0 -0
- package/assets/fonts/Poppins-Regular.ttf +0 -0
- package/assets/fonts/Poppins-SemiBold.ttf +0 -0
- package/assets/icon.png +0 -0
- package/assets/splash.png +0 -0
- package/babel.config.js +7 -0
- package/build.sh +11 -0
- package/components/Button/index.tsx +66 -0
- package/{lib/components/Button/style.js → components/Button/style.ts} +8 -7
- package/components/Card/index.tsx +33 -0
- package/{lib/components/Card/style.js → components/Card/style.ts} +5 -4
- package/{lib/components/ConfirmationModal/index.js → components/ConfirmationModal/index.tsx} +25 -79
- package/{lib/components/ConfirmationModal/style.js → components/ConfirmationModal/style.tsx} +14 -13
- package/{lib/components/Container/index.js → components/Container/index.tsx} +7 -28
- package/{lib/components/Container/style.js → components/Container/style.ts} +6 -5
- package/{lib/components/CustomChatView/index.js → components/CustomChatView/index.tsx} +22 -30
- package/{lib/components/CustomChatView/style.js → components/CustomChatView/style.ts} +1 -1
- package/components/DeckSwiper/index.tsx +90 -0
- package/{lib/components/DeckSwiper/style.js → components/DeckSwiper/style.ts} +13 -12
- package/components/DonutCountdown/index.tsx +86 -0
- package/components/DonutCountdown/style.ts +8 -0
- package/components/FloatingContainer/index.tsx +35 -0
- package/{lib/components/FloatingContainer/style.js → components/FloatingContainer/style.ts} +7 -6
- package/components/Footer/index.tsx +35 -0
- package/{lib/components/Footer/style.js → components/Footer/style.ts} +4 -3
- package/components/Header/index.tsx +21 -0
- package/{lib/components/Header/style.js → components/Header/style.ts} +4 -3
- package/{lib/components/ImagePicker/index.js → components/ImagePicker/index.tsx} +3 -12
- package/components/ImageResponsive/index.tsx +24 -0
- package/components/ImageResponsive/style.ts +9 -0
- package/components/ImageViewer/index.tsx +36 -0
- package/{lib/components/ImageViewer/style.js → components/ImageViewer/style.ts} +11 -10
- package/{lib/components/Input/index.js → components/Input/index.tsx} +6 -33
- package/{lib/components/Input/style.js → components/Input/style.ts} +7 -18
- package/{lib/components/InputPin/index.js → components/InputPin/index.tsx} +6 -13
- package/{lib/components/InputPin/style.js → components/InputPin/style.ts} +7 -6
- package/components/MenuItem/index.tsx +25 -0
- package/{lib/components/MenuItem/style.js → components/MenuItem/style.ts} +9 -7
- package/{lib/components/NavigationTitle/index.js → components/NavigationTitle/index.tsx} +9 -30
- package/{lib/components/NavigationTitle/style.js → components/NavigationTitle/style.ts} +12 -11
- package/components/Notification/index.tsx +44 -0
- package/{lib/components/Notification/style.js → components/Notification/style.ts} +13 -11
- package/components/PreventDoubleClick/index.tsx +28 -0
- package/components/Select/index.tsx +51 -0
- package/components/Select/style.ts +64 -0
- package/{lib/components/SwipeablePanel/index.js → components/SwipeablePanel/index.tsx} +58 -85
- package/{lib/components/SwipeablePanel/style.js → components/SwipeablePanel/style.ts} +15 -14
- package/components/Switch/index.tsx +30 -0
- package/components/TakePicture/confirmPictureModal.tsx +37 -0
- package/components/TakePicture/index.tsx +148 -0
- package/{lib/components/TakePicture/style.js → components/TakePicture/style.ts} +4 -4
- package/components/Text/index.tsx +33 -0
- package/{lib/components/Text/style.js → components/Text/style.ts} +4 -2
- package/{lib/components/Textarea/index.js → components/Textarea/index.tsx} +5 -24
- package/{lib/components/Textarea/style.js → components/Textarea/style.ts} +5 -4
- package/components/TimeOutButton/index.tsx +67 -0
- package/{lib/components/TimeOutButton/style.js → components/TimeOutButton/style.ts} +4 -3
- package/components/Toast/index.tsx +34 -0
- package/components/Toast/style.ts +12 -0
- package/{lib/components/UploadDocument/index.js → components/UploadDocument/index.tsx} +49 -105
- package/{lib/components/UploadDocument/style.js → components/UploadDocument/style.ts} +16 -15
- package/components/VirtualKeyboard/index.tsx +75 -0
- package/{lib/components/VirtualKeyboard/style.js → components/VirtualKeyboard/style.ts} +9 -8
- package/components/index.ts +29 -0
- package/{lib/configs/constants.js → configs/constants.ts} +50 -48
- package/configs/types.ts +326 -0
- package/eas.json +27 -0
- package/eslint.config.mjs +205 -0
- package/hooks/index.ts +2 -0
- package/{lib/hooks/useDebounce.js → hooks/useDebounce.tsx} +6 -4
- package/hooks/useLoadFonts.tsx +13 -0
- package/index.js +3 -2
- package/lib/components/Button/index.tsx +66 -0
- package/lib/components/Button/style.ts +111 -0
- package/lib/components/Card/index.tsx +33 -0
- package/lib/components/Card/style.ts +34 -0
- package/lib/components/ConfirmationModal/index.tsx +104 -0
- package/lib/components/ConfirmationModal/style.tsx +53 -0
- package/lib/components/Container/index.tsx +33 -0
- package/lib/components/Container/style.ts +13 -0
- package/lib/components/CustomChatView/index.tsx +65 -0
- package/lib/components/CustomChatView/style.ts +10 -0
- package/lib/components/DeckSwiper/index.tsx +90 -0
- package/lib/components/DeckSwiper/style.ts +59 -0
- package/lib/components/DonutCountdown/index.tsx +86 -0
- package/lib/components/DonutCountdown/style.ts +8 -0
- package/lib/components/FloatingContainer/index.tsx +35 -0
- package/lib/components/FloatingContainer/style.ts +25 -0
- package/lib/components/Footer/index.tsx +35 -0
- package/lib/components/Footer/style.ts +40 -0
- package/lib/components/Header/index.tsx +21 -0
- package/lib/components/Header/style.ts +34 -0
- package/lib/components/ImagePicker/index.tsx +18 -0
- package/lib/components/ImageResponsive/index.tsx +24 -0
- package/lib/components/ImageResponsive/style.ts +9 -0
- package/lib/components/ImageViewer/index.tsx +36 -0
- package/lib/components/ImageViewer/style.ts +38 -0
- package/lib/components/Input/index.tsx +62 -0
- package/lib/components/Input/style.ts +91 -0
- package/lib/components/InputPin/index.tsx +21 -0
- package/lib/components/InputPin/style.ts +22 -0
- package/lib/components/MenuItem/index.tsx +25 -0
- package/lib/components/MenuItem/style.ts +44 -0
- package/lib/components/NavigationTitle/index.tsx +53 -0
- package/lib/components/NavigationTitle/style.ts +49 -0
- package/lib/components/Notification/index.tsx +44 -0
- package/lib/components/Notification/style.ts +50 -0
- package/lib/components/PreventDoubleClick/index.tsx +28 -0
- package/lib/components/Select/index.tsx +51 -0
- package/lib/components/Select/style.ts +64 -0
- package/lib/components/SwipeablePanel/index.tsx +208 -0
- package/lib/components/SwipeablePanel/style.ts +81 -0
- package/lib/components/Switch/index.tsx +30 -0
- package/lib/components/TakePicture/confirmPictureModal.tsx +37 -0
- package/lib/components/TakePicture/index.tsx +148 -0
- package/lib/components/TakePicture/style.ts +95 -0
- package/lib/components/Text/index.tsx +33 -0
- package/lib/components/Text/style.ts +101 -0
- package/lib/components/Textarea/index.tsx +26 -0
- package/lib/components/Textarea/style.ts +38 -0
- package/lib/components/TimeOutButton/index.tsx +67 -0
- package/lib/components/TimeOutButton/style.ts +42 -0
- package/lib/components/Toast/index.tsx +34 -0
- package/lib/components/Toast/style.ts +12 -0
- package/lib/components/UploadDocument/index.tsx +179 -0
- package/lib/components/UploadDocument/style.ts +57 -0
- package/lib/components/VirtualKeyboard/index.tsx +75 -0
- package/lib/components/VirtualKeyboard/style.ts +25 -0
- package/lib/components/index.ts +29 -0
- package/lib/configs/constants.ts +273 -0
- package/lib/configs/types.ts +326 -0
- package/lib/hooks/index.ts +2 -0
- package/lib/hooks/useDebounce.tsx +24 -0
- package/lib/hooks/useLoadFonts.tsx +13 -0
- package/lib/index.js +3 -2
- package/metro.config.js +11 -0
- package/package.json +72 -63
- package/prettier.config.mjs +23 -0
- package/stories/Button.stories.tsx +181 -0
- package/stories/Card.stories.tsx +22 -0
- package/stories/Colors.stories.tsx +57 -0
- package/stories/ConfirmationModal.stories.tsx +142 -0
- package/stories/Container.stories.tsx +105 -0
- package/stories/DeckSwiper.stories.tsx +43 -0
- package/stories/DonutCountdown.stories.tsx +134 -0
- package/stories/FloatingContainer.stories.tsx +139 -0
- package/stories/Footer.stories.tsx +65 -0
- package/stories/Header.stories.tsx +37 -0
- package/stories/ImagePicker.stories.tsx +14 -0
- package/stories/ImageResponsive.stories.tsx +18 -0
- package/stories/ImageViewer.stories.tsx +24 -0
- package/stories/Input.stories.tsx +119 -0
- package/stories/InputPin.stories.tsx +40 -0
- package/stories/Menu.stories.tsx +53 -0
- package/stories/MenuItem.stories.tsx +30 -0
- package/stories/NavigationTitle.stories.tsx +51 -0
- package/stories/Notification.stories.tsx +58 -0
- package/stories/Select.stories.tsx +270 -0
- package/stories/SwipeablePanel.stories.tsx +360 -0
- package/stories/Switch.stories.tsx +36 -0
- package/stories/TakePicture.stories.tsx +59 -0
- package/stories/Text.stories.tsx +61 -0
- package/stories/Textarea.stories.tsx +48 -0
- package/stories/TimeOutButton.stories.tsx +55 -0
- package/stories/Toast.stories.tsx +37 -0
- package/stories/UploadDocument.stories.tsx +179 -0
- package/stories/VirtualKeyboard.stories.tsx +14 -0
- package/tsconfig.json +21 -0
- package/utilities/ScrollView.tsx +19 -0
- package/utilities/index.ts +2 -0
- package/utilities/utils.ts +29 -0
- package/lib/components/Button/index.js +0 -104
- package/lib/components/Card/index.js +0 -49
- package/lib/components/DeckSwiper/index.js +0 -118
- package/lib/components/FlashMessage/index.js +0 -81
- package/lib/components/FloatingContainer/index.js +0 -69
- package/lib/components/Footer/index.js +0 -61
- package/lib/components/Header/index.js +0 -45
- package/lib/components/ImageResponsive/index.js +0 -39
- package/lib/components/ImageResponsive/style.js +0 -7
- package/lib/components/ImageViewer/index.js +0 -62
- package/lib/components/MenuItem/index.js +0 -44
- package/lib/components/Notification/index.js +0 -80
- package/lib/components/PreventDoubleClick/index.js +0 -21
- package/lib/components/Select/index.js +0 -89
- package/lib/components/Select/style.js +0 -81
- package/lib/components/Switch/index.js +0 -57
- package/lib/components/TakePicture/confirmPictureModal.js +0 -64
- package/lib/components/TakePicture/index.js +0 -198
- package/lib/components/Text/index.js +0 -75
- package/lib/components/TimeOutButton/index.js +0 -104
- package/lib/components/VirtualKeyboard/index.js +0 -86
- package/lib/components/index.js +0 -28
- package/lib/configs/loadFonts.js +0 -11
- package/lib/hooks/index.js +0 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Dimensions, StyleSheet } from 'react-native';
|
|
2
|
+
|
|
3
|
+
import { Colors } from '../../configs/constants';
|
|
4
|
+
|
|
5
|
+
const { width } = Dimensions.get('window');
|
|
6
|
+
|
|
7
|
+
export default StyleSheet.create({
|
|
8
|
+
fullScreen: {
|
|
9
|
+
flex: 1,
|
|
10
|
+
width,
|
|
11
|
+
backgroundColor: Colors.white,
|
|
12
|
+
},
|
|
13
|
+
});
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { Alert, Linking, Platform, TouchableOpacity } from 'react-native';
|
|
2
|
+
import MapView, { PROVIDER_GOOGLE } from 'react-native-maps';
|
|
3
|
+
|
|
4
|
+
import { MapStyle } from '../../configs/constants';
|
|
5
|
+
import styles from './style';
|
|
6
|
+
|
|
7
|
+
import type { CustomChatViewProps } from '../../configs/types';
|
|
8
|
+
|
|
9
|
+
const CustomChatView = ({ currentMessage, containerStyle, mapViewStyle }: CustomChatViewProps) => {
|
|
10
|
+
const openMapAsync = async () => {
|
|
11
|
+
const { location } = currentMessage || {};
|
|
12
|
+
|
|
13
|
+
if (!location) {
|
|
14
|
+
Alert.alert('Location data is missing.');
|
|
15
|
+
return null;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
const mapScheme = Platform.select({
|
|
19
|
+
ios: 'maps:0,0?q=',
|
|
20
|
+
android: 'geo:0,0?q=',
|
|
21
|
+
});
|
|
22
|
+
const latLng = `${location.latitude},${location.longitude}`;
|
|
23
|
+
const label = `${currentMessage?.user?.name ?? ''}`;
|
|
24
|
+
|
|
25
|
+
const url = Platform.select({
|
|
26
|
+
ios: `${mapScheme}${label}@${latLng}`,
|
|
27
|
+
android: `${mapScheme}${latLng}(${label})`,
|
|
28
|
+
}) as string;
|
|
29
|
+
|
|
30
|
+
try {
|
|
31
|
+
const supported = await Linking.canOpenURL(url);
|
|
32
|
+
if (supported) {
|
|
33
|
+
return Linking.openURL(url);
|
|
34
|
+
}
|
|
35
|
+
Alert.alert('Opening the map is not supported.');
|
|
36
|
+
} catch ({ message }) {
|
|
37
|
+
Alert.alert(message);
|
|
38
|
+
}
|
|
39
|
+
return null;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
if (currentMessage?.location) {
|
|
43
|
+
return (
|
|
44
|
+
<TouchableOpacity style={[styles.container, containerStyle]} onPress={openMapAsync}>
|
|
45
|
+
<MapView
|
|
46
|
+
style={[styles.mapView, mapViewStyle]}
|
|
47
|
+
region={{
|
|
48
|
+
latitude: currentMessage.location.latitude,
|
|
49
|
+
longitude: currentMessage.location.longitude,
|
|
50
|
+
latitudeDelta: currentMessage.location.latitudeDelta || 0.0922,
|
|
51
|
+
longitudeDelta: currentMessage.location.longitudeDelta || 0.0421,
|
|
52
|
+
}}
|
|
53
|
+
customMapStyle={MapStyle}
|
|
54
|
+
provider={PROVIDER_GOOGLE}
|
|
55
|
+
scrollEnabled={false}
|
|
56
|
+
zoomEnabled={false}
|
|
57
|
+
/>
|
|
58
|
+
</TouchableOpacity>
|
|
59
|
+
);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
return null;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
export default CustomChatView;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { Entypo } from '@expo/vector-icons';
|
|
2
|
+
import { useRef, useState } from 'react';
|
|
3
|
+
import { Image, View } from 'react-native';
|
|
4
|
+
import Swiper from 'react-native-deck-swiper';
|
|
5
|
+
|
|
6
|
+
import { Colors } from '../../configs/constants';
|
|
7
|
+
import Button from '../Button';
|
|
8
|
+
import Text from '../Text';
|
|
9
|
+
import style from './style';
|
|
10
|
+
|
|
11
|
+
import type { DeckSwiperProps } from '../../configs/types';
|
|
12
|
+
|
|
13
|
+
const DeckSwiper = ({ data = [], inverted, nextText, onChange, onFinish }: DeckSwiperProps) => {
|
|
14
|
+
const swiper = useRef<Swiper<(typeof data)[0]>>(null);
|
|
15
|
+
const [finished, setFinished] = useState(false);
|
|
16
|
+
const [index, setIndex] = useState(0);
|
|
17
|
+
|
|
18
|
+
const renderDots = () =>
|
|
19
|
+
data?.map((d, i) => (
|
|
20
|
+
<Entypo name="dot-single" size={36} key={`dot-${i}`} style={style[index === i ? 'dotSelected' : 'dot']} />
|
|
21
|
+
));
|
|
22
|
+
|
|
23
|
+
return (
|
|
24
|
+
<>
|
|
25
|
+
<Swiper
|
|
26
|
+
ref={swiper}
|
|
27
|
+
cards={data}
|
|
28
|
+
renderCard={(card) => {
|
|
29
|
+
if (!card) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return (
|
|
33
|
+
<View style={style.card}>
|
|
34
|
+
<View style={style.imageContainer}>
|
|
35
|
+
<Image
|
|
36
|
+
style={style.imageResponsive}
|
|
37
|
+
source={card.image}
|
|
38
|
+
progressiveRenderingEnabled
|
|
39
|
+
resizeMode="contain"
|
|
40
|
+
/>
|
|
41
|
+
</View>
|
|
42
|
+
<View style={style.textContainer}>
|
|
43
|
+
<Text size="extra-large" style={style.title}>
|
|
44
|
+
{card.title}
|
|
45
|
+
</Text>
|
|
46
|
+
<Text size="large" align="center">
|
|
47
|
+
{card.description}
|
|
48
|
+
</Text>
|
|
49
|
+
</View>
|
|
50
|
+
</View>
|
|
51
|
+
);
|
|
52
|
+
}}
|
|
53
|
+
onSwipedAll={() => {
|
|
54
|
+
setFinished(true);
|
|
55
|
+
if (onFinish) {
|
|
56
|
+
onFinish();
|
|
57
|
+
}
|
|
58
|
+
}}
|
|
59
|
+
onSwipedRight={(i) => {
|
|
60
|
+
setIndex(i - 1);
|
|
61
|
+
onChange?.(i - 1);
|
|
62
|
+
}}
|
|
63
|
+
onSwipedLeft={(i) => {
|
|
64
|
+
setIndex(i + 1);
|
|
65
|
+
onChange?.(i + 1);
|
|
66
|
+
}}
|
|
67
|
+
cardIndex={index}
|
|
68
|
+
backgroundColor={Colors.white}
|
|
69
|
+
stackSize={2}
|
|
70
|
+
verticalSwipe={false}
|
|
71
|
+
showSecondCard
|
|
72
|
+
disableRightSwipe={index === 0}
|
|
73
|
+
goBackToPreviousCardOnSwipeRight
|
|
74
|
+
childrenOnTop
|
|
75
|
+
/>
|
|
76
|
+
{!finished && (
|
|
77
|
+
<>
|
|
78
|
+
<View style={style.dotsContainer}>{renderDots()}</View>
|
|
79
|
+
<View style={style.container}>
|
|
80
|
+
<Button variant={inverted ? 'inverted' : 'primary'} onPress={() => swiper.current?.swipeLeft()}>
|
|
81
|
+
<Text color="white">{nextText}</Text>
|
|
82
|
+
</Button>
|
|
83
|
+
</View>
|
|
84
|
+
</>
|
|
85
|
+
)}
|
|
86
|
+
</>
|
|
87
|
+
);
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
export default DeckSwiper;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { Dimensions, StyleSheet } from 'react-native';
|
|
2
|
+
|
|
3
|
+
import { Colors } from '../../configs/constants';
|
|
4
|
+
|
|
5
|
+
const { height, width } = Dimensions.get('window');
|
|
6
|
+
|
|
7
|
+
export default StyleSheet.create({
|
|
8
|
+
container: {
|
|
9
|
+
position: 'absolute',
|
|
10
|
+
bottom: 0,
|
|
11
|
+
flexDirection: 'column',
|
|
12
|
+
justifyContent: 'flex-end',
|
|
13
|
+
alignItems: 'center',
|
|
14
|
+
paddingVertical: 30,
|
|
15
|
+
paddingHorizontal: 15,
|
|
16
|
+
marginBottom: 10,
|
|
17
|
+
width,
|
|
18
|
+
},
|
|
19
|
+
card: {
|
|
20
|
+
flex: 1,
|
|
21
|
+
backgroundColor: Colors.white,
|
|
22
|
+
justifyContent: 'flex-start',
|
|
23
|
+
alignItems: 'center',
|
|
24
|
+
},
|
|
25
|
+
imageContainer: {
|
|
26
|
+
width: width - 90,
|
|
27
|
+
height: height / 2.3,
|
|
28
|
+
},
|
|
29
|
+
imageResponsive: {
|
|
30
|
+
height: undefined,
|
|
31
|
+
width: undefined,
|
|
32
|
+
flex: 1,
|
|
33
|
+
},
|
|
34
|
+
textContainer: {
|
|
35
|
+
display: 'flex',
|
|
36
|
+
flexDirection: 'column',
|
|
37
|
+
justifyContent: 'center',
|
|
38
|
+
alignItems: 'center',
|
|
39
|
+
width: width - 100,
|
|
40
|
+
},
|
|
41
|
+
title: {
|
|
42
|
+
marginVertical: 10,
|
|
43
|
+
},
|
|
44
|
+
dotsContainer: {
|
|
45
|
+
width,
|
|
46
|
+
flexDirection: 'row',
|
|
47
|
+
justifyContent: 'center',
|
|
48
|
+
alignItems: 'center',
|
|
49
|
+
marginTop: 15,
|
|
50
|
+
position: 'absolute',
|
|
51
|
+
bottom: 130,
|
|
52
|
+
},
|
|
53
|
+
dot: {
|
|
54
|
+
color: Colors.gray,
|
|
55
|
+
},
|
|
56
|
+
dotSelected: {
|
|
57
|
+
color: Colors.green,
|
|
58
|
+
},
|
|
59
|
+
});
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import React, { useEffect, useRef, useState } from 'react';
|
|
2
|
+
import { Animated, StyleSheet, View } from 'react-native';
|
|
3
|
+
import Svg, { Circle } from 'react-native-svg';
|
|
4
|
+
|
|
5
|
+
import { Colors } from '../../configs/constants';
|
|
6
|
+
import Text from '../Text';
|
|
7
|
+
import styles from './style';
|
|
8
|
+
|
|
9
|
+
import type { DonutCountdownProps } from '../../configs/types';
|
|
10
|
+
|
|
11
|
+
const AnimatedCircle = Animated.createAnimatedComponent(Circle);
|
|
12
|
+
|
|
13
|
+
const DonutCountdown = ({
|
|
14
|
+
bgColor = Colors.dimgray,
|
|
15
|
+
color = Colors.green,
|
|
16
|
+
duration = 10,
|
|
17
|
+
onComplete = () => {},
|
|
18
|
+
radius = 60,
|
|
19
|
+
strokeWidth = 10,
|
|
20
|
+
textColor = Colors.darkgray,
|
|
21
|
+
textSize = 'medium',
|
|
22
|
+
}: DonutCountdownProps) => {
|
|
23
|
+
const circumference = 2 * Math.PI * radius;
|
|
24
|
+
const halfCircle = radius + strokeWidth;
|
|
25
|
+
const animatedValue = useRef(new Animated.Value(0)).current;
|
|
26
|
+
const [timeLeft, setTimeLeft] = useState(duration);
|
|
27
|
+
|
|
28
|
+
useEffect(() => {
|
|
29
|
+
// Animate from 0 to 1
|
|
30
|
+
Animated.timing(animatedValue, {
|
|
31
|
+
toValue: 1,
|
|
32
|
+
duration: duration * 1000,
|
|
33
|
+
useNativeDriver: true,
|
|
34
|
+
}).start(onComplete);
|
|
35
|
+
|
|
36
|
+
// Countdown timer
|
|
37
|
+
const interval = setInterval(() => {
|
|
38
|
+
setTimeLeft((prev) => {
|
|
39
|
+
if (prev <= 1) {
|
|
40
|
+
clearInterval(interval);
|
|
41
|
+
return 0;
|
|
42
|
+
}
|
|
43
|
+
return prev - 1;
|
|
44
|
+
});
|
|
45
|
+
}, 1000);
|
|
46
|
+
|
|
47
|
+
return () => clearInterval(interval);
|
|
48
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
49
|
+
}, []);
|
|
50
|
+
|
|
51
|
+
const strokeDashoffset = animatedValue.interpolate({
|
|
52
|
+
inputRange: [0, 1],
|
|
53
|
+
outputRange: [0, circumference],
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
return (
|
|
57
|
+
<View style={{ width: radius * 2, height: radius * 2 }}>
|
|
58
|
+
<Svg width={radius * 2} height={radius * 2} viewBox={`0 0 ${halfCircle * 2} ${halfCircle * 2}`}>
|
|
59
|
+
{/* Background circle */}
|
|
60
|
+
<Circle cx="50%" cy="50%" r={radius} stroke={bgColor} strokeWidth={strokeWidth} fill="none" />
|
|
61
|
+
{/* Animated circle */}
|
|
62
|
+
<AnimatedCircle
|
|
63
|
+
cx="50%"
|
|
64
|
+
cy="50%"
|
|
65
|
+
r={radius}
|
|
66
|
+
stroke={color}
|
|
67
|
+
strokeWidth={strokeWidth}
|
|
68
|
+
fill="none"
|
|
69
|
+
strokeDasharray={`${circumference}, ${circumference}`}
|
|
70
|
+
strokeDashoffset={strokeDashoffset}
|
|
71
|
+
strokeLinecap="round"
|
|
72
|
+
transform={`rotate(-90 ${halfCircle} ${halfCircle})`}
|
|
73
|
+
/>
|
|
74
|
+
</Svg>
|
|
75
|
+
|
|
76
|
+
{/* Centered countdown text */}
|
|
77
|
+
<View style={[StyleSheet.absoluteFillObject, styles.center]}>
|
|
78
|
+
<Text weight="semiBold" size={textSize} style={{ color: textColor }}>
|
|
79
|
+
{timeLeft}
|
|
80
|
+
</Text>
|
|
81
|
+
</View>
|
|
82
|
+
</View>
|
|
83
|
+
);
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export default DonutCountdown;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { KeyboardAvoidingView, Platform, RefreshControl, ScrollView, View } from 'react-native';
|
|
2
|
+
|
|
3
|
+
import style from './style';
|
|
4
|
+
|
|
5
|
+
import type { FloatingContainerProps } from '../../configs/types';
|
|
6
|
+
|
|
7
|
+
const FloatingContainer = ({
|
|
8
|
+
useRefreshControl,
|
|
9
|
+
onRefresh,
|
|
10
|
+
isRefreshing,
|
|
11
|
+
children,
|
|
12
|
+
floatingComponent,
|
|
13
|
+
centered,
|
|
14
|
+
floatingContainerStyle,
|
|
15
|
+
disableScroll,
|
|
16
|
+
}: FloatingContainerProps) => (
|
|
17
|
+
<KeyboardAvoidingView style={style.floatingContainer} behavior={Platform.OS === 'ios' ? 'padding' : 'height'}>
|
|
18
|
+
<ScrollView
|
|
19
|
+
contentContainerStyle={centered ? style.centered : {}}
|
|
20
|
+
fadingEdgeLength={150}
|
|
21
|
+
keyboardShouldPersistTaps="handled"
|
|
22
|
+
showsVerticalScrollIndicator={false}
|
|
23
|
+
scrollEnabled={!disableScroll}
|
|
24
|
+
keyboardDismissMode="on-drag"
|
|
25
|
+
refreshControl={
|
|
26
|
+
useRefreshControl ? <RefreshControl refreshing={!!isRefreshing} onRefresh={onRefresh} /> : undefined
|
|
27
|
+
}
|
|
28
|
+
>
|
|
29
|
+
{children}
|
|
30
|
+
</ScrollView>
|
|
31
|
+
<View style={[style.container, floatingContainerStyle]}>{floatingComponent}</View>
|
|
32
|
+
</KeyboardAvoidingView>
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
export default FloatingContainer;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Dimensions, StyleSheet } from 'react-native';
|
|
2
|
+
|
|
3
|
+
import { Colors } from '../../configs/constants';
|
|
4
|
+
|
|
5
|
+
const { width } = Dimensions.get('window');
|
|
6
|
+
|
|
7
|
+
export default StyleSheet.create({
|
|
8
|
+
floatingContainer: {
|
|
9
|
+
flex: 1,
|
|
10
|
+
},
|
|
11
|
+
container: {
|
|
12
|
+
minHeight: 50,
|
|
13
|
+
width,
|
|
14
|
+
backgroundColor: Colors.white,
|
|
15
|
+
paddingTop: 10,
|
|
16
|
+
paddingBottom: 30,
|
|
17
|
+
paddingHorizontal: 8,
|
|
18
|
+
justifyContent: 'center',
|
|
19
|
+
alignItems: 'center',
|
|
20
|
+
alignSelf: 'center',
|
|
21
|
+
},
|
|
22
|
+
centered: {
|
|
23
|
+
alignItems: 'center',
|
|
24
|
+
},
|
|
25
|
+
});
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Ionicons } from '@expo/vector-icons';
|
|
2
|
+
import { TouchableOpacity, View } from 'react-native';
|
|
3
|
+
|
|
4
|
+
import { Colors } from '../../configs/constants';
|
|
5
|
+
import Text from '../Text';
|
|
6
|
+
import style from './style';
|
|
7
|
+
|
|
8
|
+
import type { FooterProps } from '../../configs/types';
|
|
9
|
+
|
|
10
|
+
const Footer = ({ inverted, tabs }: FooterProps) => {
|
|
11
|
+
const renderTab = () =>
|
|
12
|
+
tabs.map((tab, index) => (
|
|
13
|
+
<TouchableOpacity key={`tab-${index}`} style={style.tab} onPress={tab.onPress}>
|
|
14
|
+
<Ionicons
|
|
15
|
+
name={tab.icon as keyof typeof Ionicons.glyphMap}
|
|
16
|
+
size={20}
|
|
17
|
+
color={inverted ? Colors.white : Colors.darkblue}
|
|
18
|
+
/>
|
|
19
|
+
<Text color={inverted ? 'white' : 'dark'} size="small">
|
|
20
|
+
{tab.text}
|
|
21
|
+
</Text>
|
|
22
|
+
{tab.badge && tab.badge > 0 && (
|
|
23
|
+
<View style={style.badge}>
|
|
24
|
+
<Text color="white" size="tiny" weight="semiBold" align="center">
|
|
25
|
+
{tab.badge > 9 ? '+9' : tab.badge}
|
|
26
|
+
</Text>
|
|
27
|
+
</View>
|
|
28
|
+
)}
|
|
29
|
+
</TouchableOpacity>
|
|
30
|
+
));
|
|
31
|
+
|
|
32
|
+
return <View style={[style.footerContainer, style[inverted ? 'inverted' : 'default']]}>{renderTab()}</View>;
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export default Footer;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Dimensions, StyleSheet } from 'react-native';
|
|
2
|
+
|
|
3
|
+
import { Colors } from '../../configs/constants';
|
|
4
|
+
|
|
5
|
+
const { width } = Dimensions.get('window');
|
|
6
|
+
|
|
7
|
+
export default StyleSheet.create({
|
|
8
|
+
footerContainer: {
|
|
9
|
+
width,
|
|
10
|
+
height: 70,
|
|
11
|
+
paddingVertical: 10,
|
|
12
|
+
paddingHorizontal: 15,
|
|
13
|
+
flexDirection: 'row',
|
|
14
|
+
justifyContent: 'space-around',
|
|
15
|
+
alignItems: 'center',
|
|
16
|
+
},
|
|
17
|
+
default: {
|
|
18
|
+
backgroundColor: Colors.white,
|
|
19
|
+
borderTopColor: Colors.lightblue,
|
|
20
|
+
borderTopWidth: 1,
|
|
21
|
+
},
|
|
22
|
+
inverted: {
|
|
23
|
+
backgroundColor: Colors.violet,
|
|
24
|
+
},
|
|
25
|
+
tab: {
|
|
26
|
+
flexDirection: 'column',
|
|
27
|
+
justifyContent: 'center',
|
|
28
|
+
alignItems: 'center',
|
|
29
|
+
},
|
|
30
|
+
badge: {
|
|
31
|
+
position: 'absolute',
|
|
32
|
+
top: -5,
|
|
33
|
+
left: '52%',
|
|
34
|
+
backgroundColor: Colors.red,
|
|
35
|
+
height: 18,
|
|
36
|
+
width: 18,
|
|
37
|
+
borderRadius: 9,
|
|
38
|
+
justifyContent: 'center',
|
|
39
|
+
},
|
|
40
|
+
});
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Ionicons } from '@expo/vector-icons';
|
|
2
|
+
import { Image, TouchableOpacity, View } from 'react-native';
|
|
3
|
+
|
|
4
|
+
import { Colors } from '../../configs/constants';
|
|
5
|
+
import style from './style';
|
|
6
|
+
|
|
7
|
+
import type { HeaderProps } from '../../configs/types';
|
|
8
|
+
|
|
9
|
+
const Header = ({ inverted, logo, right, onMenuPress }: HeaderProps) => (
|
|
10
|
+
<View style={[style.headerContainer, style[inverted ? 'inverted' : 'default']]}>
|
|
11
|
+
<TouchableOpacity onPress={onMenuPress}>
|
|
12
|
+
<Ionicons name="menu-outline" size={30} color={inverted ? Colors.white : Colors.darkblue} />
|
|
13
|
+
</TouchableOpacity>
|
|
14
|
+
<View style={style.imageContainer}>
|
|
15
|
+
<Image style={style.imageResponsive} source={logo} progressiveRenderingEnabled resizeMode="contain" />
|
|
16
|
+
</View>
|
|
17
|
+
{right}
|
|
18
|
+
</View>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default Header;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Dimensions, StyleSheet } from 'react-native';
|
|
2
|
+
|
|
3
|
+
import { Colors } from '../../configs/constants';
|
|
4
|
+
|
|
5
|
+
const { width } = Dimensions.get('window');
|
|
6
|
+
|
|
7
|
+
export default StyleSheet.create({
|
|
8
|
+
headerContainer: {
|
|
9
|
+
width,
|
|
10
|
+
height: 70,
|
|
11
|
+
paddingVertical: 10,
|
|
12
|
+
paddingHorizontal: 15,
|
|
13
|
+
flexDirection: 'row',
|
|
14
|
+
justifyContent: 'space-between',
|
|
15
|
+
alignItems: 'center',
|
|
16
|
+
},
|
|
17
|
+
default: {
|
|
18
|
+
backgroundColor: Colors.white,
|
|
19
|
+
borderBottomColor: Colors.lightblue,
|
|
20
|
+
borderBottomWidth: 1,
|
|
21
|
+
},
|
|
22
|
+
inverted: {
|
|
23
|
+
backgroundColor: Colors.violet,
|
|
24
|
+
},
|
|
25
|
+
imageContainer: {
|
|
26
|
+
height: 40,
|
|
27
|
+
flex: 1,
|
|
28
|
+
},
|
|
29
|
+
imageResponsive: {
|
|
30
|
+
height: undefined,
|
|
31
|
+
width: undefined,
|
|
32
|
+
flex: 1,
|
|
33
|
+
},
|
|
34
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as ExpoImagePicker from 'expo-image-picker';
|
|
2
|
+
|
|
3
|
+
const ImagePicker = async (avatar: boolean = false) => {
|
|
4
|
+
const image = await ExpoImagePicker.launchImageLibraryAsync({
|
|
5
|
+
mediaTypes: ['images'],
|
|
6
|
+
allowsEditing: avatar,
|
|
7
|
+
aspect: [4, 3],
|
|
8
|
+
quality: 1,
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
if (image.canceled) {
|
|
12
|
+
return undefined;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
return image.assets && image.assets.length > 0 ? image.assets[0].uri : undefined;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export default ImagePicker;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { useState } from 'react';
|
|
2
|
+
import { Image, View } from 'react-native';
|
|
3
|
+
|
|
4
|
+
import style from './style';
|
|
5
|
+
|
|
6
|
+
import type { ImageResponsiveProps } from '../../configs/types';
|
|
7
|
+
|
|
8
|
+
const ImageResponsive = ({ source, style: customStyle, avatar, ...props }: ImageResponsiveProps) => {
|
|
9
|
+
const [width, setWidth] = useState<number>(100);
|
|
10
|
+
|
|
11
|
+
return (
|
|
12
|
+
<View style={[customStyle, avatar ? { borderRadius: width / 2, overflow: 'hidden' } : {}]}>
|
|
13
|
+
<Image
|
|
14
|
+
style={style.responsiveImage}
|
|
15
|
+
source={source}
|
|
16
|
+
resizeMode={avatar ? 'cover' : 'contain'}
|
|
17
|
+
onLayout={({ nativeEvent }) => setWidth(nativeEvent.layout.width)}
|
|
18
|
+
{...props}
|
|
19
|
+
/>
|
|
20
|
+
</View>
|
|
21
|
+
);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export default ImageResponsive;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Ionicons } from '@expo/vector-icons';
|
|
2
|
+
import { useState } from 'react';
|
|
3
|
+
import { ActivityIndicator, Modal, TouchableOpacity, View } from 'react-native';
|
|
4
|
+
|
|
5
|
+
import { Colors } from '../../configs/constants';
|
|
6
|
+
import ImageResponsive from '../ImageResponsive';
|
|
7
|
+
import style from './style';
|
|
8
|
+
|
|
9
|
+
import type { ImageViewerProps } from '../../configs/types';
|
|
10
|
+
|
|
11
|
+
const ImageViewer = ({ source, style: imageStyle, ...props }: ImageViewerProps) => {
|
|
12
|
+
const [loading, setLoading] = useState<boolean>(true);
|
|
13
|
+
const [visible, setVisible] = useState<boolean>(false);
|
|
14
|
+
|
|
15
|
+
return (
|
|
16
|
+
<>
|
|
17
|
+
<TouchableOpacity onPress={() => setVisible(true)}>
|
|
18
|
+
<ImageResponsive source={source} style={imageStyle} {...props} />
|
|
19
|
+
</TouchableOpacity>
|
|
20
|
+
|
|
21
|
+
<Modal animationType="slide" transparent visible={visible} onRequestClose={() => {}}>
|
|
22
|
+
<View style={style.container}>
|
|
23
|
+
<TouchableOpacity onPress={() => setVisible(false)} style={style.closeIcon}>
|
|
24
|
+
<Ionicons name="close-outline" size={24} color={Colors.darkblue} />
|
|
25
|
+
</TouchableOpacity>
|
|
26
|
+
|
|
27
|
+
<ImageResponsive source={source} style={style.body} onLoadEnd={() => setLoading(false)} />
|
|
28
|
+
|
|
29
|
+
{loading && <ActivityIndicator style={style.activityIndicator} />}
|
|
30
|
+
</View>
|
|
31
|
+
</Modal>
|
|
32
|
+
</>
|
|
33
|
+
);
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export default ImageViewer;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Dimensions, StyleSheet } from 'react-native';
|
|
2
|
+
|
|
3
|
+
import { Colors } from '../../configs/constants';
|
|
4
|
+
|
|
5
|
+
const { width, height } = Dimensions.get('window');
|
|
6
|
+
|
|
7
|
+
export default StyleSheet.create({
|
|
8
|
+
container: {
|
|
9
|
+
backgroundColor: 'rgba(0,0,0,0.9)',
|
|
10
|
+
flex: 1,
|
|
11
|
+
justifyContent: 'center',
|
|
12
|
+
alignItems: 'center',
|
|
13
|
+
position: 'relative',
|
|
14
|
+
},
|
|
15
|
+
closeIcon: {
|
|
16
|
+
position: 'absolute',
|
|
17
|
+
right: 35,
|
|
18
|
+
top: 70,
|
|
19
|
+
zIndex: 9999,
|
|
20
|
+
height: 30,
|
|
21
|
+
width: 30,
|
|
22
|
+
borderRadius: 15,
|
|
23
|
+
backgroundColor: Colors.lightblue,
|
|
24
|
+
alignItems: 'center',
|
|
25
|
+
justifyContent: 'center',
|
|
26
|
+
},
|
|
27
|
+
body: {
|
|
28
|
+
width,
|
|
29
|
+
height,
|
|
30
|
+
alignSelf: 'center',
|
|
31
|
+
position: 'relative',
|
|
32
|
+
},
|
|
33
|
+
activityIndicator: {
|
|
34
|
+
top: height / 2 - 100,
|
|
35
|
+
left: width / 2 - 20,
|
|
36
|
+
position: 'absolute',
|
|
37
|
+
},
|
|
38
|
+
});
|