mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-14 12:31:00 +00:00
102 lines
3 KiB
Swift
102 lines
3 KiB
Swift
|
// Copyright © 2020 Metabolist. All rights reserved.
|
||
|
|
||
|
import SwiftUI
|
||
|
import ViewModels
|
||
|
|
||
|
struct ReportView: View {
|
||
|
@StateObject var viewModel: ReportViewModel
|
||
|
|
||
|
@Environment(\.presentationMode) private var presentationMode
|
||
|
fileprivate var dismissHostingController: (() -> Void)?
|
||
|
|
||
|
var body: some View {
|
||
|
Form {
|
||
|
if let statusViewModel = viewModel.statusViewModel {
|
||
|
Section {
|
||
|
ReportStatusView(viewModel: statusViewModel)
|
||
|
.frame(height: Self.statusHeight)
|
||
|
}
|
||
|
}
|
||
|
Section {
|
||
|
Text("report.hint")
|
||
|
ZStack(alignment: .leading) {
|
||
|
if viewModel.elements.comment.isEmpty {
|
||
|
Text("report.placeholder").foregroundColor(.secondary)
|
||
|
}
|
||
|
TextEditor(text: $viewModel.elements.comment)
|
||
|
}
|
||
|
if !viewModel.isLocalAccount {
|
||
|
VStack(alignment: .leading) {
|
||
|
Text("report.forward.hint")
|
||
|
Toggle("report.forward-\(viewModel.accountHost)", isOn: $viewModel.elements.forward)
|
||
|
}
|
||
|
}
|
||
|
Group {
|
||
|
if viewModel.loading {
|
||
|
ProgressView()
|
||
|
} else {
|
||
|
Button("submit") {
|
||
|
viewModel.report()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.alertItem($viewModel.alertItem)
|
||
|
.onReceive(viewModel.events) {
|
||
|
switch $0 {
|
||
|
case .reported:
|
||
|
dismiss()
|
||
|
}
|
||
|
}
|
||
|
.navigationTitle("report.target-\(viewModel.accountName)")
|
||
|
.toolbar {
|
||
|
ToolbarItem(placement: .cancellationAction) {
|
||
|
Button {
|
||
|
dismiss()
|
||
|
} label: {
|
||
|
Image(systemName: "xmark.circle.fill")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.navigationBarTitleDisplayMode(.inline)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private extension ReportView {
|
||
|
static let statusHeight: CGFloat = 100
|
||
|
|
||
|
func dismiss() {
|
||
|
if let dismissHostingController = dismissHostingController {
|
||
|
dismissHostingController()
|
||
|
} else {
|
||
|
presentationMode.wrappedValue.dismiss()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class ReportViewController: UIHostingController<ReportView> {
|
||
|
init(viewModel: ReportViewModel) {
|
||
|
super.init(rootView: ReportView(viewModel: viewModel))
|
||
|
|
||
|
rootView.dismissHostingController = { [weak self] in self?.dismiss(animated: true) }
|
||
|
}
|
||
|
|
||
|
@available(*, unavailable)
|
||
|
@objc required dynamic init?(coder aDecoder: NSCoder) {
|
||
|
fatalError("init(coder:) has not been implemented")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#if DEBUG
|
||
|
import PreviewViewModels
|
||
|
|
||
|
struct ReportView_Previews: PreviewProvider {
|
||
|
static var previews: some View {
|
||
|
NavigationView {
|
||
|
ReportView(viewModel: .preview)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#endif
|