82 lines
2.0 KiB
TypeScript
82 lines
2.0 KiB
TypeScript
import React from 'react';
|
|
import { StyleProp, Text, TextStyle, View } from 'react-native';
|
|
import { transparentize } from 'color2k';
|
|
|
|
import { useTheme } from '../../theme';
|
|
import { themes } from '../../lib/constants';
|
|
import styles from './styles';
|
|
import { events, logEvent } from '../../lib/methods/helpers/log';
|
|
import { IUserMention } from './interfaces';
|
|
|
|
interface IAtMention {
|
|
mention: string;
|
|
username?: string;
|
|
navToRoomInfo?: Function;
|
|
style?: StyleProp<TextStyle>[];
|
|
useRealName?: boolean;
|
|
mentions?: IUserMention[];
|
|
}
|
|
|
|
const AtMention = React.memo(({ mention, mentions, username, navToRoomInfo, style = [], useRealName }: IAtMention) => {
|
|
const { theme } = useTheme();
|
|
if (mention === 'all' || mention === 'here') {
|
|
return (
|
|
<View style={{ marginBottom: -3 }}>
|
|
<Text
|
|
style={[
|
|
styles.mention,
|
|
{
|
|
color: themes[theme].mentionGroupColor,
|
|
backgroundColor: transparentize(themes[theme].mentionGroupColor, 0.8)
|
|
},
|
|
...style
|
|
]}
|
|
>
|
|
{`${mention}`}
|
|
</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
let mentionStyle = {};
|
|
if (mention === username) {
|
|
mentionStyle = {
|
|
color: themes[theme].mentionMeColor,
|
|
backgroundColor: transparentize(themes[theme].mentionMeColor, 0.8)
|
|
};
|
|
} else {
|
|
mentionStyle = {
|
|
color: themes[theme].mentionOtherColor,
|
|
backgroundColor: transparentize(themes[theme].mentionOtherColor, 0.8)
|
|
};
|
|
}
|
|
|
|
const user = mentions?.find?.((m: any) => m && m.username === mention);
|
|
|
|
const handlePress = () => {
|
|
logEvent(events.ROOM_MENTION_GO_USER_INFO);
|
|
const navParam = {
|
|
t: 'd',
|
|
rid: user && user._id
|
|
};
|
|
if (navToRoomInfo) {
|
|
navToRoomInfo(navParam);
|
|
}
|
|
};
|
|
|
|
if (user) {
|
|
const m = useRealName && user.name ? user.name : user.username;
|
|
return (
|
|
<View style={{ marginBottom: -3 }}>
|
|
<Text style={[styles.mention, mentionStyle, ...style]} onPress={handlePress}>
|
|
{`${m}`}
|
|
</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
return <Text style={[styles.text, { color: themes[theme].bodyText }, ...style]}>{`@${mention}`}</Text>;
|
|
});
|
|
|
|
export default AtMention;
|