* implemented grouping * implemented presenting the thread * improved the implementation by reusing the presentation action * add Thread group to DMs to differentiate from non threaded messages of the same DM * name for a threaded notification in group room * focus event when tapping on a notification * pr suggestions * document
48 lines
1.0 KiB
Swift
48 lines
1.0 KiB
Swift
//
|
|
// Copyright 2025 Element Creations Ltd.
|
|
// Copyright 2022-2025 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
import MatrixRustSDK
|
|
import UserNotifications
|
|
|
|
protocol NotificationItemProxyProtocol {
|
|
var event: NotificationEvent? { get }
|
|
|
|
var senderID: String { get }
|
|
|
|
var roomID: String { get }
|
|
|
|
var receiverID: String { get }
|
|
|
|
var senderDisplayName: String? { get }
|
|
|
|
var senderAvatarMediaSource: MediaSourceProxy? { get }
|
|
|
|
var roomDisplayName: String { get }
|
|
|
|
var roomAvatarMediaSource: MediaSourceProxy? { get }
|
|
|
|
var roomJoinedMembers: Int { get }
|
|
|
|
var isRoomDirect: Bool { get }
|
|
|
|
var isRoomPrivate: Bool { get }
|
|
|
|
var isNoisy: Bool { get }
|
|
|
|
var hasMention: Bool { get }
|
|
|
|
var threadRootEventID: String? { get }
|
|
}
|
|
|
|
extension NotificationItemProxyProtocol {
|
|
var isDM: Bool {
|
|
isRoomDirect && roomJoinedMembers <= 2
|
|
}
|
|
}
|