* ios api
* ios wip
* android wip
* ios files folder
* ios get address on start
* android app files folder
* ios more backend
* android more backend
* translation
* ios image without text, remove preview
* android image without text, remove preview
* fix translation
* file name in previews and w/t text
* Revert "file name in previews and w/t text"
This reverts commit 0110570e55.
* ios filename in preview
* android filename in preview
* android wider images
* ios determine width on image for correct quote width
* ios images in previews wip
* ios square image in quote
* ios: update image layout
* android images in quotes
* android remove redundant modifier
* android clip to bounds
* android - image in right side of quote
* android refactor image view
* android - refactor, align quote text top
* android fix emoji view
* fix image layout
* full screen image view, fix quote layout
* android various size
* android fixed image width
* android meta on image
* ios: add drag gesture to hide full-screen image
* android: make image-only meta white
* refactor file.stored
* android: meta icon color
* android: open chat scrolled to last unread item
* copy/share image messages
* android: full screen image
* check file is loaded
* terminal: refactor view for messages with files
* android: change to onClick, only show stored file
* android: remove close sheet bar
* android: close image view on click
* translation
* android: pass showMenu to CIImageView to show menu on long click
* increase DropDown width
Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
80 lines
2.6 KiB
Swift
80 lines
2.6 KiB
Swift
//
|
|
// ContentView.swift
|
|
// Shared
|
|
//
|
|
// Created by Evgeny Poberezkin on 17/01/2022.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ContentView: View {
|
|
@EnvironmentObject var chatModel: ChatModel
|
|
@ObservedObject var alertManager = AlertManager.shared
|
|
@State private var showNotificationAlert = false
|
|
|
|
var body: some View {
|
|
if let user = chatModel.currentUser {
|
|
ChatListView(user: user)
|
|
.onAppear {
|
|
do {
|
|
try apiStartChat()
|
|
try apiSetFilesFolder(filesFolder: getAppFilesDirectory().path)
|
|
chatModel.userAddress = try apiGetUserAddress()
|
|
chatModel.userSMPServers = try getUserSMPServers()
|
|
chatModel.chats = try apiGetChats()
|
|
} catch {
|
|
fatalError("Failed to start or load chats: \(error)")
|
|
}
|
|
ChatReceiver.shared.start()
|
|
NtfManager.shared.requestAuthorization(onDeny: {
|
|
alertManager.showAlert(notificationAlert())
|
|
})
|
|
}
|
|
.alert(isPresented: $alertManager.presentAlert) { alertManager.alertView! }
|
|
} else {
|
|
WelcomeView()
|
|
}
|
|
}
|
|
|
|
func notificationAlert() -> Alert {
|
|
Alert(
|
|
title: Text("Notifications are disabled!"),
|
|
message: Text("The app can notify you when you receive messages or contact requests - please open settings to enable."),
|
|
primaryButton: .default(Text("Open Settings")) {
|
|
DispatchQueue.main.async {
|
|
UIApplication.shared.open(URL(string: UIApplication.openSettingsURLString)!, options: [:], completionHandler: nil)
|
|
}
|
|
},
|
|
secondaryButton: .cancel()
|
|
)
|
|
}
|
|
}
|
|
|
|
final class AlertManager: ObservableObject {
|
|
static let shared = AlertManager()
|
|
@Published var presentAlert = false
|
|
@Published var alertView: Alert?
|
|
|
|
func showAlert(_ alert: Alert) {
|
|
logger.debug("AlertManager.showAlert")
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {
|
|
self.alertView = alert
|
|
self.presentAlert = true
|
|
}
|
|
}
|
|
|
|
func showAlertMsg(title: LocalizedStringKey, message: LocalizedStringKey? = nil) {
|
|
if let message = message {
|
|
showAlert(Alert(title: Text(title), message: Text(message)))
|
|
} else {
|
|
showAlert(Alert(title: Text(title)))
|
|
}
|
|
}
|
|
}
|
|
|
|
//struct ContentView_Previews: PreviewProvider {
|
|
// static var previews: some View {
|
|
// ContentView(text: "Hello!")
|
|
// }
|
|
//}
|