Skip to content
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

Fixes #5564 Add Date & Time in FeedBack Content #5577

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

Gupta-Suruchi
Copy link

Fixes #5564

What changes did you make and why?
Made Changes in app/src/main/java/fr/free/nrw/commons/feedback/FeedbackContentCreator.java

Added current Date & Time feature in feedback Content as mentioned in issue that, If a user submits multiple feedback with the same version of the Commons app, these cannot be distinguished in the overview.


Note: Please ensure that you have read CONTRIBUTING.md if this is your first pull request.

Made Changes in app/src/main/java/fr/free/nrw/commons/feedback/FeedbackContentCreator.java

Added current Date & Time feature in feedback Content
@neeldoshii

This comment was marked as resolved.

@@ -28,6 +30,10 @@ public FeedbackContentCreator(Context context, Feedback feedback) {
public void init() {
// Localization is not needed here, because this ends up on a page where developers read the feedback, so English is the most convenient.

LocalDateTime currentDateTime = LocalDateTime.now();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Call requires API level 26 (current min is 21): java.time.LocalDateTime#now
Call requires API level 26 (current min is 21): java.time.format.DateTimeFormatter#ofPattern
Call requires API level 26 (current min is 21): java.time.LocalDateTime#format

This will throw error on API 26. You will need to use desugaring inorder to get this support towards to API 21.

Ref : https://stackoverflow.com/questions/56695997/how-to-fix-call-requires-api-level-26-current-min-is-25-error-in-android

This will increase unnecessary refactoring this can be done with this 2 line of code.

        final SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.ENGLISH);
        String formattedDateTime = formatter.format(new Date());

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Gupta-Suruchi Would you mind trying that? :-)

@@ -89,6 +95,10 @@ public void init() {
}
stringBuilder.append("~~~~");
stringBuilder.append("\n");
// adds Current Date & Time when a Feedback is created
stringBuilder.append("Generated on: " + formattedDateTime);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider replacing this line with this

 stringBuilder.append("Generated on: ").append(formattedDateTime);

@neeldoshii
Copy link
Contributor

Left review with minor changes.

Review by student.

@neeldoshii
Copy link
Contributor

Can I take this @nicolas-raoul, I have the exact idea how to tackle this while I was reviewing the PR. If this PR is stale can I take this?

@nicolas-raoul
Copy link
Member

@neeldoshii Let's wait for 48 hours after my "Would you mind trying that?" comment above, then if there is no response you can build upon this pull request.

Thanks both! :-)

@nicolas-raoul
Copy link
Member

@neeldoshii Feel free to build upon this pull request. :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feedback subject should contain date and time
3 participants