Signal-iOS/Signal/ConversationView/ConversationViewController+Mentions.swift
2024-03-25 13:26:31 -05:00

40 lines
1.3 KiB
Swift

//
// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import SignalServiceKit
import SignalUI
extension ConversationViewController: BodyRangesTextViewDelegate {
var supportsMentions: Bool { thread.allowsMentionSend }
public func textViewDidBeginTypingMention(_ textView: BodyRangesTextView) {}
public func textViewDidEndTypingMention(_ textView: BodyRangesTextView) {}
public func textViewMentionPickerParentView(_ textView: BodyRangesTextView) -> UIView? {
view
}
public func textViewMentionPickerReferenceView(_ textView: BodyRangesTextView) -> UIView? {
bottomBar
}
public func textViewMentionPickerPossibleAddresses(_ textView: BodyRangesTextView, tx: DBReadTransaction) -> [SignalServiceAddress] {
supportsMentions ? thread.recipientAddresses(with: SDSDB.shimOnlyBridge(tx)) : []
}
public func textViewMentionCacheInvalidationKey(_ textView: BodyRangesTextView) -> String {
return thread.uniqueId
}
public func textViewDisplayConfiguration(_ textView: BodyRangesTextView) -> HydratedMessageBody.DisplayConfiguration {
return .composing(textViewColor: textView.textColor)
}
public func mentionPickerStyle(_ textView: BodyRangesTextView) -> MentionPickerStyle {
return .default
}
}