IceCubes/IceCubesApp/App/Tabs/Timeline/TimelineTab.swift

182 lines
5.2 KiB
Swift
Raw Normal View History

2023-01-17 11:36:01 +01:00
import AppAccount
2022-12-24 11:50:05 +01:00
import Combine
import DesignSystem
2023-01-17 11:36:01 +01:00
import Env
import Models
2023-01-17 11:36:01 +01:00
import Network
import SwiftUI
import Timeline
2022-11-29 11:46:02 +01:00
2023-01-22 06:38:30 +01:00
struct TimelineTab: View {
2023-01-29 11:52:11 +01:00
@EnvironmentObject private var appAccount: AppAccountsManager
@EnvironmentObject private var theme: Theme
2022-12-30 08:36:22 +01:00
@EnvironmentObject private var currentAccount: CurrentAccount
@EnvironmentObject private var preferences: UserPreferences
2022-12-23 15:53:02 +01:00
@EnvironmentObject private var client: Client
@StateObject private var routerPath = RouterPath()
2022-12-27 09:25:26 +01:00
@Binding var popToRootTab: Tab
2023-01-17 11:36:01 +01:00
@State private var didAppear: Bool = false
2023-01-16 14:40:23 +01:00
@State private var timeline: TimelineFilter
2022-12-31 12:28:27 +01:00
@State private var scrollToTopSignal: Int = 0
2023-01-17 11:36:01 +01:00
2023-01-16 14:40:23 +01:00
private let canFilterTimeline: Bool
2023-01-17 11:36:01 +01:00
2023-01-16 14:40:23 +01:00
init(popToRootTab: Binding<Tab>, timeline: TimelineFilter? = nil) {
canFilterTimeline = timeline == nil
self.timeline = timeline ?? .home
_popToRootTab = popToRootTab
}
2023-01-17 11:36:01 +01:00
2022-11-29 11:46:02 +01:00
var body: some View {
NavigationStack(path: $routerPath.path) {
2022-12-31 12:28:27 +01:00
TimelineView(timeline: $timeline, scrollToTopSignal: $scrollToTopSignal)
.withAppRouter()
.withSheetDestinations(sheetDestinations: $routerPath.presentedSheet)
.toolbar {
toolbarView
}
.toolbarBackground(theme.primaryBackgroundColor.opacity(0.50), for: .navigationBar)
.id(client.id)
2022-11-29 11:46:02 +01:00
}
.onAppear {
routerPath.client = client
2023-01-16 14:40:23 +01:00
if !didAppear && canFilterTimeline {
didAppear = true
timeline = client.isAuth ? .home : .federated
}
Task {
await currentAccount.fetchLists()
}
if !client.isAuth {
routerPath.presentedSheet = .addAccount
2023-01-12 06:30:43 +01:00
}
}
.onChange(of: client.isAuth, perform: { isAuth in
timeline = isAuth ? .home : .federated
})
.onChange(of: currentAccount.account?.id, perform: { _ in
timeline = client.isAuth && canFilterTimeline ? .home : .federated
})
2022-12-24 11:50:05 +01:00
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
if popToRootTab == .timeline {
if routerPath.path.isEmpty {
2022-12-31 12:28:27 +01:00
scrollToTopSignal += 1
} else {
routerPath.path = []
2022-12-31 12:28:27 +01:00
}
2022-12-24 11:50:05 +01:00
}
}
.onChange(of: currentAccount.account?.id) { _ in
routerPath.path = []
}
.withSafariRouter()
.environmentObject(routerPath)
2022-11-29 11:46:02 +01:00
}
2023-01-17 11:36:01 +01:00
@ViewBuilder
private var timelineFilterButton: some View {
2023-01-01 18:31:23 +01:00
ForEach(TimelineFilter.availableTimeline(client: client), id: \.self) { timeline in
Button {
self.timeline = timeline
} label: {
Label(timeline.localizedTitle(), systemImage: timeline.iconName() ?? "")
}
}
if !currentAccount.lists.isEmpty {
let sortedLists = currentAccount.lists.sorted { $0.title.lowercased() < $1.title.lowercased() }
Menu("timeline.filter.lists") {
ForEach(sortedLists) { list in
Button {
timeline = .list(list: list)
} label: {
Label(list.title, systemImage: "list.bullet")
}
}
}
}
2023-01-17 11:36:01 +01:00
2023-01-04 18:37:58 +01:00
if !currentAccount.tags.isEmpty {
let sortedTags = currentAccount.tags.sorted { $0.name.lowercased() < $1.name.lowercased() }
Menu("timeline.filter.tags") {
ForEach(sortedTags) { tag in
2023-01-04 18:37:58 +01:00
Button {
timeline = .hashtag(tag: tag.name, accountId: nil)
} label: {
Label("#\(tag.name)", systemImage: "number")
}
}
}
}
2023-01-22 06:38:30 +01:00
Menu("timeline.filter.local") {
2023-01-06 17:14:34 +01:00
ForEach(preferences.remoteLocalTimelines, id: \.self) { server in
Button {
timeline = .remoteLocal(server: server)
} label: {
Label(server, systemImage: "dot.radiowaves.right")
}
}
2023-01-06 17:14:34 +01:00
Button {
routerPath.presentedSheet = .addRemoteLocalTimeline
2023-01-06 17:14:34 +01:00
} label: {
Label("timeline.filter.add-local", systemImage: "badge.plus.radiowaves.right")
2023-01-06 17:14:34 +01:00
}
}
}
2023-01-17 11:36:01 +01:00
private var addAccountButton: some View {
Button {
routerPath.presentedSheet = .addAccount
} label: {
Image(systemName: "person.badge.plus")
}
}
2023-01-17 11:36:01 +01:00
@ToolbarContentBuilder
private var toolbarView: some ToolbarContent {
2023-01-16 14:40:23 +01:00
if canFilterTimeline {
ToolbarTitleMenu {
timelineFilterButton
}
}
if client.isAuth {
2023-01-16 22:01:04 +01:00
if UIDevice.current.userInterfaceIdiom != .pad {
2023-01-16 21:15:33 +01:00
ToolbarItem(placement: .navigationBarLeading) {
AppAccountsSelectorView(routerPath: routerPath)
.id(currentAccount.account?.id)
2023-01-16 21:15:33 +01:00
}
}
statusEditorToolbarItem(routerPath: routerPath,
visibility: preferences.postVisibility)
} else {
ToolbarItem(placement: .navigationBarTrailing) {
addAccountButton
}
}
switch timeline {
case let .list(list):
ToolbarItem {
Button {
routerPath.presentedSheet = .listEdit(list: list)
} label: {
Image(systemName: "list.bullet")
}
}
case let .remoteLocal(server):
ToolbarItem {
Button {
preferences.remoteLocalTimelines.removeAll(where: { $0 == server })
timeline = client.isAuth ? .home : .federated
} label: {
Image(systemName: "pin.slash")
}
}
default:
ToolbarItem {
EmptyView()
}
}
}
2022-11-29 11:46:02 +01:00
}