226 lines
7.7 KiB
Swift
226 lines
7.7 KiB
Swift
//
|
|
// https://mczachurski.dev
|
|
// Copyright © 2022 Marcin Czachurski and the repository contributors.
|
|
// Licensed under the MIT License.
|
|
//
|
|
|
|
import SwiftUI
|
|
import UIKit
|
|
import CoreData
|
|
import MastodonKit
|
|
|
|
struct MainView: View {
|
|
enum Sheet: String, Identifiable {
|
|
case settings, compose
|
|
var id: String { rawValue }
|
|
}
|
|
|
|
@Environment(\.managedObjectContext) private var viewContext
|
|
@EnvironmentObject var applicationState: ApplicationState
|
|
@EnvironmentObject var routerPath: RouterPath
|
|
|
|
@State private var navBarTitle: String = "Home"
|
|
@State private var viewMode: ViewMode = .home {
|
|
didSet {
|
|
self.navBarTitle = self.getViewTitle(viewMode: viewMode)
|
|
}
|
|
}
|
|
|
|
@FetchRequest(sortDescriptors: [SortDescriptor(\.acct, order: .forward)]) var dbAccounts: FetchedResults<AccountData>
|
|
|
|
private enum ViewMode {
|
|
case home, local, federated, profile, notifications, trending
|
|
}
|
|
|
|
var body: some View {
|
|
self.getMainView()
|
|
.navigationBarTitle(navBarTitle)
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
.toolbar {
|
|
self.getLeadingToolbar()
|
|
self.getPrincipalToolbar()
|
|
self.getTrailingToolbar()
|
|
}
|
|
}
|
|
|
|
@ViewBuilder
|
|
private func getMainView() -> some View {
|
|
switch self.viewMode {
|
|
case .home:
|
|
HomeFeedView(accountId: applicationState.accountData?.id ?? String.empty())
|
|
.id(applicationState.accountData?.id ?? String.empty())
|
|
case .trending:
|
|
TrendStatusesView(accountId: applicationState.accountData?.id ?? String.empty())
|
|
.id(applicationState.accountData?.id ?? String.empty())
|
|
case .local:
|
|
StatusesView(listType: .local)
|
|
.id(applicationState.accountData?.id ?? String.empty())
|
|
case .federated:
|
|
StatusesView(listType: .federated)
|
|
.id(applicationState.accountData?.id ?? String.empty())
|
|
case .profile:
|
|
if let accountData = self.applicationState.accountData {
|
|
UserProfileView(accountId: accountData.id,
|
|
accountDisplayName: accountData.displayName,
|
|
accountUserName: accountData.acct)
|
|
.id(applicationState.accountData?.id ?? String.empty())
|
|
}
|
|
case .notifications:
|
|
if let accountData = self.applicationState.accountData {
|
|
NotificationsView(accountId: accountData.id)
|
|
.id(applicationState.accountData?.id ?? String.empty())
|
|
}
|
|
}
|
|
}
|
|
|
|
@ToolbarContentBuilder
|
|
private func getPrincipalToolbar() -> some ToolbarContent {
|
|
ToolbarItem(placement: .principal) {
|
|
Menu {
|
|
Button {
|
|
viewMode = .home
|
|
} label: {
|
|
HStack {
|
|
Text(self.getViewTitle(viewMode: .home))
|
|
Image(systemName: "house")
|
|
}
|
|
}
|
|
|
|
Button {
|
|
viewMode = .trending
|
|
} label: {
|
|
HStack {
|
|
Text(self.getViewTitle(viewMode: .trending))
|
|
Image(systemName: "chart.line.uptrend.xyaxis")
|
|
}
|
|
}
|
|
|
|
Button {
|
|
viewMode = .local
|
|
} label: {
|
|
HStack {
|
|
Text(self.getViewTitle(viewMode: .local))
|
|
Image(systemName: "text.redaction")
|
|
}
|
|
}
|
|
|
|
Button {
|
|
viewMode = .federated
|
|
} label: {
|
|
HStack {
|
|
Text(self.getViewTitle(viewMode: .federated))
|
|
Image(systemName: "globe.europe.africa")
|
|
}
|
|
}
|
|
|
|
Divider()
|
|
|
|
Button {
|
|
viewMode = .profile
|
|
} label: {
|
|
HStack {
|
|
Text(self.getViewTitle(viewMode: .profile))
|
|
Image(systemName: "person")
|
|
}
|
|
}
|
|
|
|
Button {
|
|
viewMode = .notifications
|
|
} label: {
|
|
HStack {
|
|
Text(self.getViewTitle(viewMode: .notifications))
|
|
Image(systemName: "bell.badge")
|
|
}
|
|
}
|
|
} label: {
|
|
HStack {
|
|
Text(navBarTitle)
|
|
.font(.headline)
|
|
Image(systemName: "chevron.down")
|
|
.font(.subheadline)
|
|
}
|
|
.frame(width: 150)
|
|
.foregroundColor(.mainTextColor)
|
|
}
|
|
}
|
|
}
|
|
|
|
@ToolbarContentBuilder
|
|
private func getLeadingToolbar() -> some ToolbarContent {
|
|
ToolbarItem(placement: .navigationBarLeading) {
|
|
Menu {
|
|
ForEach(self.dbAccounts) { account in
|
|
Button {
|
|
self.applicationState.accountData = account
|
|
ApplicationSettingsHandler.shared.setAccountAsDefault(accountData: account)
|
|
} label: {
|
|
if self.applicationState.accountData?.id == account.id {
|
|
Label(account.displayName ?? account.acct, systemImage: "checkmark")
|
|
} else {
|
|
Text(account.displayName ?? account.acct)
|
|
}
|
|
}
|
|
}
|
|
|
|
Divider()
|
|
|
|
Button {
|
|
self.routerPath.presentedSheet = .settings
|
|
} label: {
|
|
Label("Settings", systemImage: "gear")
|
|
}
|
|
} label: {
|
|
if let avatarData = self.applicationState.accountData?.avatarData, let uiImage = UIImage(data: avatarData) {
|
|
Image(uiImage: uiImage)
|
|
.resizable()
|
|
.clipShape(self.applicationState.avatarShape.shape())
|
|
.frame(width: 32.0, height: 32.0)
|
|
} else {
|
|
Image(systemName: "person")
|
|
.resizable()
|
|
.frame(width: 16, height: 16)
|
|
.foregroundColor(.white)
|
|
.padding(8)
|
|
.background(Color.lightGrayColor)
|
|
.clipShape(AvatarShape.circle.shape())
|
|
.background(
|
|
AvatarShape.circle.shape()
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@ToolbarContentBuilder
|
|
private func getTrailingToolbar() -> some ToolbarContent {
|
|
if viewMode == .local || viewMode == .home || viewMode == .federated {
|
|
ToolbarItem(placement: .navigationBarTrailing) {
|
|
Button {
|
|
self.routerPath.presentedSheet = .newStatusEditor
|
|
} label: {
|
|
Image(systemName: "square.and.pencil")
|
|
.tint(.mainTextColor)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private func getViewTitle(viewMode: ViewMode) -> String {
|
|
switch viewMode {
|
|
case .home:
|
|
return "Home"
|
|
case .trending:
|
|
return "Trending"
|
|
case .local:
|
|
return "Local"
|
|
case .federated:
|
|
return "Federated"
|
|
case .profile:
|
|
return "Profile"
|
|
case .notifications:
|
|
return "Notifications"
|
|
}
|
|
}
|
|
}
|
|
|