2022-08-03 16:32:16 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { StyleSheet, Text, Pressable, View, ScrollView } from 'react-native';
|
|
|
|
import ScrollableTabView from 'react-native-scrollable-tab-view';
|
|
|
|
import { FlatList } from 'react-native-gesture-handler';
|
|
|
|
|
|
|
|
import Emoji from './message/Emoji';
|
|
|
|
import { useTheme } from '../theme';
|
|
|
|
import { TGetCustomEmoji } from '../definitions/IEmoji';
|
|
|
|
import { IReaction } from '../definitions';
|
|
|
|
import Avatar from './Avatar';
|
|
|
|
import sharedStyles from '../views/Styles';
|
|
|
|
|
|
|
|
const MIN_TAB_WIDTH = 70;
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
reactionsListContainer: { height: '100%', width: '100%' },
|
|
|
|
tabBarItem: {
|
|
|
|
paddingHorizontal: 10,
|
|
|
|
paddingBottom: 10,
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center',
|
|
|
|
flexDirection: 'row'
|
|
|
|
},
|
|
|
|
reactionCount: { marginLeft: 5 },
|
|
|
|
emojiName: { margin: 10 },
|
|
|
|
userItemContainer: { marginHorizontal: 10, marginVertical: 5, flexDirection: 'row' },
|
|
|
|
usernameContainer: { marginHorizontal: 10, justifyContent: 'center' },
|
|
|
|
usernameText: { fontSize: 17, ...sharedStyles.textMedium },
|
|
|
|
standardEmojiStyle: { fontSize: 20, color: '#fff' },
|
|
|
|
customEmojiStyle: { width: 25, height: 25 }
|
|
|
|
});
|
|
|
|
|
|
|
|
interface IReactionsListBase {
|
|
|
|
baseUrl: string;
|
|
|
|
getCustomEmoji: TGetCustomEmoji;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface IReactionsListProps extends IReactionsListBase {
|
|
|
|
reactions?: IReaction[];
|
|
|
|
width: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ITabBarItem extends IReactionsListBase {
|
|
|
|
tab: IReaction;
|
|
|
|
index: number;
|
|
|
|
goToPage?: (index: number) => void;
|
|
|
|
}
|
|
|
|
interface IReactionsTabBar extends IReactionsListBase {
|
|
|
|
activeTab?: number;
|
|
|
|
tabs?: IReaction[];
|
|
|
|
goToPage?: (index: number) => void;
|
|
|
|
width: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
const TabBarItem = ({ tab, index, goToPage, baseUrl, getCustomEmoji }: ITabBarItem) => {
|
|
|
|
const { colors } = useTheme();
|
|
|
|
return (
|
|
|
|
<Pressable
|
|
|
|
key={tab.emoji}
|
|
|
|
onPress={() => {
|
|
|
|
goToPage?.(index);
|
|
|
|
}}
|
|
|
|
style={({ pressed }: { pressed: boolean }) => ({
|
|
|
|
opacity: pressed ? 0.7 : 1
|
2022-08-11 14:30:11 +00:00
|
|
|
})}
|
|
|
|
>
|
2022-08-03 16:32:16 +00:00
|
|
|
<View style={styles.tabBarItem}>
|
|
|
|
<Emoji
|
|
|
|
content={tab.emoji}
|
|
|
|
standardEmojiStyle={styles.standardEmojiStyle}
|
|
|
|
customEmojiStyle={styles.customEmojiStyle}
|
|
|
|
baseUrl={baseUrl}
|
|
|
|
getCustomEmoji={getCustomEmoji}
|
|
|
|
/>
|
|
|
|
<Text style={[styles.reactionCount, { color: colors.auxiliaryTintColor }]}>{tab.usernames.length}</Text>
|
|
|
|
</View>
|
|
|
|
</Pressable>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const ReactionsTabBar = ({ tabs, activeTab, goToPage, baseUrl, getCustomEmoji, width }: IReactionsTabBar) => {
|
|
|
|
const tabWidth = tabs && Math.max(width / tabs.length, MIN_TAB_WIDTH);
|
|
|
|
const { colors } = useTheme();
|
|
|
|
return (
|
|
|
|
<View>
|
|
|
|
<ScrollView horizontal={true} showsHorizontalScrollIndicator={false}>
|
|
|
|
{tabs?.map((tab, index) => {
|
|
|
|
const isActiveTab = activeTab === index;
|
|
|
|
return (
|
|
|
|
<View
|
|
|
|
style={{
|
|
|
|
width: tabWidth,
|
|
|
|
borderBottomWidth: isActiveTab ? 2 : 1,
|
|
|
|
borderColor: isActiveTab ? colors.tintActive : colors.separatorColor
|
2022-08-11 14:30:11 +00:00
|
|
|
}}
|
|
|
|
>
|
2022-08-03 16:32:16 +00:00
|
|
|
<TabBarItem tab={tab} index={index} goToPage={goToPage} baseUrl={baseUrl} getCustomEmoji={getCustomEmoji} />
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</ScrollView>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const UsersList = ({ tabLabel }: { tabLabel: IReaction }) => {
|
|
|
|
const { colors } = useTheme();
|
|
|
|
const { emoji, usernames } = tabLabel;
|
|
|
|
return (
|
|
|
|
<FlatList
|
|
|
|
data={usernames}
|
|
|
|
ListHeaderComponent={() => (
|
|
|
|
<View style={styles.emojiName}>
|
|
|
|
<Text style={{ color: colors.auxiliaryTintColor }}>{emoji}</Text>
|
|
|
|
</View>
|
|
|
|
)}
|
|
|
|
renderItem={({ item }) => (
|
|
|
|
<View style={styles.userItemContainer}>
|
|
|
|
<Avatar text={item} size={36} />
|
|
|
|
<View style={styles.usernameContainer}>
|
|
|
|
<Text style={[styles.usernameText, { color: colors.titleText }]}>{item}</Text>
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
)}
|
|
|
|
keyExtractor={item => item}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const ReactionsList = ({ reactions, baseUrl, getCustomEmoji, width }: IReactionsListProps): React.ReactElement => {
|
|
|
|
// sorting reactions in descending order on the basic of number of users reacted
|
|
|
|
const sortedReactions = reactions?.sort((reaction1, reaction2) => reaction2.usernames.length - reaction1.usernames.length);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<View style={styles.reactionsListContainer}>
|
|
|
|
<ScrollableTabView renderTabBar={() => <ReactionsTabBar baseUrl={baseUrl} getCustomEmoji={getCustomEmoji} width={width} />}>
|
|
|
|
{sortedReactions?.map(reaction => (
|
|
|
|
<UsersList tabLabel={reaction} key={reaction.emoji} />
|
|
|
|
))}
|
|
|
|
</ScrollableTabView>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ReactionsList;
|