2022-12-20 16:08:09 +01:00
|
|
|
import Account
|
2023-01-17 11:36:01 +01:00
|
|
|
import AppAccount
|
2023-01-05 12:21:54 +01:00
|
|
|
import Conversations
|
2023-01-22 06:53:18 +01:00
|
|
|
import DesignSystem
|
2023-01-05 12:21:54 +01:00
|
|
|
import Env
|
2023-01-17 11:36:01 +01:00
|
|
|
import Models
|
|
|
|
import Network
|
|
|
|
import Shimmer
|
|
|
|
import SwiftUI
|
2022-12-20 16:08:09 +01:00
|
|
|
|
2023-09-18 21:03:52 +02:00
|
|
|
@MainActor
|
2023-01-05 12:21:54 +01:00
|
|
|
struct MessagesTab: View {
|
2023-09-18 21:03:52 +02:00
|
|
|
@Environment(Theme.self) private var theme
|
2023-09-18 07:01:23 +02:00
|
|
|
@Environment(StreamWatcher.self) private var watcher
|
|
|
|
@Environment(Client.self) private var client
|
|
|
|
@Environment(CurrentAccount.self) private var currentAccount
|
|
|
|
@Environment(AppAccountsManager.self) private var appAccount
|
|
|
|
@State private var routerPath = RouterPath()
|
2022-12-27 09:25:26 +01:00
|
|
|
@Binding var popToRootTab: Tab
|
2023-01-17 11:36:01 +01:00
|
|
|
|
2022-12-20 16:08:09 +01:00
|
|
|
var body: some View {
|
2023-01-17 15:14:50 +01:00
|
|
|
NavigationStack(path: $routerPath.path) {
|
2023-01-05 12:21:54 +01:00
|
|
|
ConversationsListView()
|
2023-01-17 15:14:50 +01:00
|
|
|
.withAppRouter()
|
|
|
|
.withSheetDestinations(sheetDestinations: $routerPath.presentedSheet)
|
2023-01-06 12:14:05 +01:00
|
|
|
.toolbar {
|
2023-01-16 22:01:04 +01:00
|
|
|
if UIDevice.current.userInterfaceIdiom != .pad {
|
2023-01-16 21:15:33 +01:00
|
|
|
ToolbarItem(placement: .navigationBarLeading) {
|
2023-01-17 15:14:50 +01:00
|
|
|
AppAccountsSelectorView(routerPath: routerPath)
|
2023-01-16 21:15:33 +01:00
|
|
|
}
|
2023-01-06 12:14:05 +01:00
|
|
|
}
|
|
|
|
}
|
2023-01-22 06:53:18 +01:00
|
|
|
.toolbarBackground(theme.primaryBackgroundColor.opacity(0.50), for: .navigationBar)
|
2023-01-30 19:14:43 +01:00
|
|
|
.id(client.id)
|
2022-12-20 16:08:09 +01:00
|
|
|
}
|
2023-09-18 07:01:23 +02:00
|
|
|
.onChange(of: $popToRootTab.wrappedValue) { _, newValue in
|
|
|
|
if newValue == .messages {
|
2023-01-17 15:14:50 +01:00
|
|
|
routerPath.path = []
|
2022-12-24 11:50:05 +01:00
|
|
|
}
|
|
|
|
}
|
2023-09-18 07:01:23 +02:00
|
|
|
.onChange(of: client.id) {
|
2023-01-17 15:14:50 +01:00
|
|
|
routerPath.path = []
|
2023-01-02 19:23:44 +01:00
|
|
|
}
|
2022-12-27 08:31:47 +01:00
|
|
|
.onAppear {
|
2023-01-17 15:14:50 +01:00
|
|
|
routerPath.client = client
|
2022-12-27 08:31:47 +01:00
|
|
|
}
|
2023-01-17 15:14:50 +01:00
|
|
|
.withSafariRouter()
|
2023-09-18 07:01:23 +02:00
|
|
|
.environment(routerPath)
|
2022-12-20 16:08:09 +01:00
|
|
|
}
|
|
|
|
}
|