NetNewsWire/iOS/Settings/Account/SettingsAddAccountView.swift

52 lines
1.5 KiB
Swift
Raw Normal View History

2019-06-11 23:59:16 +02:00
//
// SettingsAddAccountView.swift
// NetNewsWire-iOS
//
// Created by Maurice Parker on 6/11/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import SwiftUI
2019-06-13 21:30:56 +02:00
import Account
2019-06-11 23:59:16 +02:00
struct SettingsAddAccountView : View {
@Environment(\.presentationMode) var presentation
2019-09-16 18:35:09 +02:00
@State private var accountAddAction: Int? = nil
2019-06-11 23:59:16 +02:00
var body: some View {
Form {
2019-09-16 18:35:09 +02:00
NavigationLink(destination: SettingsLocalAccountView(name: ""), tag: 1, selection: $accountAddAction) {
SettingsAccountLabelView(accountImage: "accountLocal", accountLabel: Account.defaultLocalAccountName)
}
2019-09-16 18:35:09 +02:00
.modifier(VibrantSelectAction(action: {
self.accountAddAction = 1
}))
NavigationLink(destination: SettingsFeedbinAccountView(viewModel: SettingsFeedbinAccountView.ViewModel()), tag: 2, selection: $accountAddAction) {
SettingsAccountLabelView(accountImage: "accountFeedbin", accountLabel: "Feedbin")
}
2019-09-16 18:35:09 +02:00
.modifier(VibrantSelectAction(action: {
self.accountAddAction = 2
}))
NavigationLink(destination: SettingsReaderAPIAccountView(viewModel: SettingsReaderAPIAccountView.ViewModel(accountType: .freshRSS)), tag: 3, selection: $accountAddAction) {
SettingsAccountLabelView(accountImage: "accountFreshRSS", accountLabel: "Fresh RSS")
}
2019-09-16 18:35:09 +02:00
.modifier(VibrantSelectAction(action: {
self.accountAddAction = 3
}))
2019-06-11 23:59:16 +02:00
}
.navigationBarTitle(Text("Add Account"), displayMode: .inline)
}
}
#if DEBUG
struct AddAccountView_Previews : PreviewProvider {
static var previews: some View {
SettingsAddAccountView()
}
}
#endif