mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-31 20:36:19 +00:00
* wip * wip * fixes * improvements * info * fix * dont cleanup file * info design, text * text * rework with LazyVStack * delay * refactor * move delay * fix * refactor * refactor 2 * keep current message * forward with quote, context icons * info * preserve draft * remove newline * improve search * info * layout --------- Co-authored-by: Evgeny Poberezkin <evgeny@poberezkin.com>
81 lines
2.5 KiB
Swift
81 lines
2.5 KiB
Swift
//
|
|
// ContextItemView.swift
|
|
// SimpleX
|
|
//
|
|
// Created by JRoberts on 13/03/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import SimpleXChat
|
|
|
|
struct ContextItemView: View {
|
|
@Environment(\.colorScheme) var colorScheme
|
|
@ObservedObject var chat: Chat
|
|
let contextItem: ChatItem
|
|
let contextIcon: String
|
|
let cancelContextItem: () -> Void
|
|
var showSender: Bool = true
|
|
|
|
var body: some View {
|
|
HStack {
|
|
Image(systemName: contextIcon)
|
|
.resizable()
|
|
.aspectRatio(contentMode: .fit)
|
|
.frame(width: 16, height: 16)
|
|
.foregroundColor(.secondary)
|
|
if showSender, let sender = contextItem.memberDisplayName {
|
|
VStack(alignment: .leading, spacing: 4) {
|
|
Text(sender).font(.caption).foregroundColor(.secondary)
|
|
msgContentView(lines: 2)
|
|
}
|
|
} else {
|
|
msgContentView(lines: 3)
|
|
}
|
|
Spacer()
|
|
Button {
|
|
withAnimation {
|
|
cancelContextItem()
|
|
}
|
|
} label: {
|
|
Image(systemName: "multiply")
|
|
}
|
|
}
|
|
.padding(12)
|
|
.frame(minHeight: 50)
|
|
.frame(maxWidth: .infinity)
|
|
.background(chatItemFrameColor(contextItem, colorScheme))
|
|
.padding(.top, 8)
|
|
}
|
|
|
|
private func msgContentView(lines: Int) -> some View {
|
|
contextMsgPreview()
|
|
.multilineTextAlignment(isRightToLeft(contextItem.text) ? .trailing : .leading)
|
|
.lineLimit(lines)
|
|
}
|
|
|
|
private func contextMsgPreview() -> Text {
|
|
return attachment() + messageText(contextItem.text, contextItem.formattedText, nil, preview: true, showSecrets: false)
|
|
|
|
func attachment() -> Text {
|
|
switch contextItem.content.msgContent {
|
|
case .file: return image("doc.fill")
|
|
case .image: return image("photo")
|
|
case .voice: return image("play.fill")
|
|
default: return Text("")
|
|
}
|
|
}
|
|
|
|
func image(_ s: String) -> Text {
|
|
Text(Image(systemName: s)).foregroundColor(Color(uiColor: .tertiaryLabel)) + Text(" ")
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ContextItemView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
let contextItem: ChatItem = ChatItem.getSample(1, .directSnd, .now, "hello")
|
|
return ContextItemView(chat: Chat.sampleData, contextItem: contextItem, contextIcon: "pencil.circle", cancelContextItem: {})
|
|
}
|
|
}
|