125 lines
4.0 KiB
Swift
125 lines
4.0 KiB
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
import Combine
|
|
import HTTP
|
|
import Mastodon
|
|
import MastodonStubs
|
|
import ServiceLayer
|
|
import ServiceLayerMocks
|
|
|
|
// swiftlint:disable force_try
|
|
private let decoder = APIDecoder()
|
|
private var cancellables = Set<AnyCancellable>()
|
|
private let devInstanceURL = URL(string: "https://mastodon.social")!
|
|
private let devIdentityID = UUID(uuidString: "E621E1F8-C36C-495A-93FC-0C247A3E6E5F")!
|
|
private let devAccessToken = "DEVELOPMENT_ACCESS_TOKEN"
|
|
|
|
extension Account {
|
|
static let development = try! decoder.decode(Account.self,
|
|
from: AccountEndpoint.verifyCredentials.data(url: devInstanceURL)!)
|
|
}
|
|
|
|
extension Instance {
|
|
static let development = try! decoder.decode(Instance.self,
|
|
from: InstanceEndpoint.instance.data(url: devInstanceURL)!)
|
|
}
|
|
|
|
extension AppEnvironment {
|
|
static let development = AppEnvironment(
|
|
session: Session(configuration: .stubbing),
|
|
webAuthSessionType: SuccessfulMockWebAuthSession.self,
|
|
keychainServiceType: MockKeychainService.self,
|
|
userDefaults: MockUserDefaults(),
|
|
inMemoryContent: true)
|
|
}
|
|
|
|
extension AllIdentitiesService {
|
|
static let fresh = try! AllIdentitiesService(environment: .development)
|
|
|
|
static var development: Self = {
|
|
let allIdentitiesService = try! AllIdentitiesService(environment: .development)
|
|
|
|
allIdentitiesService.authorizeIdentity(id: devIdentityID, instanceURL: devInstanceURL)
|
|
.receive(on: ImmediateScheduler.shared)
|
|
.sink { _ in } receiveValue: { _ in }
|
|
.store(in: &cancellables)
|
|
|
|
// let identityService = try! allIdentitiesService.identityService(id: devIdentityID)
|
|
//
|
|
// identityService.verifyCredentials()
|
|
// .receive(on: ImmediateScheduler.shared)
|
|
// .sink { _ in } receiveValue: { _ in }
|
|
// .store(in: &cancellables)
|
|
//
|
|
// identityService.refreshInstance()
|
|
// .receive(on: ImmediateScheduler.shared)
|
|
// .sink { _ in } receiveValue: { _ in }
|
|
// .store(in: &cancellables)
|
|
|
|
return allIdentitiesService
|
|
} ()
|
|
}
|
|
|
|
extension IdentityService {
|
|
static let development = try! AllIdentitiesService.development.identityService(id: devIdentityID)
|
|
}
|
|
|
|
extension UserNotificationService {
|
|
static let development = UserNotificationService(userNotificationCenter: .current())
|
|
}
|
|
|
|
extension RootViewModel {
|
|
static let development = RootViewModel(
|
|
appDelegate: AppDelegate(),
|
|
allIdentitiesService: .development,
|
|
userNotificationService: .development)
|
|
}
|
|
|
|
extension AddIdentityViewModel {
|
|
static let development = RootViewModel.development.addIdentityViewModel()
|
|
}
|
|
|
|
extension TabNavigationViewModel {
|
|
static let development = RootViewModel.development.tabNavigationViewModel!
|
|
}
|
|
|
|
extension SecondaryNavigationViewModel {
|
|
static let development = TabNavigationViewModel.development.secondaryNavigationViewModel()
|
|
}
|
|
|
|
extension IdentitiesViewModel {
|
|
static let development = IdentitiesViewModel(identityService: .development)
|
|
}
|
|
|
|
extension ListsViewModel {
|
|
static let development = ListsViewModel(identityService: .development)
|
|
}
|
|
|
|
extension PreferencesViewModel {
|
|
static let development = PreferencesViewModel(identityService: .development)
|
|
}
|
|
|
|
extension PostingReadingPreferencesViewModel {
|
|
static let development = PostingReadingPreferencesViewModel(identityService: .development)
|
|
}
|
|
|
|
extension NotificationTypesPreferencesViewModel {
|
|
static let development = NotificationTypesPreferencesViewModel(identityService: .development)
|
|
}
|
|
|
|
extension FiltersViewModel {
|
|
static let development = FiltersViewModel(identityService: .development)
|
|
}
|
|
|
|
extension EditFilterViewModel {
|
|
static let development = EditFilterViewModel(filter: Filter.new, identityService: .development)
|
|
}
|
|
|
|
extension StatusListViewModel {
|
|
static let development = StatusListViewModel(
|
|
statusListService: IdentityService.development.service(timeline: .home))
|
|
}
|
|
|
|
// swiftlint:enable force_try
|