Files
Desktop/ts/util/getStoryReplyText.std.ts
Fedor Indutny 44076ece79 Rename files
2025-10-16 23:45:44 -07:00

36 lines
941 B
TypeScript

// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { AttachmentType } from '../types/Attachment.std.js';
import type { LocalizerType } from '../types/Util.std.js';
import { isGIF, isImage, isVideo } from './Attachment.std.js';
export function getStoryReplyText(
i18n: LocalizerType,
attachment?: AttachmentType
): string {
if (!attachment) {
return i18n('icu:Quote__story-unavailable');
}
const attachments = [attachment];
if (isImage(attachments)) {
return i18n('icu:message--getNotificationText--photo');
}
if (isGIF(attachments)) {
return i18n('icu:message--getNotificationText--gif');
}
if (isVideo(attachments)) {
return i18n('icu:message--getNotificationText--video');
}
if (attachment.textAttachment && attachment.textAttachment.text) {
return attachment.textAttachment.text;
}
return i18n('icu:message--getNotificationText--file');
}