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

(fix) Resolve issue with loading previous values #378

Merged
merged 3 commits into from
Sep 12, 2024

Conversation

samuelmale
Copy link
Member

@samuelmale samuelmale commented Sep 9, 2024

Requirements

  • This PR has a title that briefly describes the work done including the ticket number. If there is a ticket, make sure your PR title includes a conventional commit label. See existing PR titles for inspiration.
  • My work conforms to the OpenMRS 3.0 Styleguide and design documentation.
  • My work includes tests or is validated by existing tests.

Summary

For some reason the workspace no longer provides the "session mode" details to the root component. As result, we end up with an undefined "session mode" value which causes side effects like the "use previous value" feature not working. This PR ensures we infer the session mode in such scenarios. It the obs adapter to ensure that we properly format the date object to a display string.

Screenshots

Screenshot 2024-09-12 at 16 50 14

Related Issue

https://openmrs.atlassian.net/browse/O3-3918

Other

@samuelmale
Copy link
Member Author

Pending: test coverage

Copy link

github-actions bot commented Sep 9, 2024

Size Change: -390 B (-0.03%)

Total Size: 1.15 MB

ℹ️ View Unchanged
Filename Size Change
dist/151.js 300 kB 0 B
dist/225.js 2.57 kB 0 B
dist/277.js 1.84 kB 0 B
dist/3.js 0 B -481 B (removed) 🏆
dist/300.js 642 B 0 B
dist/335.js 968 B 0 B
dist/353.js 3.02 kB 0 B
dist/41.js 3.37 kB 0 B
dist/422.js 6.8 kB 0 B
dist/501.js 108 kB 0 B
dist/540.js 2.63 kB 0 B
dist/55.js 758 B 0 B
dist/572.js 252 kB +86 B (+0.03%)
dist/617.js 86.9 kB 0 B
dist/635.js 14.3 kB 0 B
dist/70.js 483 B 0 B
dist/901.js 11.8 kB 0 B
dist/99.js 691 B 0 B
dist/993.js 3.09 kB 0 B
dist/main.js 342 kB +4 B (0%)
dist/openmrs-esm-form-engine-lib.js 3.67 kB +1 B (+0.03%)

compressed-size-action

@samuelmale samuelmale marked this pull request as ready for review September 12, 2024 13:20
Copy link
Member

@pirupius pirupius left a comment

Choose a reason for hiding this comment

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

Was the failure mainly caused by the sessionMode? I see other changes were around the date component but that might have been an effect of moving the date formatter to the utils file.

@@ -62,6 +62,7 @@ const FormEngine = ({
const [showSidebar, setShowSidebar] = useState(false);
const [isSubmitting, setIsSubmitting] = useState(false);
const [isFormDirty, setIsFormDirty] = useState(false);
const sessionMode = !isEmpty(mode) ? mode : !isEmpty(encounterUUID) ? 'edit' : 'enter';
Copy link
Member

Choose a reason for hiding this comment

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

👀

@samuelmale
Copy link
Member Author

samuelmale commented Sep 12, 2024

I see other changes were around the date component but that might have been an effect of moving the date formatter to the utils file.

Those changes are necessary for date specific fields. They are basically about formatting the previous date value.

@samuelmale samuelmale merged commit 6f36300 into main Sep 12, 2024
4 checks passed
@samuelmale samuelmale deleted the fix/usePreviousValue branch September 12, 2024 16:19
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.

3 participants