Skip to content

Commit

Permalink
/smart-app-debugger connects to Epic sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
awatson1978 committed Apr 24, 2024
1 parent 7add646 commit fa3385a
Show file tree
Hide file tree
Showing 13 changed files with 264 additions and 550 deletions.
6 changes: 3 additions & 3 deletions .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ clinical:[email protected]
clinical:[email protected]
clinical:[email protected]
clinical:[email protected]
clinical:vault-server@8.10.0
clinical:vault-server@8.11.0
[email protected]
[email protected]
[email protected]
Expand Down Expand Up @@ -68,7 +68,7 @@ meteorhacks:[email protected]
[email protected]
[email protected]
[email protected]
mitre:fhir-side@0.1.0
mitre:fhir-side@0.2.0
mitre:[email protected]
[email protected]
[email protected]
Expand Down Expand Up @@ -105,7 +105,7 @@ [email protected]
[email protected]
symptomatic:[email protected]
symptomatic:[email protected]
symptomatic:[email protected].3
symptomatic:[email protected].4
symptomatic:[email protected]
[email protected]
tmeasday:[email protected]
Expand Down
3 changes: 2 additions & 1 deletion app/layout/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,8 @@ export function App(props) {
{ qrScannerRoute }

<Route name='SmartLauncher' key='SmartLauncher' path="/smart-launcher" exact component={ SmartLauncher } />
<Route name='SmartLaunchDebugger' key='SmartLaunchDebugger' path="/smart-debugger" exact component={ SmartLaunchDebugger } />
<Route name='SmartDebugger' key='SmartDebugger' path="/smart-debugger" exact component={ SmartLaunchDebugger } />
<Route name='SmartLaunchDebugger' key='SmartLaunchDebugger' path="/smart-launch-debugger" exact component={ SmartLaunchDebugger } />
<Route name='SmartSampleApp' key='SmartSampleApp' path="/smart-sample-app" exact component={ SmartSampleApp } />
<Route name='SmartAppDebugger' key='SmartAppDebugger' path="/smart-app-debugger" exact component={ SmartAppDebugger } />

Expand Down
2 changes: 1 addition & 1 deletion app/layout/AppCanvas.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function AppCanvas(props) {
let styleObject = {overflow: 'hidden'}

if(backgroundImage){
styleObject["background-image"] = backgroundImage;
styleObject["backgroundImage"] = backgroundImage;
styleObject.width = '100%';
styleObject.height = '100%';
styleObject.backgroundSize = 'cover';
Expand Down
321 changes: 12 additions & 309 deletions app/layout/FhirClientProvider.jsx

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion app/layout/SettingsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,14 @@ function SettingsPage(props){
if(!get(patientRecord, 'name[0].text')){
Patients.update({_id: patientRecord._id}, {$set: {
"name.0.text": FhirUtilities.assembleName(get(patientRecord, 'name[0]'))
}})
}}, function(error, result){
if(error){
console.error('Patients.update error', error)
}
if(result){
console.log('Patients.update result', result)
}
});
}
})

Expand Down
Loading

0 comments on commit fa3385a

Please sign in to comment.