Make most message attribute uses readonly
Co-authored-by: Jamie Kyle <jamie@signal.org>
This commit is contained in:
parent
c619a7b6fd
commit
3555ccc629
53 changed files with 342 additions and 258 deletions
|
@ -1,14 +1,16 @@
|
|||
// Copyright 2023 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { MessageAttributesType } from '../model-types.d';
|
||||
import type { ReadonlyMessageAttributesType } from '../model-types.d';
|
||||
import { DAY } from './durations';
|
||||
import { isMoreRecentThan } from './timestamp';
|
||||
import { isOutgoing } from '../messages/helpers';
|
||||
|
||||
export const MESSAGE_MAX_EDIT_COUNT = 10;
|
||||
|
||||
export function canEditMessage(message: MessageAttributesType): boolean {
|
||||
export function canEditMessage(
|
||||
message: ReadonlyMessageAttributesType
|
||||
): boolean {
|
||||
const result =
|
||||
!message.deletedForEveryone &&
|
||||
isOutgoing(message) &&
|
||||
|
@ -29,6 +31,8 @@ export function canEditMessage(message: MessageAttributesType): boolean {
|
|||
return false;
|
||||
}
|
||||
|
||||
export function isWithinMaxEdits(message: MessageAttributesType): boolean {
|
||||
export function isWithinMaxEdits(
|
||||
message: ReadonlyMessageAttributesType
|
||||
): boolean {
|
||||
return (message.editHistory?.length ?? 0) <= MESSAGE_MAX_EDIT_COUNT;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue