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

Export QuestionnaireFormContext and QuestionnairePageSequence from QuestionnaireForm #4664

Merged
merged 2 commits into from
Jun 13, 2024

Conversation

claycoleman
Copy link
Contributor

Hi there,

I'd like to create an extension of QuestionnaireForm in my own repository by forking the code of QuestionnaireForm, but two files are not exported from the @medplum/react package: QuestionnaireFormContext and QuestionnairePageSequence. I'd like to use the exact context from QuestionnaireFormContext rather than recreating it so all nested components can continue to work with it. This PR just exports these two files from QuestionnaireForm so they're picked up in the barrel index.ts file.

I'm currently using a pnpm patch package to do this, but it's fairly janky to do this as @medplum/react exports a minified .mjs file and creates a massive patch file!

Another approach here could be adding the Context and PageSequence exports into the barrel file, not sure which you'd prefer.

Thanks for taking a look!

@claycoleman claycoleman requested a review from a team as a code owner June 13, 2024 21:10
Copy link

vercel bot commented Jun 13, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
medplum-app ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 13, 2024 10:27pm
medplum-provider ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 13, 2024 10:27pm
medplum-storybook ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 13, 2024 10:27pm
1 Ignored Deployment
Name Status Preview Comments Updated (UTC)
medplum-www ⬜️ Ignored (Inspect) Visit Preview Jun 13, 2024 10:27pm

Copy link

vercel bot commented Jun 13, 2024

@claycoleman is attempting to deploy a commit to the Medplum Team on Vercel.

A member of the Team first needs to authorize it.

@claycoleman
Copy link
Contributor Author

cc @codyebberson for a quick review 🙏

@claycoleman
Copy link
Contributor Author

also @ThatOneBro , if you have another quick second, this one is a little more opinionated but would love to get this one into the next release as well

@ThatOneBro
Copy link
Member

ThatOneBro commented Jun 13, 2024

Hi @claycoleman, thanks for your contributions!

I can definitely see the logic behind this, and this is definitely a use-case we want to support.

I think we typically try to export one component / thing per file, mostly due to how to React fast refresh works in dev mode, and that it requires you only export components from files containing components to be eligible for fast refresh. (We use that rule in @medplum/eslint-config)

Can you change this PR to directly export the context and QuestionnairePageSequence directly from the barrel file?

Again, thanks for contributing 🙏

@claycoleman
Copy link
Contributor Author

@ThatOneBro done! tested by going to a file that imported from @medplum/react and saw using TS autocomplete that the Context and PageSequence are being exported.

Copy link
Member

@ThatOneBro ThatOneBro left a comment

Choose a reason for hiding this comment

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

@claycoleman Awesome, thanks a ton! Approved

We should cut a release soon so keep an eye out. Patching packages is never fun and we strive to never have Medplum users doing that for stuff like this

Let us know if you have any other concerns!

@ThatOneBro ThatOneBro disabled auto-merge June 13, 2024 22:33
@ThatOneBro ThatOneBro added this pull request to the merge queue Jun 13, 2024
Merged via the queue into medplum:main with commit 3fde72b Jun 13, 2024
28 checks passed
@reshmakh reshmakh added this to the June 30, 2024 milestone Jun 17, 2024
@reshmakh reshmakh added the questionnaires FHIR questionnaires related features and fixes label Jun 18, 2024
medplumbot added a commit that referenced this pull request Jun 21, 2024
## What's Changed

fix(ci): fix `\n` missing due to reversal, use `git log --reverse` (#4649)
Allow chained search in _filter (#4647)
Polish eligibility demo (#4637)
cleanup(core): remove stray `console.log` (#4653)
Update sidebar.ts (#4652)
Feat: Configure refresh token expiry (#4525)
Dependency upgrades 2024-06-10 (#4650)
cleanup(chart-demo): rm ignored `example-bots.json` (#4656)
 Adding instructions to the example app READMEs on how to build bots (#4660)
Update useSearch.ts (#4663)
Export QuestionnaireFormContext and QuestionnairePageSequence from QuestionnaireForm (#4664)
Add `expo-polyfills` to README packages list (#4666)
revert(react): remove export of `QuestionnairePageSequence` (#4669)
Fix wrong pipe character in README (#4671)
Document Terminology Service operation endpoints (#4665)
Dependency upgrades 2024-06-17 (#4673)
Gracefully handle no major dep upgrades (#4675)
SQL on FHIR ViewDefinition types (#4674)
fix(build) Update deprecated import assertion into import attribute (#4682)
Fixes #4398 - add mapByIdentifier util function (#4635)
Fixes #4600 - Add Auto Confirmation Parameter for Headless Deployment (#4625)
fix(react-hooks): make `loading` track `MedplumClient#isLoading()` (#4677)
Implements FHIRPath string join (stu) (#4683)
SQL-on-FHIR processResource (#4678)
feat(useSubscription): add `subscriptionProps` as optional param (#4180)
Resolve conditional references (#4633)
feat(subscriptions): add `unbind-from-token` message for WebSocket subscriptions (#4672)
Document remaining Terminology Service operations (#4680)
feat(agent): add `keepAlive` setting to `Agent` (#4657)
Update README.md (#4687)
Fix all copyright dates (#4689)
Fixes subject input on PlanDefinitionApplyForm (#4699)
Deprecate non-strict mode (#4651)
Validate certain references with systemRepo (#4700)
docs(useSubscription): clean up examples, add JSDoc comment (#4692)
cleanup(repo): `handleMaybeCacheOnly` -> `handleStorage` (#4696)
Minor fixes to Eligibility Demo (#4703)

**Full Changelog**: v3.1.8...v3.1.9
github-merge-queue bot pushed a commit that referenced this pull request Jun 22, 2024
## What's Changed

fix(ci): fix `\n` missing due to reversal, use `git log --reverse` (#4649)
Allow chained search in _filter (#4647)
Polish eligibility demo (#4637)
cleanup(core): remove stray `console.log` (#4653)
Update sidebar.ts (#4652)
Feat: Configure refresh token expiry (#4525)
Dependency upgrades 2024-06-10 (#4650)
cleanup(chart-demo): rm ignored `example-bots.json` (#4656)
 Adding instructions to the example app READMEs on how to build bots (#4660)
Update useSearch.ts (#4663)
Export QuestionnaireFormContext and QuestionnairePageSequence from QuestionnaireForm (#4664)
Add `expo-polyfills` to README packages list (#4666)
revert(react): remove export of `QuestionnairePageSequence` (#4669)
Fix wrong pipe character in README (#4671)
Document Terminology Service operation endpoints (#4665)
Dependency upgrades 2024-06-17 (#4673)
Gracefully handle no major dep upgrades (#4675)
SQL on FHIR ViewDefinition types (#4674)
fix(build) Update deprecated import assertion into import attribute (#4682)
Fixes #4398 - add mapByIdentifier util function (#4635)
Fixes #4600 - Add Auto Confirmation Parameter for Headless Deployment (#4625)
fix(react-hooks): make `loading` track `MedplumClient#isLoading()` (#4677)
Implements FHIRPath string join (stu) (#4683)
SQL-on-FHIR processResource (#4678)
feat(useSubscription): add `subscriptionProps` as optional param (#4180)
Resolve conditional references (#4633)
feat(subscriptions): add `unbind-from-token` message for WebSocket subscriptions (#4672)
Document remaining Terminology Service operations (#4680)
feat(agent): add `keepAlive` setting to `Agent` (#4657)
Update README.md (#4687)
Fix all copyright dates (#4689)
Fixes subject input on PlanDefinitionApplyForm (#4699)
Deprecate non-strict mode (#4651)
Validate certain references with systemRepo (#4700)
docs(useSubscription): clean up examples, add JSDoc comment (#4692)
cleanup(repo): `handleMaybeCacheOnly` -> `handleStorage` (#4696)
Minor fixes to Eligibility Demo (#4703)

**Full Changelog**: v3.1.8...v3.1.9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
questionnaires FHIR questionnaires related features and fixes
Projects
Status: ✅ Done
Development

Successfully merging this pull request may close these issues.

None yet

3 participants