signal-desktop/ts/components/conversation/LastSeenIndicator.tsx

34 lines
840 B
TypeScript
Raw Normal View History

2023-01-03 11:55:46 -08:00
// Copyright 2019 Signal Messenger, LLC
2020-10-30 15:34:04 -05:00
// SPDX-License-Identifier: AGPL-3.0-only
import React, { forwardRef } from 'react';
import type { LocalizerType } from '../../types/Util';
2020-08-24 06:57:00 -07:00
export type Props = {
count: number;
i18n: LocalizerType;
};
export const LastSeenIndicator = forwardRef<HTMLDivElement, Props>(
2022-11-17 16:45:19 -08:00
function LastSeenIndicatorInner({ count, i18n }, ref) {
const message =
count === 1
2023-03-29 17:03:25 -07:00
? i18n('icu:unreadMessage')
2023-04-03 12:03:00 -07:00
: 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>
);
}
);