mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-26 13:20:48 +00:00
Moves sendMessage and friends to redux
This commit is contained in:
19
ts/util/hasDraftAttachments.ts
Normal file
19
ts/util/hasDraftAttachments.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { AttachmentDraftType } from '../types/Attachment';
|
||||
|
||||
export function hasDraftAttachments(
|
||||
draftAttachments: Array<AttachmentDraftType> | undefined,
|
||||
options: { includePending: boolean }
|
||||
): boolean {
|
||||
if (!draftAttachments) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (options.includePending) {
|
||||
return draftAttachments.length > 0;
|
||||
}
|
||||
|
||||
return draftAttachments.some(item => !item.pending);
|
||||
}
|
||||
Reference in New Issue
Block a user