This commit is contained in:
ryanzhao 2022-08-10 13:51:48 +10:00
parent d02b0c90bd
commit 85b3015d71
2 changed files with 2 additions and 21 deletions

View File

@ -244,4 +244,4 @@ SPEC CHECKSUMS:
PODFILE CHECKSUM: f0857369c4831b2e5c1946345e76e493f3286805
COCOAPODS: 1.11.2
COCOAPODS: 1.11.3

View File

@ -599,7 +599,7 @@ final class VisibleMessageCell: MessageCell, UITextViewDelegate, BodyTextViewDel
}
private func updateBubbleViewCorners() {
let cornersToRound: UIRectCorner = getCornersToRound()
let cornersToRound: UIRectCorner = .allCorners
bubbleBackgroundView.layer.cornerRadius = VisibleMessageCell.largeCornerRadius
bubbleBackgroundView.layer.maskedCorners = getCornerMask(from: cornersToRound)
@ -807,25 +807,6 @@ final class VisibleMessageCell: MessageCell, UITextViewDelegate, BodyTextViewDel
// MARK: - Convenience
private func getCornersToRound() -> UIRectCorner {
return .allCorners
// FIXME: Leave the code here just in case we want this again.
// guard viewModel?.isOnlyMessageInCluster == false else { return .allCorners }
//
// let direction: Direction = (viewModel?.variant == .standardOutgoing ? .outgoing : .incoming)
//
// switch (viewModel?.positionInCluster, direction) {
// case (.top, .outgoing): return [ .bottomLeft, .topLeft, .topRight ]
// case (.middle, .outgoing): return [ .bottomLeft, .topLeft ]
// case (.bottom, .outgoing): return [ .bottomRight, .bottomLeft, .topLeft ]
// case (.top, .incoming): return [ .topLeft, .topRight, .bottomRight ]
// case (.middle, .incoming): return [ .topRight, .bottomRight ]
// case (.bottom, .incoming): return [ .topRight, .bottomRight, .bottomLeft ]
// case (.none, _): return .allCorners
// }
}
private func getCornerMask(from rectCorner: UIRectCorner) -> CACornerMask {
guard !rectCorner.contains(.allCorners) else {
return [ .layerMaxXMinYCorner, .layerMinXMinYCorner, .layerMaxXMaxYCorner, .layerMinXMaxYCorner]