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
|
import React, {useEffect, useState} from 'react';
import {LayoutChangeEvent, StyleSheet} from 'react-native';
import Animated, {
Extrapolate,
interpolate,
useAnimatedStyle,
useDerivedValue,
} from 'react-native-reanimated';
import {useSafeAreaInsets} from 'react-native-safe-area-context';
import {useDispatch, useSelector} from 'react-redux';
import {
INTEGRATED_SOCIAL_LIST,
PROFILE_CUTOUT_BOTTOM_Y,
SOCIAL_LIST,
} from '../../constants';
import {getLinkedSocials} from '../../services';
import {loadIndividualSocial, updateSocial} from '../../store/actions';
import {RootState} from '../../store/rootReducer';
import {ScreenType} from '../../types';
import Tagg from './Tagg';
const {View, ScrollView} = Animated;
interface TaggsBarProps {
y: Animated.SharedValue<number>;
profileBodyHeight: number;
userXId: string | undefined;
screenType: ScreenType;
linkedSocials?: string[];
onLayout: (event: LayoutChangeEvent) => void;
}
const TaggsBar: React.FC<TaggsBarProps> = ({
y,
profileBodyHeight,
userXId,
screenType,
linkedSocials,
onLayout,
}) => {
const dispatch = useDispatch();
let [taggs, setTaggs] = useState<Object[]>([]);
let [taggsNeedUpdate, setTaggsNeedUpdate] = useState(true);
const {user} = useSelector((state: RootState) =>
userXId ? state.userX[screenType][userXId] : state.user,
);
const insetTop = useSafeAreaInsets().top;
/**
* Updates the individual social that needs update
* If username is empty, update nonintegrated socials like Snapchat and TikTok
* @param socialType Type of the social that needs update
*/
const handleSocialUpdate = (socialType: string, username: string) => {
if (username !== '') {
dispatch(updateSocial(socialType, username));
} else {
dispatch(loadIndividualSocial(user.userId, socialType));
}
};
/**
* This useEffect should be called evey time the user being viewed is changed OR
* And update is triggered manually
*/
useEffect(() => {
const loadData = async () => {
const socials: string[] = linkedSocials
? linkedSocials
: await getLinkedSocials(user.userId);
const unlinkedSocials = SOCIAL_LIST.filter(
(s) => socials.indexOf(s) === -1,
);
let new_taggs = [];
let i = 0;
for (let social of socials) {
new_taggs.push(
<Tagg
key={i}
social={social}
userXId={userXId}
screenType={screenType}
user={user}
isLinked={true}
isIntegrated={INTEGRATED_SOCIAL_LIST.indexOf(social) !== -1}
setTaggsNeedUpdate={setTaggsNeedUpdate}
setSocialDataNeedUpdate={handleSocialUpdate}
whiteRing={false}
/>,
);
i++;
}
if (!userXId) {
for (let social of unlinkedSocials) {
new_taggs.push(
<Tagg
key={i}
social={social}
isLinked={false}
isIntegrated={INTEGRATED_SOCIAL_LIST.indexOf(social) !== -1}
setTaggsNeedUpdate={setTaggsNeedUpdate}
setSocialDataNeedUpdate={handleSocialUpdate}
userXId={userXId}
screenType={screenType}
user={user}
whiteRing={false}
/>,
);
i++;
}
}
setTaggs(new_taggs);
setTaggsNeedUpdate(false);
};
if (user.userId) {
loadData();
}
}, [taggsNeedUpdate, user]);
const paddingTopStylesProgress = useDerivedValue(() =>
interpolate(
y.value,
[PROFILE_CUTOUT_BOTTOM_Y, PROFILE_CUTOUT_BOTTOM_Y + profileBodyHeight],
[0, 1],
Extrapolate.CLAMP,
),
);
const shadowOpacityStylesProgress = useDerivedValue(() =>
interpolate(
y.value,
[
PROFILE_CUTOUT_BOTTOM_Y + profileBodyHeight,
PROFILE_CUTOUT_BOTTOM_Y + profileBodyHeight + insetTop,
],
[0, 1],
Extrapolate.CLAMP,
),
);
const animatedStyles = useAnimatedStyle(() => ({
shadowOpacity: shadowOpacityStylesProgress.value / 5,
paddingTop: paddingTopStylesProgress.value * insetTop,
}));
return taggs.length > 0 ? (
<View style={[styles.container, animatedStyles]} onLayout={onLayout}>
<ScrollView
horizontal
showsHorizontalScrollIndicator={false}
contentContainerStyle={[styles.contentContainer]}>
{taggs}
</ScrollView>
</View>
) : (
<></>
);
};
const styles = StyleSheet.create({
container: {
backgroundColor: 'white',
shadowColor: '#000',
shadowRadius: 10,
shadowOffset: {width: 0, height: 2},
zIndex: 1,
},
contentContainer: {
alignItems: 'center',
paddingBottom: 15,
},
});
export default TaggsBar;
|