vn-verdnaturachat/app/presentation/RoomItem/Actions.js

133 lines
3.6 KiB
JavaScript
Raw Normal View History

import React from 'react';
import { Animated, View, Text } from 'react-native';
import { RectButton } from 'react-native-gesture-handler';
import PropTypes from 'prop-types';
import I18n from '../../i18n';
import styles, { ACTION_WIDTH, LONG_SWIPE } from './styles';
import { CustomIcon } from '../../lib/Icons';
2019-12-04 16:39:53 +00:00
import { themes } from '../../constants/colors';
const reverse = new Animated.Value(I18n.isRTL ? -1 : 1);
export const LeftActions = React.memo(({
2019-12-04 16:39:53 +00:00
theme, transX, isRead, width, onToggleReadPress
}) => {
const translateX = Animated.multiply(
transX.interpolate({
inputRange: [0, ACTION_WIDTH],
outputRange: [-ACTION_WIDTH, 0]
}),
reverse
);
return (
<View
2019-11-25 20:01:17 +00:00
style={[styles.actionsContainer, styles.actionLeftContainer]}
pointerEvents='box-none'
>
<Animated.View
style={[
styles.actionLeftButtonContainer,
{
right: width - ACTION_WIDTH,
width,
2019-12-04 16:39:53 +00:00
transform: [{ translateX }],
backgroundColor: themes[theme].tintColor
}
]}
>
<View style={styles.actionLeftButtonContainer}>
<RectButton style={styles.actionButton} onPress={onToggleReadPress}>
<>
<CustomIcon size={20} name={isRead ? 'flag' : 'check'} color='white' />
2019-12-04 16:39:53 +00:00
<Text style={[styles.actionText, { color: themes[theme].buttonText }]}>{I18n.t(isRead ? 'Unread' : 'Read')}</Text>
</>
</RectButton>
</View>
</Animated.View>
</View>
);
});
export const RightActions = React.memo(({
2019-12-04 16:39:53 +00:00
transX, favorite, width, toggleFav, onHidePress, theme
}) => {
const translateXFav = Animated.multiply(
transX.interpolate({
inputRange: [-width / 2, -ACTION_WIDTH * 2, 0],
outputRange: [width / 2, width - ACTION_WIDTH * 2, width]
}),
reverse
);
const translateXHide = Animated.multiply(
transX.interpolate({
inputRange: [-width, -LONG_SWIPE, -ACTION_WIDTH * 2, 0],
outputRange: [0, width - LONG_SWIPE, width - ACTION_WIDTH, width]
}),
reverse
);
return (
<View
style={{
position: 'absolute',
left: 0,
right: 0,
height: 75,
flexDirection: 'row'
}}
pointerEvents='box-none'
>
<Animated.View
style={[
styles.actionRightButtonContainer,
{
width,
2019-12-04 16:39:53 +00:00
transform: [{ translateX: translateXFav }],
backgroundColor: themes[theme].hideBackground
}
]}
>
2019-12-04 16:39:53 +00:00
<RectButton style={[styles.actionButton, { backgroundColor: themes[theme].favoriteBackground }]} onPress={toggleFav}>
<>
<CustomIcon size={20} name={favorite ? 'star-filled' : 'star'} color={themes[theme].buttonText} />
2019-12-04 16:39:53 +00:00
<Text style={[styles.actionText, { color: themes[theme].buttonText }]}>{I18n.t(favorite ? 'Unfavorite' : 'Favorite')}</Text>
</>
</RectButton>
</Animated.View>
<Animated.View
style={[
styles.actionRightButtonContainer,
{
width,
transform: [{ translateX: translateXHide }]
}
]}
>
2019-12-04 16:39:53 +00:00
<RectButton style={[styles.actionButton, { backgroundColor: themes[theme].hideBackground }]} onPress={onHidePress}>
<>
2020-07-27 19:53:33 +00:00
<CustomIcon size={20} name='unread-on-top-disabled' color={themes[theme].buttonText} />
2019-12-04 16:39:53 +00:00
<Text style={[styles.actionText, { color: themes[theme].buttonText }]}>{I18n.t('Hide')}</Text>
</>
</RectButton>
</Animated.View>
</View>
);
});
LeftActions.propTypes = {
2019-12-04 16:39:53 +00:00
theme: PropTypes.string,
transX: PropTypes.object,
isRead: PropTypes.bool,
width: PropTypes.number,
onToggleReadPress: PropTypes.func
};
RightActions.propTypes = {
2019-12-04 16:39:53 +00:00
theme: PropTypes.string,
transX: PropTypes.object,
favorite: PropTypes.bool,
width: PropTypes.number,
toggleFav: PropTypes.func,
onHidePress: PropTypes.func
};