Last active
November 1, 2020 09:39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// src/components/ReactionPicker | |
import {useTheme} from '@react-navigation/native'; | |
import React, {useEffect, useRef} from 'react'; | |
import { | |
Modal, | |
View, | |
Text, | |
Animated, | |
TouchableOpacity, | |
SectionList, | |
StyleSheet, | |
} from 'react-native'; | |
import {SCText} from './SCText'; | |
import ReactNativeHaptic from 'react-native-haptic'; | |
import {groupedSupportedReactions} from '../utils/supportedReactions'; | |
export const ReactionPicker = (props) => { | |
const {dismissReactionPicker, handleReaction, reactionPickerVisible} = props; | |
const {colors} = useTheme(); | |
const slide = useRef(new Animated.Value(-600)).current; | |
const reactionPickerExpanded = useRef(false); | |
const _dismissReactionPicker = () => { | |
reactionPickerExpanded.current = false; | |
Animated.timing(slide, { | |
toValue: -600, | |
duration: 100, | |
useNativeDriver: false, | |
}).start(() => { | |
dismissReactionPicker(); | |
}); | |
}; | |
const _handleReaction = (type) => { | |
ReactNativeHaptic && ReactNativeHaptic.generate('impact'); | |
reactionPickerExpanded.current = false; | |
Animated.timing(slide, { | |
toValue: -600, | |
duration: 100, | |
useNativeDriver: false, | |
}).start(() => { | |
handleReaction(type); | |
}); | |
}; | |
useEffect(() => { | |
if (reactionPickerVisible) { | |
ReactNativeHaptic && ReactNativeHaptic.generate('impact'); | |
setTimeout(() => { | |
Animated.timing(slide, { | |
toValue: -300, | |
duration: 100, | |
useNativeDriver: false, | |
}).start(); | |
}, 200); | |
} | |
}); | |
if (!reactionPickerVisible) { | |
return null; | |
} | |
return ( | |
<Modal | |
animationType="fade" | |
onRequestClose={_dismissReactionPicker} | |
testID="reaction-picker" | |
transparent | |
visible> | |
<TouchableOpacity | |
style={styles.overlay} | |
activeOpacity={1} | |
leftAlign | |
onPress={() => { | |
_dismissReactionPicker(); | |
}} | |
/> | |
<Animated.View | |
style={[ | |
{ | |
bottom: slide, | |
}, | |
styles.animatedContainer, | |
]} | |
activeOpacity={1} | |
leftAlign> | |
<View | |
style={[ | |
{ | |
backgroundColor: colors.background, | |
}, | |
styles.pickerContainer, | |
]}> | |
<View style={styles.listCOntainer}> | |
<SectionList | |
onScrollBeginDrag={() => { | |
reactionPickerExpanded.current = true; | |
Animated.timing(slide, { | |
toValue: 0, | |
duration: 300, | |
useNativeDriver: false, | |
}).start(); | |
}} | |
style={{height: 600, width: '100%'}} | |
onScroll={(event) => { | |
if (!reactionPickerExpanded.current) { | |
return; | |
} | |
if (event.nativeEvent.contentOffset.y <= 0) { | |
reactionPickerExpanded.current = false; | |
Animated.timing(slide, { | |
toValue: -300, | |
duration: 300, | |
useNativeDriver: false, | |
}).start(); | |
} | |
}} | |
sections={groupedSupportedReactions} | |
renderSectionHeader={({section: {title}}) => ( | |
<SCText | |
style={[ | |
{ | |
backgroundColor: colors.background, | |
}, | |
styles.groupTitle, | |
]}> | |
{title} | |
</SCText> | |
)} | |
renderItem={({item}) => { | |
return ( | |
<View style={styles.reactionsRow}> | |
{item.map(({icon, id}) => { | |
return ( | |
<View | |
key={id} | |
testID={id} | |
style={styles.reactionsItemContainer}> | |
<Text | |
onPress={() => _handleReaction(id)} | |
testID={`${id}-reaction`} | |
style={styles.reactionsItem}> | |
{icon} | |
</Text> | |
</View> | |
); | |
})} | |
</View> | |
); | |
}} | |
/> | |
</View> | |
</View> | |
</Animated.View> | |
</Modal> | |
); | |
}; | |
const styles = StyleSheet.create({ | |
overlay: { | |
width: '100%', | |
height: '100%', | |
alignSelf: 'flex-end', | |
alignItems: 'flex-start', | |
backgroundColor: 'rgba(0,0,0,0.7)', | |
}, | |
animatedContainer: { | |
position: 'absolute', | |
backgroundColor: 'transparent', | |
width: '100%', | |
}, | |
pickerContainer: { | |
flexDirection: 'column', | |
borderRadius: 15, | |
paddingHorizontal: 10, | |
}, | |
listContainer: { | |
width: '100%', | |
flexDirection: 'row', | |
flexWrap: 'wrap', | |
justifyContent: 'center', | |
marginBottom: 20, | |
}, | |
groupTitle: { | |
padding: 10, | |
paddingLeft: 13, | |
fontWeight: '200', | |
}, | |
reactionsRow: { | |
width: '100%', | |
flexDirection: 'row', | |
flexWrap: 'wrap', | |
justifyContent: 'center', | |
marginTop: 3, | |
}, | |
reactionsItemContainer: { | |
alignItems: 'center', | |
marginTop: -5, | |
}, | |
reactionsItem: { | |
fontSize: 35, | |
margin: 5, | |
marginVertical: 5, | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment