forked from Eliav2/react-native-collapsible-view
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
163 lines (148 loc) · 3.94 KB
/
index.js
File metadata and controls
163 lines (148 loc) · 3.94 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import React, { useState, useEffect, useRef } from "react";
import {
StyleSheet,
View,
Text,
TouchableOpacity,
I18nManager,
Animated,
Easing,
} from "react-native";
import Collapsible from "react-native-collapsible";
import ArrowDownIcon from "./ArrowDownIcon";
const CollapsibleView = ({
children,
title = "",
initExpanded = false,
expanded = null,
unmountOnCollapse = false,
isRTL = "auto",
duration = 300,
collapsibleProps = {},
collapsibleContainerStyle = {},
arrowStyling,
noArrow = false,
style = {},
activeOpacityFeedback = 0.3,
TouchableComponent = TouchableOpacity,
titleProps = {},
titleStyle = {},
touchableWrapperStyle = {},
touchableWrapperProps = {},
}) => {
let controlled = expanded !== null;
const [show, setShow] = useState(initExpanded);
const [mounted, setMounted] = useState(initExpanded);
const rotateAnim = useRef(new Animated.Value(0)).current;
if (controlled) {
if (!mounted && expanded) setMounted(true);
}
const handleArrowRotate = (open = null) => {
const _open = open === null ? show : open;
if (!_open)
Animated.timing(rotateAnim, {
toValue: 0,
duration,
easing: Easing.ease,
useNativeDriver: false,
}).start();
else {
Animated.timing(rotateAnim, {
toValue: rotateAngle,
duration,
easing: Easing.ease,
useNativeDriver: false,
}).start();
}
};
const handleAnimationEnd = () => {
if (unmountOnCollapse && !show) setMounted(false);
};
const handleToggleShow = () => {
if (!controlled)
if (!mounted) {
if (!show) setMounted(true);
} else {
setShow(!show);
}
};
// place the arrow on the left or the right based on the device direction and isRTL property
let rowDir = "row";
if (isRTL === "auto") isRTL = I18nManager.isRTL;
else if (isRTL !== I18nManager.isRTL) rowDir = "row-reverse";
const rotateAngle = isRTL ? 90 : -90;
const rotateAnimDeg = rotateAnim.interpolate({
inputRange: [0, 360],
outputRange: ["0deg", "360deg"],
});
const TitleElement =
typeof title === "string" ? (
<Text style={styles.TitleText}>{title}</Text>
) : (
title
);
useEffect(() => {
// this part is to trigger collapsible animation only after he has been fully mounted so animation would
// not be interrupted.
if (mounted) {
setShow(true);
// handleArrowRotate();
}
}, [mounted]);
useEffect(() => {
// on mounting set the rotation angel
rotateAnim.setValue(show ? 0 : rotateAngle);
}, []);
useEffect(() => {
if (mounted) handleArrowRotate(!show);
if (controlled && show != expanded) setShow(expanded);
});
return (
<TouchableComponent
style={[styles.container, style, touchableWrapperStyle]}
onPress={handleToggleShow}
activeOpacity={activeOpacityFeedback}
{...touchableWrapperProps}
>
<View
style={{
flexDirection: rowDir,
alignItems: "center",
...titleStyle,
}}
{...titleProps}
>
{noArrow ? null : (
<Animated.View style={{ transform: [{ rotate: rotateAnimDeg }] }}>
<ArrowDownIcon {...arrowStyling} />
</Animated.View>
)}
{TitleElement}
</View>
{mounted ? (
<View style={{ width: "100%", ...collapsibleContainerStyle }}>
<Collapsible
onAnimationEnd={handleAnimationEnd}
collapsed={!show}
{...{ duration, ...collapsibleProps }}
>
{children}
</Collapsible>
</View>
) : null}
</TouchableComponent>
);
};
export default CollapsibleView;
const styles = StyleSheet.create({
container: {
alignItems: "center",
marginHorizontal: 10,
marginVertical: 5,
padding: 5,
borderColor: "grey",
borderWidth: 1,
borderStyle: "solid",
},
TitleText: { color: "#3385ff", fontSize: 16, padding: 5 },
});