Working local file save
This commit is contained in:
parent
484a4698fa
commit
5222b48fc6
@ -18,7 +18,10 @@ class FileLogbookRepository: LogbookRepository {
|
|||||||
try {
|
try {
|
||||||
listener.onLogbookLoaded(loadLogbook(context))
|
listener.onLogbookLoaded(loadLogbook(context))
|
||||||
} catch (e: FileNotFoundException) {
|
} catch (e: FileNotFoundException) {
|
||||||
Log.d(TAG, "No logbook file found, will be created at first save")
|
Log.d(TAG, "No logbook file found, create one")
|
||||||
|
val newLogbook = Logbook()
|
||||||
|
saveLogbook(context, newLogbook)
|
||||||
|
listener.onLogbookLoaded(newLogbook)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -40,12 +43,16 @@ class FileLogbookRepository: LogbookRepository {
|
|||||||
logbook: Logbook,
|
logbook: Logbook,
|
||||||
listener: LogbookSavedListener
|
listener: LogbookSavedListener
|
||||||
) {
|
) {
|
||||||
|
saveLogbook(context, logbook)
|
||||||
|
listener.onLogbookSaved()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveLogbook(context: Context, logbook: Logbook) {
|
||||||
val file = File(context.getFilesDir(), "data.json")
|
val file = File(context.getFilesDir(), "data.json")
|
||||||
val ja = JSONArray()
|
val ja = JSONArray()
|
||||||
for (l in logbook.logs) {
|
for (l in logbook.logs) {
|
||||||
ja.put(l.toJson())
|
ja.put(l.toJson())
|
||||||
}
|
}
|
||||||
file.writeText(ja.toString())
|
file.writeText(ja.toString())
|
||||||
listener.onLogbookSaved()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user