IceCubes/IceCubesApp/App/Tabs/TimelineTab.swift

37 lines
982 B
Swift
Raw Normal View History

2022-11-29 11:46:02 +01:00
import SwiftUI
import Timeline
2022-12-22 10:53:36 +01:00
import Env
2022-11-29 12:18:06 +01:00
import Network
2022-12-24 11:50:05 +01:00
import Combine
2022-11-29 11:46:02 +01:00
2022-12-01 09:05:26 +01:00
struct TimelineTab: View {
2022-12-23 15:53:02 +01:00
@EnvironmentObject private var client: Client
2022-11-29 11:46:02 +01:00
@StateObject private var routeurPath = RouterPath()
2022-12-24 11:50:05 +01:00
@Binding var popToRootTab: IceCubesApp.Tab
2022-11-29 11:46:02 +01:00
var body: some View {
NavigationStack(path: $routeurPath.path) {
2022-11-29 12:18:06 +01:00
TimelineView()
2022-11-29 11:46:02 +01:00
.withAppRouteur()
2022-12-20 09:37:07 +01:00
.withSheetDestinations(sheetDestinations: $routeurPath.presentedSheet)
.toolbar {
2022-12-23 15:53:02 +01:00
if client.isAuth {
ToolbarItem(placement: .navigationBarLeading) {
Button {
routeurPath.presentedSheet = .statusEditor(replyToStatus: nil)
} label: {
Image(systemName: "square.and.pencil")
}
}
}
}
2022-11-29 11:46:02 +01:00
}
.environmentObject(routeurPath)
2022-12-24 11:50:05 +01:00
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
if popToRootTab == .timeline {
routeurPath.path = []
}
}
2022-11-29 11:46:02 +01:00
}
}