add feedbacks for actions in message info screen

pull/1061/head
Ryan ZHAO 2 months ago
parent c1fcf8e4aa
commit be95cb181f

@ -14,6 +14,7 @@ extension ContextMenuVC {
struct Action {
let icon: UIImage?
let title: String
let feedback: String
let expirationInfo: ExpirationInfo?
let themeColor: ThemeValue
let actionType: ActionType
@ -32,6 +33,7 @@ extension ContextMenuVC {
init(
icon: UIImage? = nil,
title: String = "",
feedback: String = "",
expirationInfo: ExpirationInfo? = nil,
themeColor: ThemeValue = .textPrimary,
actionType: ActionType = .generic,
@ -40,6 +42,7 @@ extension ContextMenuVC {
) {
self.icon = icon
self.title = title
self.feedback = feedback
self.expirationInfo = expirationInfo
self.themeColor = themeColor
self.actionType = actionType
@ -80,6 +83,7 @@ extension ContextMenuVC {
return Action(
icon: UIImage(named: "ic_copy"),
title: "copy".localized(),
feedback: "copied".localized(),
accessibilityLabel: "Copy text"
) { delegate?.copy(cellViewModel, using: dependencies) }
}
@ -88,6 +92,7 @@ extension ContextMenuVC {
return Action(
icon: UIImage(named: "ic_copy"),
title: "accountIDCopy".localized(),
feedback: "copied".localized(),
accessibilityLabel: "Copy Session ID"
) { delegate?.copySessionID(cellViewModel) }
@ -110,6 +115,7 @@ extension ContextMenuVC {
return Action(
icon: UIImage(named: "ic_download"),
title: "save".localized(),
feedback: "saved".localized(),
accessibilityLabel: "Save attachment"
) { delegate?.save(cellViewModel, using: dependencies) }
}

@ -10,6 +10,7 @@ struct MessageInfoScreen: View {
@EnvironmentObject var host: HostWrapper
@State var index = 1
@State var feedbackMessage: String? = nil
static private let cornerRadius: CGFloat = 17
@ -305,7 +306,10 @@ struct MessageInfoScreen: View {
Button(
action: {
actions[index].work()
dismiss()
feedbackMessage = actions[index].feedback
DispatchQueue.main.asyncAfter(deadline: .now() + 2, execute: {
dismiss()
})
},
label: {
HStack(spacing: Values.largeSpacing) {
@ -348,6 +352,7 @@ struct MessageInfoScreen: View {
}
}
.backgroundColor(themeColor: .backgroundPrimary)
.toastView(message: $feedbackMessage)
}
private func showMediaFullScreen(attachment: Attachment) {

@ -34,7 +34,7 @@ public struct ToastModifier: ViewModifier {
}
workItem = task
DispatchQueue.main.asyncAfter(deadline: .now() + 5, execute: task)
DispatchQueue.main.asyncAfter(deadline: .now() + 1.5, execute: task)
}
private func dismissToast() {
@ -61,24 +61,18 @@ public struct ToastView: View {
VStack(
spacing: 0
) {
ZStack {
Capsule()
.foregroundColor(themeColor: .toast_background)
Text(message)
.font(.system(size: Values.verySmallFontSize))
.foregroundColor(themeColor: .textPrimary)
.multilineTextAlignment(.center)
.frame(maxWidth: .infinity)
.padding(.horizontal, Values.mediumSpacing)
}
.frame(
width: Self.width,
height: Self.height
)
Text(message)
.font(.system(size: Values.mediumFontSize))
.foregroundColor(themeColor: .textPrimary)
.multilineTextAlignment(.center)
.padding(.horizontal, Values.largeSpacing)
.frame(height: Self.height)
.background(
Capsule()
.foregroundColor(themeColor: .toast_background)
)
}
.frame(
maxWidth: .infinity,
maxHeight: .infinity,
alignment: .bottom
)

Loading…
Cancel
Save