-
Notifications
You must be signed in to change notification settings - Fork 294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Date Picker Constraint Issue Fix. #2514
base: master
Are you sure you want to change the base?
Date Picker Constraint Issue Fix. #2514
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Aditya for this PR. Can you address the comments ?
...main/java/com/google/android/fhir/datacapture/views/factories/DatePickerViewHolderFactory.kt
Outdated
Show resolved
Hide resolved
...main/java/com/google/android/fhir/datacapture/views/factories/DatePickerViewHolderFactory.kt
Show resolved
Hide resolved
I have addressed the comments. Please do a re-review. Thanks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
...main/java/com/google/android/fhir/datacapture/views/factories/DatePickerViewHolderFactory.kt
Outdated
Show resolved
Hide resolved
It seems the build is failing on few tests in QuestionnaireUiEspressoTest. It's not available via kokoro logs here and we are working on it via this ticket Issue/2515. In the meantime these are the errors:- This should be an easy fix. Requesting you to fix these and upload a commit. It will automatically merge the PR. |
Sure @MJ1998 . I will do it. Thanks. |
(questionnaireViewItem.minAnswerValue as? DateType) | ||
?.value | ||
?.localDate | ||
?.atStartOfDay( | ||
ZONE_ID_UTC, | ||
) | ||
?.toInstant() | ||
?.toEpochMilli() | ||
?: localDate?.atStartOfDay(ZONE_ID_UTC)?.toInstant()?.toEpochMilli() | ||
?: MaterialDatePicker.todayInUtcMilliseconds() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some of this can probably be simplified, the conversion from local date to epoch milli is the same for the min value and the local date input, so you can simplify this code a bit by rewriting that.
but the bigger question is why this logic is written as such - you're reading from the questionnaire constraint's min value, and if it's missing, then you take the input value (which could have been an input from before, and then if that's also missing, you take today's date. and then you set this as the selection. and then you use this for two things: 1) the selection for the date picker and 2) the min date for the calendar constraint. i don't really understand why this is done this way.
to me, a perhaps much simpler fix is to simply not set the selection below:
.setSelection(selectedDateMillis)
if the selection will not make any sense. have you tried removing this line?
in that case i'd imagine the behaviour of the date picker will be that you cannot click ok since there simply isn't any possible date to choose from that would satisfy the calendar constraints.
have you tried that? i feel that's a more logical fix.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @jingtang10 , this makes sense. Removing the .setSelection(selectedDateMillis) will disable the "ok" button and enable only when selected a date. I think this could be more better fix than what I had proposed. Thanks for pointing it out.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you still to set the selection if there is an existing answer right? why are you removing it completely?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The idea here is to streamline user experience, Jing. This is what I had in mind:-
Invalid Date Range: If minDate is later than maxDate, disable the date picker and display a clear error message.
Existing Answer: If the user has already selected a date (i.e., localDate is not null), set the date picker to that value.
No Answer, Valid Range: If there's no previous answer but the date range is valid:
- Prioritize Today's Date: Since users are likely to choose today's date, set the date picker to the today's date if it falls within the valid range (minDate to maxDate).
- Fallback to minDate: If today's date is outside the valid range, use minDate as the default selection to avoid excessive scrolling or clicking for the user.
Notes:-
- Once user selects a valid date, ie, localDate is non null, then we should set the date picker to that value only.
- minDateInMillis should be calculated solely based on minValueAnswer, not influenced by the user's current selection or the current date.
So I guess something like following:-
val dateToSelect = when {
localDate != null -> localDate
currentDate between minDate..maxDate -> currentDate
else -> minDate // If not in range, minDate fallback
}
Head branch was pushed to by a user without write access
@jingtang10 I have made the changes please have a look. Thanks. |
(questionnaireViewItem.minAnswerValue as? DateType) | ||
?.value | ||
?.localDate | ||
?.atStartOfDay( | ||
ZONE_ID_UTC, | ||
) | ||
?.toInstant() | ||
?.toEpochMilli() | ||
?: localDate?.atStartOfDay(ZONE_ID_UTC)?.toInstant()?.toEpochMilli() | ||
?: MaterialDatePicker.todayInUtcMilliseconds() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you still to set the selection if there is an existing answer right? why are you removing it completely?
Ohh I am sorry, I misunderstood it. You mean the existing answer will come from the Questionnaire? @jingtang10 |
IMPORTANT: All PRs must be linked to an issue (except for extremely trivial and straightforward changes).
Fixes #2508
Description
The MaterialDatePicker Builder has been modified such that if the questionnaire item has the minimum date extension added then the MaterialDatePicker.setSelection() will have that minimum date from extension else it will get the local date. This way it will select the first valid date based on the constraints added for date.
Alternative(s) considered
Have you considered any alternatives? And if so, why have you chosen the approach in this PR?
Type
Bug Fix
Screenshots (if applicable)
Checklist
./gradlew spotlessApply
and./gradlew spotlessCheck
to check my code follows the style guide of this project../gradlew check
and./gradlew connectedCheck
to test my changes locally.