Created
April 8, 2021 17:15
-
-
Save MosesEsan/ce9f95c4e2d66074df1abd7e74b80908 to your computer and use it in GitHub Desktop.
Trade Journal App Components
This file contains hidden or 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
import React , {useRef} from 'react'; | |
import { Animated, StyleSheet, View, Alert } from 'react-native'; | |
import { RectButton } from 'react-native-gesture-handler'; | |
import Swipeable from 'react-native-gesture-handler/Swipeable'; | |
import {Icon} from 'react-native-elements'; | |
const AnimatedIcon = Animated.createAnimatedComponent(Icon); | |
export default function SwipeableRow ({children, onEdit, onDelete}) { | |
const inputEl = useRef(null); | |
const onEditSelected = () => { | |
inputEl.current.close(); | |
onEdit(); | |
}; | |
const onDeleteSelected = () => { | |
inputEl.current.close(); | |
Alert.alert( | |
'Delete Event', | |
"Are you sure you want to delete this event?", | |
[ | |
{text: 'Delete', onPress: () => onDelete()}, | |
{text: 'Cancel', style: 'cancel'} | |
], | |
{cancelable: true}, | |
); | |
}; | |
const renderRightActions = (progress, dragX) => { | |
const scale = dragX.interpolate({ | |
inputRange: [-80, 0], | |
outputRange: [1, 0], | |
extrapolate: 'clamp', | |
}); | |
return ( | |
<View style={styles.buttons}> | |
{ | |
onEdit && | |
<RectButton style={[styles.rightAction, styles.editAction]} onPress={onEditSelected}> | |
<AnimatedIcon | |
type={'material'} | |
name="edit" | |
size={30} | |
color="#fff" | |
style={[styles.actionIcon, {transform: [{scale}]}]} | |
/> | |
</RectButton> | |
} | |
{ | |
onDelete && | |
<RectButton style={[styles.rightAction, styles.deleteAction]} onPress={onDeleteSelected}> | |
<AnimatedIcon | |
type={'material'} | |
name="delete-forever" | |
size={30} | |
color="#fff" | |
style={[styles.actionIcon, {transform: [{scale}]}]} | |
/> | |
</RectButton> | |
} | |
</View> | |
); | |
}; | |
return ( | |
<Swipeable ref={inputEl} | |
friction={2} | |
leftThreshold={80} | |
rightThreshold={40} renderRightActions={renderRightActions}> | |
{children} | |
</Swipeable> | |
) | |
} | |
const styles = StyleSheet.create({ | |
actionIcon: { | |
width: 30, | |
marginHorizontal: 10 | |
}, | |
buttons: { | |
width: 190, | |
flexDirection: 'row' | |
}, | |
rightAction: { | |
alignItems: 'center', | |
justifyContent: 'center', | |
flex: 1, | |
width: 95 | |
}, | |
editAction: { | |
backgroundColor: '#497AFC' | |
}, | |
deleteAction: { | |
backgroundColor: '#dd2c00' | |
}, | |
actionText: { | |
color: '#fff', | |
fontWeight: '600', | |
padding: 20, | |
} | |
}); |
This file contains hidden or 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
import React from 'react'; | |
import {View, TouchableHighlight, Text, StyleSheet} from 'react-native'; | |
import SwipeableRow from "./SwipeableRow"; | |
export default function TradeItem(props) { | |
let showControls = props.onEdit || props.onDelete; | |
if (showControls) return( | |
<SwipeableRow onEdit={props.onEdit} onDelete={props.onDelete}> | |
<Component {...props} style={styles.wrapper}/> | |
</SwipeableRow> | |
); | |
else return <Component {...props} style={styles.wrapper}/> | |
} | |
TradeItem.defaultProps = { | |
trade: null, | |
onPress: null, | |
onEdit: null, | |
onDelete: null | |
}; | |
export function Component(props) { | |
const {trade, onPress, style} = props; | |
return ( | |
<TouchableHighlight underlayColor="rgba(0, 0, 0, 0)" style={{flex: 1}} onPress={onPress}> | |
<View style={style}> | |
<Text>{trade.ticker}</Text> | |
</View> | |
</TouchableHighlight> | |
); | |
} | |
const styles = StyleSheet.create({ | |
wrapper: { | |
flex: 1, | |
padding: 8* 2, | |
backgroundColor: "#FFF", | |
flexDirection: "row", | |
borderBottomWidth: StyleSheet.hairlineWidth, | |
borderBottomColor:"#ccc", | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment