NetNewsWire/Multiplatform/Shared/Add/AddWebFeedView.swift

213 lines
5.3 KiB
Swift
Raw Normal View History

2020-07-03 14:31:48 +02:00
//
// AddWebFeedView.swift
2020-07-03 14:31:48 +02:00
// NetNewsWire
//
// Created by Stuart Breckenridge on 3/7/20.
// Copyright © 2020 Ranchero Software. All rights reserved.
//
import SwiftUI
import Account
import RSCore
struct AddWebFeedView: View {
2020-07-03 14:31:48 +02:00
@Environment(\.presentationMode) private var presentationMode
2020-07-09 11:36:17 +02:00
@StateObject private var viewModel = AddWebFeedModel()
2020-07-03 14:31:48 +02:00
@ViewBuilder var body: some View {
#if os(iOS)
iosForm
.onAppear {
viewModel.pasteUrlFromPasteboard()
}
.onReceive(viewModel.$shouldDismiss, perform: { dismiss in
if dismiss == true {
presentationMode.wrappedValue.dismiss()
}
})
2020-07-03 14:31:48 +02:00
#else
macForm
.onAppear {
viewModel.pasteUrlFromPasteboard()
2020-07-03 14:31:48 +02:00
}.alert(isPresented: $viewModel.showError) {
2020-07-09 11:36:17 +02:00
Alert(title: Text("Oops"),
message: Text(viewModel.addFeedError!.localizedDescription),
dismissButton: Alert.Button.cancel({
viewModel.addFeedError = AddWebFeedError.none
2020-07-03 14:31:48 +02:00
}))
}.onReceive(viewModel.$shouldDismiss, perform: { dismiss in
if dismiss == true {
presentationMode.wrappedValue.dismiss()
}
})
2020-07-03 14:31:48 +02:00
#endif
}
#if os(macOS)
var macForm: some View {
Form {
HStack {
Spacer()
Image(rsImage: AppAssets.faviconTemplateImage)
.resizable()
.renderingMode(.template)
.frame(width: 30, height: 30)
Text("Add a Web Feed")
.font(.title)
Spacer()
}.padding()
LazyVGrid(columns: [GridItem(.fixed(75), spacing: 10, alignment: .trailing),GridItem(.fixed(400), spacing: 0, alignment: .leading) ], alignment: .leading, spacing: 10, pinnedViews: [], content:{
Text("URL:").bold()
urlTextField
.textFieldStyle(RoundedBorderTextFieldStyle())
.help("The URL of the feed you want to add.")
Text("Name:").bold()
providedNameTextField
.textFieldStyle(RoundedBorderTextFieldStyle())
.help("The name of the feed. (Optional.)")
Text("Folder:").bold()
folderPicker
.help("Pick the folder you want to add the feed to.")
})
2020-07-03 14:31:48 +02:00
buttonStack
}
.frame(maxWidth: 485)
.padding(12)
2020-07-03 14:31:48 +02:00
}
#endif
#if os(iOS)
@ViewBuilder var iosForm: some View {
NavigationView {
List {
urlTextField
providedNameTextField
folderPicker
}
.listStyle(InsetGroupedListStyle())
.navigationBarTitle("Add Web Feed")
.navigationBarTitleDisplayMode(.inline)
.navigationBarItems(leading:
Button("Cancel", action: {
presentationMode.wrappedValue.dismiss()
})
.help("Cancel Add Feed")
, trailing:
2020-07-04 17:08:12 +02:00
HStack(spacing: 12) {
if viewModel.showProgressIndicator == true {
ProgressView()
}
Button("Add", action: {
viewModel.addWebFeed()
})
.disabled(!viewModel.providedURL.mayBeURL)
.help("Add Feed")
}
)
2020-07-03 14:31:48 +02:00
}
}
#endif
@ViewBuilder var urlTextField: some View {
#if os(iOS)
TextField("URL", text: $viewModel.providedURL)
.disableAutocorrection(true)
.autocapitalization(UITextAutocapitalizationType.none)
#else
TextField("URL", text: $viewModel.providedURL)
.disableAutocorrection(true)
#endif
2020-07-03 14:31:48 +02:00
}
var providedNameTextField: some View {
2020-07-09 11:04:04 +02:00
TextField("Title (Optional)", text: $viewModel.providedName)
2020-07-03 14:31:48 +02:00
}
@ViewBuilder var folderPicker: some View {
#if os(iOS)
Picker("Folder", selection: $viewModel.selectedFolderIndex, content: {
2020-07-03 14:31:48 +02:00
ForEach(0..<viewModel.containers.count, id: \.self, content: { index in
if let containerName = (viewModel.containers[index] as? DisplayNameProvider)?.nameForDisplay {
if viewModel.containers[index] is Folder {
HStack(alignment: .top) {
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
2020-07-09 11:36:17 +02:00
Image(rsImage: image)
.foregroundColor(Color("AccentColor"))
}
2020-07-09 11:36:17 +02:00
Text("\(containerName)")
.tag(index)
}.padding(.leading, 16)
2020-07-03 14:31:48 +02:00
} else {
HStack(alignment: .top) {
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
2020-07-09 11:36:17 +02:00
Image(rsImage: image)
.foregroundColor(Color("AccentColor"))
}
2020-07-09 11:36:17 +02:00
Text(containerName)
.tag(index)
}
2020-07-03 14:31:48 +02:00
}
}
})
})
#else
Picker("", selection: $viewModel.selectedFolderIndex, content: {
ForEach(0..<viewModel.containers.count, id: \.self, content: { index in
if let containerName = (viewModel.containers[index] as? DisplayNameProvider)?.nameForDisplay {
if viewModel.containers[index] is Folder {
HStack {
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
Image(rsImage: image)
}
Text("\(containerName)")
2020-07-09 11:36:17 +02:00
}
.padding(.leading, 2)
.tag(index)
} else {
2020-07-09 11:36:17 +02:00
Text(containerName)
.padding(.leading, 2)
.tag(index)
}
}
})
2020-07-09 11:36:17 +02:00
})
.padding(.leading, -8)
#endif
2020-07-03 14:31:48 +02:00
}
var buttonStack: some View {
HStack {
if viewModel.showProgressIndicator == true {
ProgressView()
.frame(width: 25, height: 25)
.help("Adding Feed")
2020-07-03 14:31:48 +02:00
}
Spacer()
Button("Cancel", action: {
presentationMode.wrappedValue.dismiss()
})
.help("Cancel Add Feed")
2020-07-03 14:31:48 +02:00
Button("Add", action: {
viewModel.addWebFeed()
})
2020-07-04 17:08:12 +02:00
.disabled(!viewModel.providedURL.mayBeURL)
.help("Add Feed")
2020-07-09 11:36:17 +02:00
}
.padding(.trailing, 2)
2020-07-03 14:31:48 +02:00
}
}
struct AddFeedView_Previews: PreviewProvider {
static var previews: some View {
AddWebFeedView()
2020-07-03 14:31:48 +02:00
}
}