IceCubesApp/IceCubesApp/App/Tabs/MessagesTab.swift

46 lines
1.2 KiB
Swift
Raw Normal View History

2022-12-20 15:08:09 +00:00
import Account
2023-01-17 10:36:01 +00:00
import AppAccount
import Conversations
import Env
2023-01-17 10:36:01 +00:00
import Models
import Network
import Shimmer
import SwiftUI
2022-12-20 15:08:09 +00:00
struct MessagesTab: View {
@EnvironmentObject private var watcher: StreamWatcher
@EnvironmentObject private var client: Client
2022-12-22 10:19:56 +00:00
@EnvironmentObject private var currentAccount: CurrentAccount
2022-12-20 15:08:09 +00:00
@StateObject private var routeurPath = RouterPath()
2022-12-27 08:25:26 +00:00
@Binding var popToRootTab: Tab
2023-01-17 10:36:01 +00:00
2022-12-20 15:08:09 +00:00
var body: some View {
NavigationStack(path: $routeurPath.path) {
ConversationsListView()
.withAppRouteur()
.withSheetDestinations(sheetDestinations: $routeurPath.presentedSheet)
.toolbar {
2023-01-16 21:01:04 +00:00
if UIDevice.current.userInterfaceIdiom != .pad {
2023-01-16 20:15:33 +00:00
ToolbarItem(placement: .navigationBarLeading) {
AppAccountsSelectorView(routeurPath: routeurPath)
}
}
}
.id(currentAccount.account?.id)
2022-12-20 15:08:09 +00:00
}
2022-12-24 10:50:05 +00:00
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
if popToRootTab == .messages {
2022-12-24 10:50:05 +00:00
routeurPath.path = []
}
}
.onChange(of: currentAccount.account?.id) { _ in
routeurPath.path = []
}
.onAppear {
routeurPath.client = client
}
.withSafariRouteur()
2023-01-06 20:34:24 +00:00
.environmentObject(routeurPath)
2022-12-20 15:08:09 +00:00
}
}