import React from 'react'; import {View, StyleSheet, ScrollView, Text} from 'react-native'; import {ProfilePreviewType, ScreenType} from '../../types'; import {ProfilePreview} from '..'; import {normalize, SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils'; import {TAGG_LIGHT_BLUE} from '../../constants'; import {RootState} from '../../store/rootReducer'; import {useDispatch, useStore} from 'react-redux'; import {handleUnfriend} from '../../utils/friends'; import {NO_USER} from '../../store/initialStates'; import {TouchableOpacity} from 'react-native-gesture-handler'; interface FriendsProps { result: Array; screenType: ScreenType; userId: string; } const Friends: React.FC = ({result, screenType, userId}) => { const state: RootState = useStore().getState(); const dispatch = useDispatch(); const {user: loggedInUser = NO_USER} = state; return ( <> {/* Friends */} {result.map((profilePreview) => ( {loggedInUser.userId === userId && ( handleUnfriend(screenType, profilePreview, dispatch, state) }> Unfriend )} ))} ); }; const styles = StyleSheet.create({ scrollView: { flexDirection: 'column', alignSelf: 'center', width: SCREEN_WIDTH * 0.85, }, scrollViewContent: { alignSelf: 'center', paddingBottom: SCREEN_HEIGHT / 7, width: SCREEN_WIDTH * 0.85, marginTop: '1%', }, header: {flexDirection: 'row'}, subheader: { alignSelf: 'center', width: SCREEN_WIDTH * 0.85, marginVertical: '1%', }, subheaderText: { color: '#828282', fontSize: normalize(12), fontWeight: '600', lineHeight: normalize(14.32), }, container: { alignSelf: 'center', flexDirection: 'row', justifyContent: 'space-between', width: '100%', height: normalize(42), alignItems: 'center', marginBottom: '5%', }, friend: { alignSelf: 'center', height: '100%', }, button: { alignSelf: 'center', justifyContent: 'center', alignItems: 'center', width: '100%', height: '55%', borderColor: TAGG_LIGHT_BLUE, borderWidth: 2, borderRadius: 2, padding: 0, backgroundColor: 'transparent', }, buttonTitle: { color: TAGG_LIGHT_BLUE, padding: 0, fontSize: normalize(11), fontWeight: '700', lineHeight: normalize(13.13), letterSpacing: normalize(0.6), paddingHorizontal: '3.8%', }, }); export default Friends;