IceCubesApp/IceCubesApp/App/Tabs/TimelineTab.swift

62 lines
1.5 KiB
Swift
Raw Normal View History

2022-11-29 10:46:02 +00:00
import SwiftUI
import Timeline
2022-12-22 09:53:36 +00:00
import Env
2022-11-29 11:18:06 +00:00
import Network
2022-12-24 10:50:05 +00:00
import Combine
2022-11-29 10:46:02 +00:00
2022-12-01 08:05:26 +00:00
struct TimelineTab: View {
2022-12-23 14:53:02 +00:00
@EnvironmentObject private var client: Client
2022-11-29 10:46:02 +00:00
@StateObject private var routeurPath = RouterPath()
2022-12-24 10:50:05 +00:00
@Binding var popToRootTab: IceCubesApp.Tab
@State private var timeline: TimelineFilter = .home
2022-11-29 10:46:02 +00:00
var body: some View {
NavigationStack(path: $routeurPath.path) {
TimelineView(timeline: $timeline)
2022-11-29 10:46:02 +00:00
.withAppRouteur()
2022-12-20 08:37:07 +00:00
.withSheetDestinations(sheetDestinations: $routeurPath.presentedSheet)
.toolbar {
2022-12-23 14:53:02 +00:00
if client.isAuth {
ToolbarItem(placement: .navigationBarLeading) {
Button {
2022-12-26 07:24:55 +00:00
routeurPath.presentedSheet = .newStatusEditor
2022-12-23 14:53:02 +00:00
} label: {
Image(systemName: "square.and.pencil")
}
}
ToolbarItem(placement: .navigationBarTrailing) {
timelineFilterButton
}
}
}
2022-11-29 10:46:02 +00:00
}
.onAppear {
if !client.isAuth {
timeline = .pub
}
}
2022-11-29 10:46:02 +00:00
.environmentObject(routeurPath)
2022-12-24 10:50:05 +00:00
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
if popToRootTab == .timeline {
routeurPath.path = []
}
}
2022-11-29 10:46:02 +00:00
}
private var timelineFilterButton: some View {
Menu {
ForEach(TimelineFilter.availableTimeline(), id: \.self) { timeline in
Button {
self.timeline = timeline
} label: {
Text(timeline.title())
}
}
} label: {
Image(systemName: "line.3.horizontal.decrease.circle")
}
}
2022-11-29 10:46:02 +00:00
}