IceCubesApp/IceCubesApp/App/Tabs/Tabs.swift

113 lines
3 KiB
Swift
Raw Normal View History

2022-12-27 08:25:26 +00:00
import Account
2023-03-13 12:38:28 +00:00
import DesignSystem
2022-12-27 08:25:26 +00:00
import Explore
2023-01-17 10:36:01 +00:00
import Foundation
import Status
2022-12-27 08:25:26 +00:00
import SwiftUI
@MainActor
enum Tab: Int, Identifiable, Hashable {
case timeline, notifications, mentions, explore, messages, settings, other
2023-01-16 13:40:23 +00:00
case trending, federated, local
case profile
2023-01-17 10:36:01 +00:00
nonisolated var id: Int {
2022-12-27 08:25:26 +00:00
rawValue
}
2023-01-17 10:36:01 +00:00
2022-12-27 08:25:26 +00:00
static func loggedOutTab() -> [Tab] {
[.timeline, .settings]
}
2023-01-17 10:36:01 +00:00
2022-12-27 08:25:26 +00:00
static func loggedInTabs() -> [Tab] {
2023-01-16 13:40:23 +00:00
if UIDevice.current.userInterfaceIdiom == .pad || UIDevice.current.userInterfaceIdiom == .mac {
return [.timeline, .trending, .federated, .local, .notifications, .mentions, .explore, .messages, .settings]
2023-01-16 13:40:23 +00:00
} else {
return [.timeline, .notifications, .explore, .messages, .profile]
2023-01-16 13:40:23 +00:00
}
2022-12-27 08:25:26 +00:00
}
2023-01-17 10:36:01 +00:00
2022-12-27 08:25:26 +00:00
@ViewBuilder
func makeContentView(popToRootTab: Binding<Tab>) -> some View {
switch self {
case .timeline:
TimelineTab(popToRootTab: popToRootTab)
2023-01-16 13:40:23 +00:00
case .trending:
TimelineTab(popToRootTab: popToRootTab, timeline: .trending)
case .local:
TimelineTab(popToRootTab: popToRootTab, timeline: .local)
case .federated:
TimelineTab(popToRootTab: popToRootTab, timeline: .federated)
2022-12-27 08:25:26 +00:00
case .notifications:
2023-01-29 16:59:04 +00:00
NotificationsTab(popToRootTab: popToRootTab, lockedType: nil)
case .mentions:
2023-01-29 16:59:04 +00:00
NotificationsTab(popToRootTab: popToRootTab, lockedType: .mention)
2022-12-27 08:25:26 +00:00
case .explore:
ExploreTab(popToRootTab: popToRootTab)
case .messages:
MessagesTab(popToRootTab: popToRootTab)
2022-12-27 08:25:26 +00:00
case .settings:
2023-01-10 05:58:50 +00:00
SettingsTabs(popToRootTab: popToRootTab)
case .profile:
ProfileTab(popToRootTab: popToRootTab)
case .other:
2022-12-27 08:25:26 +00:00
EmptyView()
}
}
2023-01-17 10:36:01 +00:00
2022-12-27 08:25:26 +00:00
@ViewBuilder
var label: some View {
switch self {
case .timeline:
Label("tab.timeline", systemImage: iconName)
2023-01-16 13:40:23 +00:00
case .trending:
Label("tab.trending", systemImage: iconName)
2023-01-16 13:40:23 +00:00
case .local:
Label("tab.local", systemImage: iconName)
2023-01-16 13:40:23 +00:00
case .federated:
Label("tab.federated", systemImage: iconName)
2022-12-27 08:25:26 +00:00
case .notifications:
Label("tab.notifications", systemImage: iconName)
case .mentions:
Label("tab.notifications", systemImage: iconName)
2022-12-27 08:25:26 +00:00
case .explore:
Label("tab.explore", systemImage: iconName)
case .messages:
Label("tab.messages", systemImage: iconName)
2022-12-27 08:25:26 +00:00
case .settings:
Label("tab.settings", systemImage: iconName)
case .profile:
Label("tab.profile", systemImage: iconName)
case .other:
2022-12-27 08:25:26 +00:00
EmptyView()
}
}
2023-01-17 10:36:01 +00:00
2023-01-16 13:40:23 +00:00
var iconName: String {
switch self {
case .timeline:
return "rectangle.stack"
2023-01-16 13:40:23 +00:00
case .trending:
return "chart.line.uptrend.xyaxis"
case .local:
return "person.2"
case .federated:
return "globe.americas"
case .notifications:
return "bell"
case .mentions:
return "at"
2023-01-16 13:40:23 +00:00
case .explore:
return "magnifyingglass"
case .messages:
return "tray"
case .settings:
return "gear"
case .profile:
return "person.crop.circle"
case .other:
2023-01-16 13:40:23 +00:00
return ""
}
}
2022-12-27 08:25:26 +00:00
}