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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
import React from 'react';
import {LayoutChangeEvent, Linking, StyleSheet, Text, View} from 'react-native';
import {TouchableOpacity} from 'react-native-gesture-handler';
import {launchCamera} from 'react-native-image-picker';
import {useDispatch, useSelector, useStore} from 'react-redux';
import {TAGG_DARK_BLUE, TOGGLE_BUTTON_TYPE} from '../../constants';
import {
acceptFriendRequest,
declineFriendRequest,
updateUserXFriends,
updateUserXProfileAllScreens,
} from '../../store/actions';
import {NO_PROFILE} from '../../store/initialStates';
import {RootState} from '../../store/rootReducer';
import {ScreenType} from '../../types';
import {
getUserAsProfilePreviewType,
normalize,
SCREEN_HEIGHT,
SCREEN_WIDTH,
} from '../../utils';
import {canViewProfile} from '../../utils/users';
import {FriendsButton} from '../common';
import {MessageButton} from '../messages';
import ProfileBadges from './ProfileBadges';
import ToggleButton from './ToggleButton';
interface ProfileBodyProps {
onLayout: (event: LayoutChangeEvent) => void;
isBlocked: boolean;
handleBlockUnblock: () => void;
userXId: string | undefined;
screenType: ScreenType;
}
const ProfileBody: React.FC<ProfileBodyProps> = ({
onLayout,
isBlocked,
handleBlockUnblock,
userXId,
screenType,
}) => {
const dispatch = useDispatch();
const {profile = NO_PROFILE, user} = useSelector((state: RootState) =>
userXId ? state.userX[screenType][userXId] : state.user,
);
const {biography, website, friendship_status, friendship_requester_id} =
profile;
const {id, username, first_name, last_name} = getUserAsProfilePreviewType(
user,
profile,
);
const state: RootState = useStore().getState();
const handleAcceptRequest = async () => {
await dispatch(acceptFriendRequest({id, username, first_name, last_name}));
await dispatch(updateUserXFriends(id, state));
dispatch(updateUserXProfileAllScreens(id, state));
};
const handleDeclineFriendRequest = async () => {
await dispatch(declineFriendRequest(id));
dispatch(updateUserXProfileAllScreens(id, state));
};
return (
<View onLayout={onLayout} style={styles.container}>
<ProfileBadges {...{userXId, screenType}} />
<Text style={styles.username}>{`@${username}`}</Text>
{biography.length > 0 && (
<Text style={styles.biography}>{`${biography}`}</Text>
)}
{website.length > 0 && (
<Text
style={styles.website}
onPress={() => {
Linking.openURL(
website.startsWith('http') ? website : 'http://' + website,
);
}}>{`${website}`}</Text>
)}
<TouchableOpacity
onPress={() => {
launchCamera(
{
mediaType: 'video',
durationLimit: 60,
videoQuality: 'medium',
},
(response) => {
console.log(response);
const file = response.assets[0].uri;
console.log(file);
},
);
}}>
<Text>foooo</Text>
</TouchableOpacity>
{userXId && isBlocked && (
<View style={styles.toggleButtonContainer}>
<ToggleButton
toggleState={isBlocked}
handleToggle={handleBlockUnblock}
buttonType={TOGGLE_BUTTON_TYPE.BLOCK_UNBLOCK}
/>
</View>
)}
<View style={styles.simpleRowContainer}>
{userXId && !isBlocked && (
<View style={styles.buttonsContainer}>
<FriendsButton
userXId={userXId}
screenType={screenType}
friendship_requester_id={friendship_requester_id}
onAcceptRequest={handleAcceptRequest}
onRejectRequest={handleDeclineFriendRequest}
/>
{canViewProfile(state, userXId, screenType) && (
<MessageButton
userXId={userXId}
isBlocked={isBlocked}
friendship_status={friendship_status}
friendship_requester_id={friendship_requester_id}
externalStyles={{
container: {
width: SCREEN_WIDTH * 0.42,
aspectRatio: 154 / 33,
},
}}
/>
)}
</View>
)}
</View>
</View>
);
};
const styles = StyleSheet.create({
toggleButtonContainer: {
flexDirection: 'row',
flex: 1,
paddingTop: '3.5%',
paddingBottom: '2%',
},
simpleRowContainer: {flexDirection: 'row'},
buttonsContainer: {
flex: 1,
paddingTop: '3.5%',
paddingBottom: '2%',
width: '50%',
height: SCREEN_HEIGHT * 0.1,
flexDirection: 'row',
justifyContent: 'space-between',
},
container: {
paddingHorizontal: 18,
backgroundColor: 'white',
},
username: {
fontWeight: '600',
fontSize: normalize(13.5),
marginBottom: '1%',
},
biography: {
fontSize: normalize(13.5),
marginBottom: '1.5%',
},
website: {
fontSize: normalize(13.5),
color: TAGG_DARK_BLUE,
marginBottom: '1%',
},
});
export default ProfileBody;
|