Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2022-256
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2022-256
2022-256
Commits
72e11618
Commit
72e11618
authored
Sep 28, 2022
by
Nilupul Jayasekara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
implement time frame to record screen
parent
e98ff601
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
276 additions
and
192 deletions
+276
-192
diabeta_app/lib/screens/dashboard_screen.dart
diabeta_app/lib/screens/dashboard_screen.dart
+12
-1
diabeta_app/lib/screens/diabetes/screens/logbook_screen.dart
diabeta_app/lib/screens/diabetes/screens/logbook_screen.dart
+2
-2
diabeta_app/lib/screens/reports/report_screen.dart
diabeta_app/lib/screens/reports/report_screen.dart
+257
-184
diabeta_app/lib/services/glucose_log_service.dart
diabeta_app/lib/services/glucose_log_service.dart
+5
-5
No files found.
diabeta_app/lib/screens/dashboard_screen.dart
View file @
72e11618
...
...
@@ -127,7 +127,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
builder:
(
context
,
AsyncSnapshot
snapshot
)
{
if
(
snapshot
.
hasData
)
{
int
length
=
snapshot
.
data
!.
length
;
return
ListView
(
return
length
>
0
?
ListView
(
shrinkWrap:
true
,
physics:
const
NeverScrollableScrollPhysics
(),
children:
List
.
generate
(
...
...
@@ -152,6 +152,17 @@ class _DashboardScreenState extends State<DashboardScreen> {
);
},
),
):
Padding
(
padding:
const
EdgeInsets
.
only
(
top:
50.0
),
child:
Column
(
children:
[
Container
(
child:
Center
(
child:
Text
(
" No records, yet."
)),),
SizedBox
(
height:
8
,
),
Container
(
child:
Center
(
child:
Text
(
" Add your first record."
)),),
],
),
);
}
else
{
return
const
Center
(
...
...
diabeta_app/lib/screens/diabetes/screens/logbook_screen.dart
View file @
72e11618
...
...
@@ -23,7 +23,7 @@ class _LogbookScreenState extends State<LogbookScreen> {
builder:
(
context
,
AsyncSnapshot
snapshot
)
{
if
(
snapshot
.
hasData
)
{
int
length
=
snapshot
.
data
!.
length
;
return
ListView
(
return
length
>
0
?
ListView
(
shrinkWrap:
true
,
children:
List
.
generate
(
length
,
(
index
)
{
return
Center
(
...
...
@@ -44,7 +44,7 @@ class _LogbookScreenState extends State<LogbookScreen> {
),
);
}),
);
)
:
Container
(
child:
Center
(
child:
Text
(
"No data to display."
),),)
;
}
else
{
return
const
Center
(
child:
CircularProgressIndicator
(),
...
...
diabeta_app/lib/screens/reports/report_screen.dart
View file @
72e11618
This diff is collapsed.
Click to expand it.
diabeta_app/lib/services/glucose_log_service.dart
View file @
72e11618
...
...
@@ -206,7 +206,7 @@ class GlucoseLogService {
}
static
Future
<
List
<
LogEntry
>>
getRecordsByTimeFrame
(
String
accountId
,
String
period
)
async
{
String
accountId
,
String
period
,
{
bool
isDecending
=
true
}
)
async
{
List
<
LogEntry
>
recordList
=
[];
DateTime
date
=
DateTime
.
now
();
...
...
@@ -218,7 +218,7 @@ class GlucoseLogService {
.
where
(
"userId"
,
isEqualTo:
accountId
)
.
where
(
"dateTime"
,
isGreaterThanOrEqualTo:
Timestamp
.
fromDate
(
firstDayOfWeek
))
.
orderBy
(
"dateTime"
,
descending:
true
)
.
orderBy
(
"dateTime"
,
descending:
isDecending
)
.
get
()
.
then
((
QuerySnapshot
querySnapshot
)
{
querySnapshot
.
docs
.
forEach
((
doc
)
{
...
...
@@ -245,7 +245,7 @@ class GlucoseLogService {
.
where
(
"dateTime"
,
isGreaterThanOrEqualTo:
Timestamp
.
fromDate
(
DateTime
(
now
.
year
,
now
.
month
,
1
)))
.
orderBy
(
"dateTime"
,
descending:
true
)
.
orderBy
(
"dateTime"
,
descending:
isDecending
)
.
get
()
.
then
((
QuerySnapshot
querySnapshot
)
{
querySnapshot
.
docs
.
forEach
((
doc
)
{
...
...
@@ -272,7 +272,7 @@ class GlucoseLogService {
.
where
(
"dateTime"
,
isGreaterThanOrEqualTo:
Timestamp
.
fromDate
(
DateTime
(
now
.
year
,
1
,
1
)))
.
orderBy
(
"dateTime"
,
descending:
true
)
.
orderBy
(
"dateTime"
,
descending:
isDecending
)
.
get
()
.
then
((
QuerySnapshot
querySnapshot
)
{
querySnapshot
.
docs
.
forEach
((
doc
)
{
...
...
@@ -295,7 +295,7 @@ class GlucoseLogService {
}
else
if
(
period
==
"All records"
)
{
await
_records
.
where
(
"userId"
,
isEqualTo:
accountId
)
.
orderBy
(
"dateTime"
,
descending:
true
)
.
orderBy
(
"dateTime"
,
descending:
isDecending
)
.
get
()
.
then
((
QuerySnapshot
querySnapshot
)
{
querySnapshot
.
docs
.
forEach
((
doc
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment