Rocket.Chat.ReactNative/app/presentation/UnreadBadge/getUnreadStyle.ts

42 lines
965 B
TypeScript
Raw Normal View History

import { themes } from '../../lib/constants';
import { TSupportedThemes } from '../../theme';
interface IGetUnreadStyle {
unread?: number;
userMentions?: number;
groupMentions?: number;
theme: TSupportedThemes;
tunread?: [];
tunreadUser?: [];
tunreadGroup?: [];
}
export const getUnreadStyle = ({
unread,
userMentions,
groupMentions,
theme,
tunread,
tunreadUser,
tunreadGroup
}: IGetUnreadStyle) => {
if ((!unread || unread <= 0) && !tunread?.length) {
return {};
}
let backgroundColor = themes[theme].unreadColor;
const color = themes[theme].buttonText;
if ((userMentions && userMentions > 0) || tunreadUser?.length) {
backgroundColor = themes[theme].mentionMeColor;
} else if ((groupMentions && groupMentions > 0) || tunreadGroup?.length) {
backgroundColor = themes[theme].mentionGroupColor;
} else if (tunread && tunread?.length > 0) {
backgroundColor = themes[theme].tunreadColor;
}
return {
backgroundColor,
color
};
};