|
|
|
@ -1,18 +1,20 @@
|
|
|
|
|
import React from 'react';
|
|
|
|
|
import styled from 'styled-components';
|
|
|
|
|
import { Constants } from '../../session';
|
|
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
|
overflowingAt: number;
|
|
|
|
|
centeredOnTop: boolean;
|
|
|
|
|
count?: number;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const StyledCountContainer = styled.div<{ shouldRender: boolean }>`
|
|
|
|
|
const StyledCountContainer = styled.div<{ centeredOnTop: boolean }>`
|
|
|
|
|
position: absolute;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
top: 27px;
|
|
|
|
|
left: 28px;
|
|
|
|
|
padding: 1px 4px;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
top: ${props => (props.centeredOnTop ? '-10px' : '27px')};
|
|
|
|
|
left: ${props => (props.centeredOnTop ? '50%' : '28px')};
|
|
|
|
|
transform: ${props => (props.centeredOnTop ? 'translateX(-50%)' : 'none')};
|
|
|
|
|
padding: ${props => (props.centeredOnTop ? '3px 3px' : '1px 4px')};
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
@ -21,34 +23,56 @@ const StyledCountContainer = styled.div<{ shouldRender: boolean }>`
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
background: var(--unread-messages-alert-background-color);
|
|
|
|
|
transition: var(--default-duration);
|
|
|
|
|
opacity: ${props => (props.shouldRender ? 1 : 0)};
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: var(--unread-messages-alert-text-color);
|
|
|
|
|
white-space: ${props => (props.centeredOnTop ? 'nowrap' : 'normal')};
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const StyledCount = styled.div`
|
|
|
|
|
const StyledCount = styled.div<{ centeredOnTop: boolean }>`
|
|
|
|
|
position: relative;
|
|
|
|
|
font-size: 0.6rem;
|
|
|
|
|
font-size: ${props => (props.centeredOnTop ? 'var(--font-size-xs)' : '0.6rem')};
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
export const SessionNotificationCount = (props: Props) => {
|
|
|
|
|
const { count } = props;
|
|
|
|
|
const overflow = Boolean(count && count > 99);
|
|
|
|
|
const shouldRender = Boolean(count && count > 0);
|
|
|
|
|
const OverflowingAt = (props: { overflowingAt: number }) => {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
{props.overflowingAt}
|
|
|
|
|
<span>+</span>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (overflow) {
|
|
|
|
|
return (
|
|
|
|
|
<StyledCountContainer shouldRender={shouldRender}>
|
|
|
|
|
<StyledCount>
|
|
|
|
|
{99}
|
|
|
|
|
<span>+</span>
|
|
|
|
|
</StyledCount>
|
|
|
|
|
</StyledCountContainer>
|
|
|
|
|
);
|
|
|
|
|
const NotificationOrUnreadCount = ({ centeredOnTop, overflowingAt, count }: Props) => {
|
|
|
|
|
if (!count) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
const overflowing = count > overflowingAt;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<StyledCountContainer shouldRender={shouldRender}>
|
|
|
|
|
<StyledCount>{count}</StyledCount>
|
|
|
|
|
<StyledCountContainer centeredOnTop={centeredOnTop}>
|
|
|
|
|
<StyledCount centeredOnTop={centeredOnTop}>
|
|
|
|
|
{overflowing ? <OverflowingAt overflowingAt={overflowingAt} /> : count}
|
|
|
|
|
</StyledCount>
|
|
|
|
|
</StyledCountContainer>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const SessionNotificationCount = (props: Pick<Props, 'count'>) => {
|
|
|
|
|
return (
|
|
|
|
|
<NotificationOrUnreadCount
|
|
|
|
|
centeredOnTop={false}
|
|
|
|
|
overflowingAt={Constants.CONVERSATION.MAX_GLOBAL_UNREAD_COUNT}
|
|
|
|
|
count={props.count}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const SessionUnreadCount = (props: Pick<Props, 'count'>) => {
|
|
|
|
|
return (
|
|
|
|
|
<NotificationOrUnreadCount
|
|
|
|
|
centeredOnTop={true}
|
|
|
|
|
overflowingAt={Constants.CONVERSATION.MAX_CONVO_UNREAD_COUNT}
|
|
|
|
|
count={props.count}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|