-
Notifications
You must be signed in to change notification settings - Fork 238
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
Alex/more zambdas cleanup #1645
Conversation
…das and fix chooseJson
apps/ehr/src/api/api.ts
Outdated
@@ -47,8 +47,8 @@ const GET_PATIENT_PROFILE_PHOTO_URL_ZAMBDA_ID = import.meta.env.VITE_APP_GET_PAT | |||
const SAVE_PATIENT_FOLLOWUP_ZAMBDA_ID = import.meta.env.VITE_APP_SAVE_PATIENT_FOLLOWUP_ZAMBDA_ID; | |||
const CREATE_LAB_ORDER_ZAMBDA_ID = import.meta.env.VITE_APP_CREATE_LAB_ORDER_ZAMBDA_ID; | |||
|
|||
function chooseJson(json: any, isLocal: string): any { | |||
return isLocal === 'true' ? json : json.output; | |||
export function chooseJson(json: any): any { |
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.
Maybe it can be renamed now to something like this?
export function chooseJson(json: any): any { | |
export function getZambdaOutput(json: any): any { |
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.
also this function can be moved to utils and then we can remove duplicate from apps/intake/src/api/zapehrApi.ts
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.
This function should actually be removed entirely, but there is a tweak needed in the SDK. This function is serving the purpose of casting json.output to any
because the SDK has a bug that has the type on zambda execute result being string
. When that is fixed, we can delete this function and wherever it was used just inline json.output
. So I'll come back through to remove this function soon entirely enough.
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.
i went ahead and consolidated to just one of those functions, in utils.
No description provided.