mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 10:19:08 +00:00
33 lines
961 B
TypeScript
33 lines
961 B
TypeScript
// Copyright 2023 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { ReadonlyMessageAttributesType } from '../model-types.d.ts';
|
|
import { DAY } from './durations/index.std.js';
|
|
import { isMoreRecentThan } from './timestamp.std.js';
|
|
import { isOutgoing, isPoll } from '../messages/helpers.std.js';
|
|
import { isMessageNoteToSelf } from './isMessageNoteToSelf.dom.js';
|
|
|
|
export const MESSAGE_MAX_EDIT_COUNT = 10;
|
|
|
|
export function canEditMessage(
|
|
message: ReadonlyMessageAttributesType
|
|
): boolean {
|
|
return (
|
|
!message.sms &&
|
|
!message.deletedForEveryone &&
|
|
isOutgoing(message) &&
|
|
!isPoll(message) &&
|
|
(isMoreRecentThan(message.sent_at, DAY) || isMessageNoteToSelf(message)) &&
|
|
Boolean(message.body)
|
|
);
|
|
}
|
|
|
|
export function isWithinMaxEdits(
|
|
message: ReadonlyMessageAttributesType
|
|
): boolean {
|
|
return (
|
|
isMessageNoteToSelf(message) ||
|
|
(message.editHistory?.length ?? 0) <= MESSAGE_MAX_EDIT_COUNT
|
|
);
|
|
}
|