forked from Gaduo/FHIRSampleCreator
-
Notifications
You must be signed in to change notification settings - Fork 3
/
patientViewer.html
180 lines (132 loc) · 5.95 KB
/
patientViewer.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html>
<head lang="en">
<base href="/" />
<meta charset="UTF-8">
<script src="js/libs/jquery-1.9.0.min.js"></script>
<script src="js/libs/angular.min1-5.js"></script>
<script src="js/libs/ui-bootstrap-tpls-2.0.1.min.js"></script>
<script src="js/libs/lodash.core.js"></script>
<script src="js/libs/moment.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<link rel="stylesheet" type="text/css" href="css/jsTreeStyle.css"/>
<link rel="stylesheet" type="text/css" href="css/jsTreeThemes/proton/style.css"/>
<link rel="stylesheet" type="text/css" href="css/vis.min.css"/>
<style>
#mynetwork {
width: 100%;
height: 600px;
border: 1px solid lightgray;
}
#documentGraph {
width: 100%;
height: 600px;
border: 1px solid lightgray;
}
#encTimeline {
width: 100%;
height: 200px;
border: 1px solid lightgray;
}
#resourcenetwork {
width: 100%;
height: 400px;
border: 1px solid lightgray;
}
</style>
<script src="js/libs/angular-sanitize.js"></script>
<script src="js/libs/angular-bootstrap-checkbox.js"></script>
<script>
angular.module("sampleApp",['ui.checkbox','ui.bootstrap','ngStorage','ngSanitize']).config(function($locationProvider) {
// enable html5Mode for pushstate ('#'-less URLs)
$locationProvider.html5Mode(true);
$locationProvider.hashPrefix('!');
});
// angular.module("sampleApp",['ui.checkbox','ui.bootstrap','ngStorage','ngSanitize'])
angular.module("sampleApp").constant("moment", moment);
//http://www.devblogrbmz.com/angular-default-request-headers-and-interceptors/
//http://www.webdeveasy.com/interceptors-in-angularjs-and-useful-examples/
angular.module("sampleApp").factory('authIntercept',['sessionSvc',function(sessionSvc){
return {
'request': function(config){
//console.log('intercept '+ sessionSvc.getAuthToken());
if (sessionSvc.getAuthToken()) {
config.headers['Authorization'] = sessionSvc.getAuthToken();
config.headers['myAuth'] = sessionSvc.getAuthToken();
}
return config
}
}
}]).config(function($httpProvider){
$httpProvider.interceptors.push('authIntercept')
})
</script>
<script src="js/libs/ngStorage.min.js"></script>
<script src="js/services.js"></script>
<script src="js/libs/jstree.min.js"></script>
<script src="js/appConfigSvc.js"></script>
<script src="js/queryCtrl.js"></script>
<script src="js/modalDialogSvc.js"></script>
<script src="js/profileCreatorSvc.js"></script>
<script src="js/resourceCreatorSvc.js"></script>
<script src="resourceBuilder/rbServices.js"></script>
<script src="js/resourceSvc.js"></script>
<script src="js/filters.js"></script>
<script src="js/resourceViewerCtl.js"></script>
<script src="js/observationsDisplayCtrl.js"></script>
<script src="js/findPatientCtrl.js"></script>
<script src="js/libs/vis.min.js"></script>
<script src="js/components/dataTypes.js"></script>
<script src="directive/fhirpath/fhirpath.js"></script>
<script src="directive/graphql/graphql.js"></script>
<script src="js/builderSvc.js"></script>
<script src="js/sessionSvc.js"></script>
<script src="js/questionnaireSvc.js"></script>
<script src="directive/questionnaire/questionnaireCtl.js"></script>
<script src="resourceBuilder/vsBrowser.js"></script>
<title>Patient Viewer</title>
</head>
<body style="padding: 8px;padding-top:80px">
<div ng-app="sampleApp" ng-controller="resourceViewerCtrl" class="container-fluid">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="col-md-3 col-sm-3">
<a class="navbar-brand" href="#"
uib-popover-html="displayServers"
popover-trigger="'mouseenter'"
popover-placement="right">
Patient Viewer
</a>
</div>
<div class="col-md-5 col-sm-5">
<div class="navbar-text" ng-show="currentPatient">
{{ResourceUtilsSvc.getOneLineSummaryOfResource(currentPatient)}} ({{currentPatient.id}})
</div>
</div>
<div class="col-md-1 col-sm-1">
<div class="pull-right navbar-form" ng-show="waiting">
<img src="css/ajax_loader_blue_32.gif"/>
</div>
</div>
<div class="col-md-3 col-sm-3">
<form ng-show = "appConfigSvc.getCurrentDataServer().smart && ! oauthAccessToken" class="navbar-form navbar-right">
<button class="btn btn-danger" ng-click="smartLogin()">Logon</button>
</form>
<form ng-hideDEP = "appConfigSvc.getCurrentDataServer().smart && ! oauthAccessToken" class="navbar-form navbar-right">
<button class="btn btn-primary" ng-click="findPatient()">Select Patient</button>
</form>
</div>
</div>
</nav>
<div ng-show="appConfigSvc.getCurrentPatient()">
<ng-include src="'/includes/resourceViewer.html'"></ng-include>
</div>
<div ng-hide="appConfigSvc.getCurrentPatient()">
<p>Please select a patient using the 'Select Patient' button at the upper right</p>
<p>If you want to add a new patient, then click the 'Select Patient' button, and in the modal dialog
that appears, there's a link to add a new patient.</p>
</div>
</div>
</body>
</html>