2022-12-20 16:08:09 +01:00
|
|
|
import SwiftUI
|
2022-12-22 10:53:36 +01:00
|
|
|
import Env
|
2022-12-20 16:08:09 +01:00
|
|
|
import Network
|
|
|
|
import Account
|
|
|
|
import Models
|
|
|
|
import Shimmer
|
2023-01-05 12:21:54 +01:00
|
|
|
import Conversations
|
|
|
|
import Env
|
2022-12-20 16:08:09 +01:00
|
|
|
|
2023-01-05 12:21:54 +01:00
|
|
|
struct MessagesTab: View {
|
|
|
|
@EnvironmentObject private var watcher: StreamWatcher
|
2022-12-27 08:31:47 +01:00
|
|
|
@EnvironmentObject private var client: Client
|
2022-12-22 11:19:56 +01:00
|
|
|
@EnvironmentObject private var currentAccount: CurrentAccount
|
2022-12-20 16:08:09 +01:00
|
|
|
@StateObject private var routeurPath = RouterPath()
|
2022-12-27 09:25:26 +01:00
|
|
|
@Binding var popToRootTab: Tab
|
2022-12-20 16:08:09 +01:00
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
NavigationStack(path: $routeurPath.path) {
|
2023-01-05 12:21:54 +01:00
|
|
|
ConversationsListView()
|
|
|
|
.withAppRouteur()
|
|
|
|
.withSheetDestinations(sheetDestinations: $routeurPath.presentedSheet)
|
2023-01-06 12:14:05 +01:00
|
|
|
.toolbar {
|
|
|
|
ToolbarItem(placement: .navigationBarLeading) {
|
|
|
|
AppAccountsSelectorView(routeurPath: routeurPath)
|
|
|
|
}
|
|
|
|
}
|
2023-01-05 12:21:54 +01:00
|
|
|
.id(currentAccount.account?.id)
|
2023-01-06 17:09:52 +01:00
|
|
|
.environmentObject(routeurPath)
|
2022-12-20 16:08:09 +01:00
|
|
|
}
|
2022-12-24 11:50:05 +01:00
|
|
|
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
|
2023-01-05 12:21:54 +01:00
|
|
|
if popToRootTab == .messages {
|
2022-12-24 11:50:05 +01:00
|
|
|
routeurPath.path = []
|
|
|
|
}
|
|
|
|
}
|
2023-01-02 19:23:44 +01:00
|
|
|
.onChange(of: currentAccount.account?.id) { _ in
|
|
|
|
routeurPath.path = []
|
|
|
|
}
|
2022-12-27 08:31:47 +01:00
|
|
|
.onAppear {
|
|
|
|
routeurPath.client = client
|
2023-01-05 12:21:54 +01:00
|
|
|
watcher.unreadMessagesCount = 0
|
2022-12-27 08:31:47 +01:00
|
|
|
}
|
2022-12-20 16:08:09 +01:00
|
|
|
}
|
|
|
|
}
|