2019-08-27 12:25:38 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { Text } from 'react-native';
|
|
|
|
|
2021-10-20 16:32:58 +00:00
|
|
|
import { useTheme } from '../../theme';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { themes } from '../../constants/colors';
|
2019-08-27 12:25:38 +00:00
|
|
|
import styles from './styles';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { events, logEvent } from '../../utils/log';
|
|
|
|
|
|
|
|
interface IAtMention {
|
|
|
|
mention: string;
|
|
|
|
username: string;
|
|
|
|
navToRoomInfo: Function;
|
2021-10-20 16:32:58 +00:00
|
|
|
style?: any;
|
2021-09-13 20:41:05 +00:00
|
|
|
useRealName: boolean;
|
|
|
|
mentions: any;
|
|
|
|
}
|
2019-08-27 12:25:38 +00:00
|
|
|
|
2021-10-20 16:32:58 +00:00
|
|
|
const AtMention = React.memo(({ mention, mentions, username, navToRoomInfo, style = [], useRealName }: IAtMention) => {
|
|
|
|
const { theme } = useTheme();
|
2019-08-27 12:25:38 +00:00
|
|
|
if (mention === 'all' || mention === 'here') {
|
2020-07-29 20:49:08 +00:00
|
|
|
return (
|
|
|
|
<Text
|
|
|
|
style={[
|
|
|
|
styles.mention,
|
|
|
|
{
|
2021-10-20 16:32:58 +00:00
|
|
|
color: themes[theme!].mentionGroupColor
|
2020-07-29 20:49:08 +00:00
|
|
|
},
|
|
|
|
...style
|
2021-09-13 20:41:05 +00:00
|
|
|
]}>
|
|
|
|
{mention}
|
2020-07-29 20:49:08 +00:00
|
|
|
</Text>
|
|
|
|
);
|
2020-05-20 12:53:40 +00:00
|
|
|
}
|
|
|
|
|
2020-07-29 20:49:08 +00:00
|
|
|
let mentionStyle = {};
|
2020-05-20 12:53:40 +00:00
|
|
|
if (mention === username) {
|
2019-08-27 12:25:38 +00:00
|
|
|
mentionStyle = {
|
2021-10-20 16:32:58 +00:00
|
|
|
color: themes[theme!].mentionMeColor
|
2019-12-04 16:39:53 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
mentionStyle = {
|
2021-10-20 16:32:58 +00:00
|
|
|
color: themes[theme!].mentionOtherColor
|
2019-08-27 12:25:38 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
const user = mentions?.find?.((m: any) => m && m.username === mention);
|
2020-02-21 16:13:05 +00:00
|
|
|
|
2019-08-27 12:25:38 +00:00
|
|
|
const handlePress = () => {
|
2020-08-05 13:15:56 +00:00
|
|
|
logEvent(events.ROOM_MENTION_GO_USER_INFO);
|
2020-02-14 00:22:53 +00:00
|
|
|
const navParam = {
|
|
|
|
t: 'd',
|
2020-02-21 16:13:05 +00:00
|
|
|
rid: user && user._id
|
2020-02-14 00:22:53 +00:00
|
|
|
};
|
|
|
|
navToRoomInfo(navParam);
|
2019-08-27 12:25:38 +00:00
|
|
|
};
|
|
|
|
|
2020-02-21 16:13:05 +00:00
|
|
|
if (user) {
|
2020-02-14 00:22:53 +00:00
|
|
|
return (
|
2021-09-13 20:41:05 +00:00
|
|
|
<Text style={[styles.mention, mentionStyle, ...style]} onPress={handlePress}>
|
2020-03-04 13:52:13 +00:00
|
|
|
{useRealName && user.name ? user.name : user.username}
|
2020-02-14 00:22:53 +00:00
|
|
|
</Text>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-10-20 16:32:58 +00:00
|
|
|
return <Text style={[styles.text, { color: themes[theme!].bodyText }, ...style]}>{`@${mention}`}</Text>;
|
2019-08-27 12:25:38 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export default AtMention;
|