signal-desktop/ts/util/isBlocked.ts
2023-12-14 00:58:56 +01:00

23 lines
580 B
TypeScript

// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ConversationAttributesType } from '../model-types';
export function isBlocked(
attributes: Pick<ConversationAttributesType, 'e164' | 'groupId' | 'serviceId'>
): boolean {
const { e164, groupId, serviceId } = attributes;
if (serviceId) {
return window.storage.blocked.isServiceIdBlocked(serviceId);
}
if (e164) {
return window.storage.blocked.isBlocked(e164);
}
if (groupId) {
return window.storage.blocked.isGroupBlocked(groupId);
}
return false;
}