// Created by Ruben Beltran del Rio on 2/1/21.
//
+import Combine
import CoreData
import SwiftUI
+class SaveTimer {
+ let currentTimePublisher = Timer.TimerPublisher(interval: 1, runLoop: .main, mode: .default)
+ let cancellable: AnyCancellable?
+
+ init() {
+ self.cancellable = currentTimePublisher.connect() as? AnyCancellable
+ }
+
+ deinit {
+ self.cancellable?.cancel()
+ }
+}
+
+let timer = SaveTimer()
+
struct MapDetailView: View {
@Environment(\.managedObjectContext) private var viewContext
@Environment(\.colorScheme) var colorScheme
MapColor.colorForScheme(colorScheme)
}
- private var title: Binding<String> {
- Binding(
- get: { map.title ?? "" },
- set: { title in
- map.title = title
- }
- )
- }
-
- private var content: Binding<String> {
- Binding(
- get: { map.content ?? "" },
- set: { content in
- map.content = content
- }
- )
- }
+ @State var title: String
+ @State var content: String
var body: some View {
if map.uuid != nil {
VStack {
HStack {
TextField(
- "Title", text: title,
- onCommit: {
- try? viewContext.save()
- }
+ "Title", text: $title
).font(.title2).textFieldStyle(PlainTextFieldStyle()).padding(.vertical, 4.0).padding(
.leading, 4.0)
Button(action: saveText) {
EvolutionPicker()
ZStack(alignment: .topLeading) {
- MapTextEditor(text: content, colorScheme: colorScheme).onChange(of: map.content) { _ in
- try? viewContext.save()
- }
- .background(mapColor.background)
- .foregroundColor(mapColor.foreground)
- .frame(minHeight: 96.0)
+ MapTextEditor(text: $content, colorScheme: colorScheme)
+ .background(mapColor.background)
+ .foregroundColor(mapColor.foreground)
+ .frame(minHeight: 96.0)
}.padding(.top, 8.0).padding(.leading, 8.0).background(mapColor.background).cornerRadius(
5.0)
}.padding(.horizontal, 8.0)
ScrollView([.horizontal, .vertical]) {
- MapRenderView(
- content: content.wrappedValue, evolution: Stage.stages(store.state.selectedEvolution))
+ SlowMapRender(
+ content: content, evolution: Stage.stages(store.state.selectedEvolution),
+ colorScheme: colorScheme)
}.background(mapColor.background)
+ }.onReceive(timer.currentTimePublisher) { _ in
+ saveModel()
+ }.onDisappear {
+ saveModel()
}
} else {
DefaultMapView()
}
}
+ private func saveModel() {
+ map.content = content
+ map.title = title
+ try? viewContext.save()
+ }
+
private func saveText() {
store.send(.exportMapAsText(map: map))
}
struct MapDetailView_Previews: PreviewProvider {
static var previews: some View {
- MapDetailView(map: Map()).environment(
+ MapDetailView(map: Map(), title: "", content: "").environment(
\.managedObjectContext, PersistenceController.preview.container.viewContext)
}
}