metatext/macOS/View Models/SidebarNavigationViewModel.swift
2020-08-07 23:01:45 -07:00

52 lines
1.4 KiB
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import Combine
class SidebarNavigationViewModel: ObservableObject {
@Published private(set) var identity: Identity
@Published var alertItem: AlertItem?
var selectedTab: Tab? = .timelines
private let identityRepository: IdentityRepository
private var cancellables = Set<AnyCancellable>()
init(identityRepository: IdentityRepository) {
self.identityRepository = identityRepository
identity = identityRepository.identity
identityRepository.$identity.dropFirst().assign(to: &$identity)
}
}
extension SidebarNavigationViewModel {
enum Tab: CaseIterable {
case timelines
case search
case notifications
case messages
}
}
extension SidebarNavigationViewModel.Tab {
var title: String {
switch self {
case .timelines: return "Timelines"
case .search: return "Search"
case .notifications: return "Notifications"
case .messages: return "Messages"
}
}
var systemImageName: String {
switch self {
case .timelines: return "scroll"
case .search: return "magnifyingglass"
case .notifications: return "bell"
case .messages: return "envelope"
}
}
}
extension SidebarNavigationViewModel.Tab: Identifiable {
var id: Self { self }
}