Merged caused some odd issues

pull/1061/head
Morgan Pretty 3 days ago
parent 2800a11cf3
commit a8acab4b86

@ -515,18 +515,6 @@ struct MessageBubble: View {
} }
else { else {
switch messageViewModel.cellType { switch messageViewModel.cellType {
case .mediaMessage:
if let bodyText: NSAttributedString = VisibleMessageCell.getBodyAttributedText(
for: messageViewModel,
theme: ThemeManager.currentTheme,
primaryColor: ThemeManager.primaryColor,
textColor: bodyLabelTextColor,
searchText: nil,
using: dependencies
) {
AttributedText(bodyText)
.padding(.all, Self.inset)
}
case .voiceMessage: case .voiceMessage:
if let attachment: Attachment = messageViewModel.attachments?.first(where: { $0.isAudio }){ if let attachment: Attachment = messageViewModel.attachments?.first(where: { $0.isAudio }){
// TODO: Playback Info and check if playing function is needed // TODO: Playback Info and check if playing function is needed
@ -534,42 +522,16 @@ struct MessageBubble: View {
} }
case .audio, .genericAttachment: case .audio, .genericAttachment:
if let attachment: Attachment = messageViewModel.attachments?.first { if let attachment: Attachment = messageViewModel.attachments?.first {
VStack( DocumentView_SwiftUI(
alignment: .leading, maxWidth: $maxWidth,
spacing: Values.smallSpacing attachment: attachment,
) { textColor: bodyLabelTextColor
DocumentView_SwiftUI( )
maxWidth: $maxWidth, .modifier(MaxWidthEqualizer.notify)
attachment: attachment, .frame(
textColor: bodyLabelTextColor width: maxWidth,
) alignment: .leading
.modifier(MaxWidthEqualizer.notify) )
.frame(
width: maxWidth,
alignment: .leading
)
if let bodyText: NSAttributedString = VisibleMessageCell.getBodyAttributedText(
for: messageViewModel,
theme: ThemeManager.currentTheme,
primaryColor: ThemeManager.primaryColor,
textColor: bodyLabelTextColor,
searchText: nil,
using: dependencies
) {
ZStack{
AttributedText(bodyText)
.padding(.horizontal, Self.inset)
.padding(.bottom, Self.inset)
}
.modifier(MaxWidthEqualizer.notify)
.frame(
width: maxWidth,
alignment: .leading
)
}
}
.modifier(MaxWidthEqualizer(width: $maxWidth))
} }
default: EmptyView() default: EmptyView()
} }

Loading…
Cancel
Save