mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
5.4 KiB
Swift
148 lines
5.4 KiB
Swift
2 years ago
|
// Copyright © 2023 Rangeproof Pty Ltd. All rights reserved.
|
||
|
|
||
|
import SwiftUI
|
||
|
import SessionUIKit
|
||
|
import SessionMessagingKit
|
||
|
|
||
|
public struct LinkPreviewView_SwiftUI: View {
|
||
2 years ago
|
private var state: LinkPreviewState
|
||
|
private var isOutgoing: Bool
|
||
2 years ago
|
private let maxWidth: CGFloat
|
||
2 years ago
|
private var messageViewModel: MessageViewModel?
|
||
|
private var bodyLabelTextColor: ThemeValue?
|
||
|
private var lastSearchText: String?
|
||
2 years ago
|
private let onCancel: (() -> ())?
|
||
|
|
||
2 years ago
|
private static let loaderSize: CGFloat = 24
|
||
|
private static let cancelButtonSize: CGFloat = 45
|
||
|
|
||
|
init(
|
||
|
state: LinkPreviewState,
|
||
|
isOutgoing: Bool,
|
||
|
maxWidth: CGFloat = .infinity,
|
||
|
messageViewModel: MessageViewModel? = nil,
|
||
|
bodyLabelTextColor: ThemeValue? = nil,
|
||
|
lastSearchText: String? = nil,
|
||
|
onCancel: (() -> ())? = nil
|
||
|
) {
|
||
|
self.state = state
|
||
|
self.isOutgoing = isOutgoing
|
||
2 years ago
|
self.maxWidth = maxWidth
|
||
2 years ago
|
self.messageViewModel = messageViewModel
|
||
|
self.bodyLabelTextColor = bodyLabelTextColor
|
||
|
self.lastSearchText = lastSearchText
|
||
2 years ago
|
self.onCancel = onCancel
|
||
|
}
|
||
|
|
||
|
public var body: some View {
|
||
|
VStack(
|
||
|
alignment: .leading,
|
||
2 years ago
|
spacing: Values.mediumSpacing
|
||
2 years ago
|
) {
|
||
|
HStack(
|
||
|
alignment: .center,
|
||
2 years ago
|
spacing: Values.mediumSpacing
|
||
2 years ago
|
) {
|
||
2 years ago
|
// Link preview image
|
||
|
let imageSize: CGFloat = state is LinkPreview.SentState ? 100 : 80
|
||
|
if let linkPreviewImage: UIImage = state.image {
|
||
|
Image(uiImage: linkPreviewImage)
|
||
|
.resizable()
|
||
|
.scaledToFill()
|
||
|
.foregroundColor(
|
||
|
themeColor: isOutgoing ?
|
||
|
.messageBubble_outgoingText :
|
||
|
.messageBubble_incomingText
|
||
|
)
|
||
|
.frame(
|
||
|
width: imageSize,
|
||
|
height: imageSize
|
||
|
)
|
||
|
.cornerRadius(state is LinkPreview.SentState ? 0 : 8)
|
||
2 years ago
|
} else if
|
||
|
state is LinkPreview.DraftState || state is LinkPreview.SentState,
|
||
|
let defaultImage: UIImage = UIImage(named: "Link")?.withRenderingMode(.alwaysTemplate)
|
||
|
{
|
||
|
Image(uiImage: defaultImage)
|
||
|
.foregroundColor(
|
||
|
themeColor: isOutgoing ?
|
||
|
.messageBubble_outgoingText :
|
||
|
.messageBubble_incomingText
|
||
|
)
|
||
|
.frame(
|
||
|
width: imageSize,
|
||
|
height: imageSize
|
||
|
)
|
||
|
.cornerRadius(state is LinkPreview.SentState ? 0 : 8)
|
||
2 years ago
|
} else {
|
||
2 years ago
|
ActivityIndicator()
|
||
|
.foregroundColor(.black)
|
||
|
.frame(
|
||
|
width: Self.loaderSize,
|
||
|
height: Self.loaderSize
|
||
|
)
|
||
2 years ago
|
}
|
||
2 years ago
|
|
||
2 years ago
|
// Link preview title
|
||
|
if let title: String = state.title {
|
||
|
Text(title)
|
||
|
.bold()
|
||
|
.font(.system(size: Values.smallFontSize))
|
||
|
.multilineTextAlignment(.leading)
|
||
|
.foregroundColor(
|
||
|
themeColor: isOutgoing ?
|
||
|
.messageBubble_outgoingText :
|
||
|
.messageBubble_incomingText
|
||
|
)
|
||
|
}
|
||
2 years ago
|
|
||
2 years ago
|
// Cancel button
|
||
|
if state is LinkPreview.DraftState {
|
||
|
Spacer(minLength: 0)
|
||
|
|
||
|
Button(action: {
|
||
|
onCancel?()
|
||
|
}, label: {
|
||
|
if let image: UIImage = UIImage(named: "X")?.withRenderingMode(.alwaysTemplate) {
|
||
|
Image(uiImage: image)
|
||
|
.foregroundColor(themeColor: .textPrimary)
|
||
|
}
|
||
|
})
|
||
|
.frame(
|
||
|
width: Self.cancelButtonSize,
|
||
|
height: Self.cancelButtonSize
|
||
|
)
|
||
|
}
|
||
2 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
struct LinkPreviewView_SwiftUI_Previews: PreviewProvider {
|
||
|
static var previews: some View {
|
||
2 years ago
|
VStack {
|
||
|
LinkPreviewView_SwiftUI(
|
||
|
state: LinkPreview.DraftState(
|
||
|
linkPreviewDraft: .init(
|
||
|
urlString: "https://github.com/oxen-io",
|
||
|
title: "Github - oxen-io/session-ios: A private messenger for iOS.",
|
||
|
jpegImageData: UIImage(named: "AppIcon")?.jpegData(compressionQuality: 1)
|
||
|
)
|
||
|
),
|
||
|
isOutgoing: true
|
||
|
)
|
||
|
.padding(.horizontal, Values.mediumSpacing)
|
||
|
|
||
|
LinkPreviewView_SwiftUI(
|
||
|
state: LinkPreview.LoadingState(),
|
||
|
isOutgoing: true
|
||
|
)
|
||
|
.frame(
|
||
|
width: .infinity,
|
||
|
height: 80
|
||
|
)
|
||
|
.padding(.horizontal, Values.mediumSpacing)
|
||
|
}
|
||
2 years ago
|
}
|
||
|
}
|