33 lines
840 B
TypeScript
33 lines
840 B
TypeScript
// Copyright 2019 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import React, { forwardRef } from 'react';
|
|
|
|
import type { LocalizerType } from '../../types/Util';
|
|
|
|
export type Props = {
|
|
count: number;
|
|
i18n: LocalizerType;
|
|
};
|
|
|
|
export const LastSeenIndicator = forwardRef<HTMLDivElement, Props>(
|
|
function LastSeenIndicatorInner({ count, i18n }, ref) {
|
|
const message =
|
|
count === 1
|
|
? i18n('icu:unreadMessage')
|
|
: i18n('icu:unreadMessages', { count });
|
|
|
|
return (
|
|
<div className="module-last-seen-indicator" ref={ref}>
|
|
<div className="module-last-seen-indicator__bar" role="separator" />
|
|
<div
|
|
aria-level={6}
|
|
className="module-last-seen-indicator__text"
|
|
role="heading"
|
|
>
|
|
{message}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
);
|