forked from hamidhadi/react-native-collapsible-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
116 lines (102 loc) · 2.64 KB
/
index.js
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
import React, {Component} from 'react';
import {
View,
TouchableOpacity,
Platform,
UIManager,
LayoutAnimation,
} from 'react-native';
export default class CollapsibleList extends Component {
constructor(props) {
super(props);
if (
Platform.OS === 'android' &&
UIManager.setLayoutAnimationEnabledExperimental
) {
UIManager.setLayoutAnimationEnabledExperimental(true);
}
this.animationConfig = {
duration: 700,
update: {
type: 'spring',
springDamping: 0.7,
property: 'scaleXY',
},
};
this.state = {
minHeight: 0,
currentHeight: null,
collapsed: false,
initialized: false,
};
}
setMinHeight = (event) => {
const {height: minHeight} = event.nativeEvent.layout;
this.setState({minHeight}, () => {
this.setState({initialized: true, currentHeight: minHeight});
});
}
toggle = () => {
const {minHeight, collapsed} = this.state;
const {onToggle, animationConfig} = this.props;
let nextHeight;
if (collapsed) {
nextHeight = minHeight;
} else {
nextHeight = null;
}
LayoutAnimation.configureNext({
...this.animationConfig,
...animationConfig,
});
this.setState({currentHeight: nextHeight, collapsed: !collapsed}, () => {
if (onToggle) {
onToggle(this.state.collapsed);
}
});
}
renderButton = () => {
const {
numberOfVisibleItems,
buttonContent,
children
} = this.props
if (numberOfVisibleItems > React.Children.count(children)) return null
return (
<View>
<TouchableOpacity onPress={this.toggle} activeOpacity={0.8}>
{buttonContent}
</TouchableOpacity>
</View>
)
}
render() {
const {initialized, currentHeight} = this.state;
const {
numberOfVisibleItems,
buttonPosition = 'bottom',
wrapperStyle,
children,
} = this.props;
return (
<View style={wrapperStyle}>
{buttonPosition === 'top' && this.renderButton()}
<View style={{overflow: 'hidden', height: currentHeight}}>
<View style={{flex: 1}} onLayout={this.setMinHeight}>
{React.Children.toArray(children).slice(0, numberOfVisibleItems)}
</View>
{initialized && (
<View>
{React.Children.toArray(children)
.slice(numberOfVisibleItems)
.map((item, index) => (
<View key={index}>{item}</View>
))}
</View>
)}
</View>
{buttonPosition === 'bottom' && this.renderButton()}
</View>
);
}
}