From 0903e39dae1f9cf294a1abc7b9425fae25d24fb7 Mon Sep 17 00:00:00 2001 From: anthonycicc Date: Sat, 12 May 2018 16:25:00 -0400 Subject: [PATCH] Added saving/loading --- lib/Entry.dart | 4 ++-- lib/FileLoader.dart | 36 ++++++++++++++++++++++++++++++++++++ lib/NoZeroDays.dart | 31 ++++++++++++++++++++++++++++++- nomorezerodays.iml | 1 + pubspec.lock | 8 ++++++++ pubspec.yaml | 2 ++ 6 files changed, 79 insertions(+), 3 deletions(-) create mode 100644 lib/FileLoader.dart diff --git a/lib/Entry.dart b/lib/Entry.dart index 2e4cf43..14602f4 100644 --- a/lib/Entry.dart +++ b/lib/Entry.dart @@ -7,12 +7,12 @@ class Entry { Entry(this.date, this.whatYouDid); Entry.fromJson(Map json) - : date = json['date'], + : date = DateTime.parse(json['date']), whatYouDid = json['whatyoudid']; Map toJson() => { - 'date': date, + 'date': date.toString(), 'whatyoudid': whatYouDid, }; diff --git a/lib/FileLoader.dart b/lib/FileLoader.dart new file mode 100644 index 0000000..c09ba7f --- /dev/null +++ b/lib/FileLoader.dart @@ -0,0 +1,36 @@ +import 'dart:async'; +import 'dart:io'; + +import 'package:path_provider/path_provider.dart'; + +class FileLoader { + Future get _localPath async { + final directory = await getApplicationDocumentsDirectory(); + + return directory.path; + } + + Future get _localFile async { + final path = await _localPath; + return new File('$path/days.json'); + } + + Future writeFile(String data) async { + final file = await _localFile; + + return file.writeAsString(data); + } + + Future readFile() async { + try { + final file = await _localFile; + + String contents = await file.readAsString(); + + return contents; + } catch (e) { + throw OSError("File not found"); + } + } + +} \ No newline at end of file diff --git a/lib/NoZeroDays.dart b/lib/NoZeroDays.dart index 9e3abf4..9b38f84 100644 --- a/lib/NoZeroDays.dart +++ b/lib/NoZeroDays.dart @@ -1,7 +1,9 @@ import 'dart:async'; +import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:nomorezerodays/Entry.dart'; +import 'package:nomorezerodays/FileLoader.dart'; class NoZeroDays extends StatefulWidget { NoZeroDays({Key key, this.title}) : super(key: key); @@ -86,7 +88,6 @@ class _NoZeroDaysState extends State { .add(new Entry(newValue, entry.whatYouDid)); }); } - ; Navigator.pop(context); }).catchError((err) { Scaffold.of(context).showSnackBar( @@ -121,6 +122,30 @@ class _NoZeroDaysState extends State { })); } + void _save() { + FileLoader f = new FileLoader(); + + f.writeFile(json.encode(_zerodayslist)); + + } + + void _load() { + FileLoader f = new FileLoader(); + + f.readFile().then((s) { + print(s); + setState(() { + List newList = []; + List tempList = json.decode(s); + + for (var i = 0; i < tempList.length; ++i) { + newList.add(Entry.fromJson(tempList[i])); + } + _zerodayslist = newList; + }); + }); + } + @override Widget build(BuildContext context) { // This method is rerun every time setState is called, for instance as done @@ -132,6 +157,10 @@ class _NoZeroDaysState extends State { return new Scaffold( appBar: new AppBar( title: new Text(widget.title), + actions: [ + new IconButton(icon: new Icon(Icons.save), onPressed: _save), + new IconButton(icon: new Icon(Icons.file_upload), onPressed: _load), + ] ), body: new Scaffold(body: new ListView.builder( itemBuilder: (context, entry) { diff --git a/nomorezerodays.iml b/nomorezerodays.iml index 75734c9..d2ff793 100644 --- a/nomorezerodays.iml +++ b/nomorezerodays.iml @@ -10,5 +10,6 @@ + \ No newline at end of file diff --git a/pubspec.lock b/pubspec.lock index 8db2a6f..a786504 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -214,6 +214,13 @@ packages: url: "https://pub.dartlang.org" source: hosted version: "1.5.1" + path_provider: + dependency: "direct main" + description: + name: path_provider + url: "https://pub.dartlang.org" + source: hosted + version: "0.4.0" plugin: dependency: transitive description: @@ -375,3 +382,4 @@ packages: version: "2.1.13" sdks: dart: ">=2.0.0-dev.52.0 <=2.0.0-edge.af1436931b93e755d38223c487d33a0a1f5eadf5" + flutter: ">=0.1.4 <2.0.0" diff --git a/pubspec.yaml b/pubspec.yaml index fe38ab6..a8b14c1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -10,6 +10,8 @@ dependencies: # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^0.1.0 + path_provider: ^0.4.0 + dev_dependencies: flutter_test: sdk: flutter