forked from larsgt/mobile_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.js
More file actions
executable file
·237 lines (209 loc) · 5.8 KB
/
Copy pathapplication.js
File metadata and controls
executable file
·237 lines (209 loc) · 5.8 KB
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
// Requires jQuery template
var current_uuid;
var url_root = 'http://psd-dev.internal.sanger.ac.uk:6800/api/1/';
function renderStudyList(url, template, target) {
next_url = null;
$.getJSON(url,
function(data) {
$.each(data.studies, function(i,item){
$.tmpl(template, item)
.appendTo(target)
.bind('click', function() {current_uuid = item.uuid; });
});
if(data.actions.next != data.actions.last) {
next_url = data.actions.next;
}
}).complete(function(data){
$(target).listview('refresh');
if(next_url) {
renderStudyList(next_url, template, target)
}
}).error(function() {
alert("Something has gone wrong when finding available studies: have you logged on yet?");
});
}
function fetchStudyDetails(url, template, target) {
$.getJSON(url,
function(data) {
$.tmpl(template, data.study).appendTo(target);
}).error(function() {
alert("Something has gone wrong when finding study details");
});
}
// Samples
function renderSampleList(url, template, target) {
next_url = null;
$.getJSON(url,
function(data) {
$.each(data.samples, function(i,item){
$.tmpl(template, item)
.appendTo(target)
.bind('click', function() {current_uuid = item.uuid; });
});
if(data.actions.next != data.actions.last) {
next_url = data.actions.next;
}
}).complete(function(data){
$(target).listview('refresh');
if(next_url) {
renderSampleList(next_url, template, target)
}
}).error(function() {
alert("Something has gone wrong when finding available samples");
});
}
function fetchSampleDetails(url, template, target) {
$.getJSON(url,
function(data) {
$.tmpl(template, data.sample).appendTo(target);
}).error(function() {
alert("Something has gone wrong when finding sample details");
});
}
//Assets
function renderAssetList(url, template, target) {
next_url = null;
$.getJSON(url,
function(data) {
$.each(data.sample_tubes, function(i,item){
$.tmpl(template, item)
.appendTo(target)
.bind('click', function() {current_uuid = item.uuid; });
});
if(data.actions.next != data.actions.last) {
next_url = data.actions.next;
}
}).complete(function(data){
$(target).listview('refresh');
if(next_url) {
renderAssetList(next_url, template, target)
}
}).error(function() {
alert("Something has gone wrong when finding available assets");
});
}
function fetchAssetDetails(url, template, target) {
$.getJSON(url,
function(data) {
$.tmpl(template, data.sample_tube).appendTo(target);
}).error(function() {
alert("Something has gone wrong when finding asset details");
});
}
//Requests
function renderRequestList(url, template, target) {
next_url = null;
$.getJSON(url,
function(data) {
$.each(data.requests, function(i,item){
$.tmpl(template, item)
.appendTo(target)
.bind('click', function() {current_uuid = item.uuid; });
});
if(data.actions.next != data.actions.last) {
next_url = data.actions.next;
}
}).complete(function(data){
$(target).listview('refresh');
if(next_url) {
renderAssetList(next_url, template, target)
}
}).error(function() {
alert("Something has gone wrong when finding available requests");
});
}
function fetchRequestDetails(url, template, target) {
$.getJSON(url,
function(data) {
$.tmpl(template, data.requests).appendTo(target);
}).error(function() {
alert("Something has gone wrong when finding request details");
});
}
// Orders
function renderOrderList(url, template, target) {
next_url = null;
$.getJSON(url,
function(data) {
$.each(data.submissions, function(i,item){
$.tmpl(template, item)
.appendTo(target)
.bind('click', function() {current_uuid = item.uuid; });
});
if(data.actions.next != data.actions.last) {
next_url = data.actions.next;
}
}).complete(function(data){
$(target).listview('refresh');
if(next_url) {
renderOrderList(next_url, template, target)
}
}).error(function() {
alert("Something has gone wrong when finding available orders");
});
}
function fetchOrderDetails(url, template, target) {
$.getJSON(url,
function(data) {
$.tmpl(template, data.submission).appendTo(target);
}).error(function() {
alert("Something has gone wrong when finding order details");
});
}
function getURLParameter(name) {
return decodeURI(
(RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1]
);
}
function init() {
$( '#indexPage').live( 'pageinit',function(event){
renderStudyList(url_root + "studies",
"studyListTemplate",
"#list");
});
$( '#statusPage' ).live( 'pageinit',function(event){
fetchStudyDetails(url_root + current_uuid,
"studyTemplate",
"#study");
});
$( '#ordersPage').live( 'pageinit',function(event){
renderOrderList(url_root + current_uuid + "/submissions",
"orderListTemplate",
"#orderList");
});
$( '#orderPage').live( 'pageinit',function(event){
fetchOrderDetails(url_root + current_uuid,
"orderTemplate",
"#order");
});
$( '#samplesPage').live( 'pageinit',function(event){
renderSampleList(url_root + current_uuid + "/samples",
"sampleListTemplate",
"#sampleList");
});
$( '#samplePage').live( 'pageinit',function(event){
fetchSampleDetails(url_root + current_uuid ,
"sampleTemplate",
"#sample");
});
$( '#assetsPage').live( 'pageinit',function(event){
renderAssetList(url_root + current_uuid + "/sample_tubes",
"assetListTemplate",
"#assetList");
});
$( '#assetPage').live( 'pageinit',function(event){
fetchAssetDetails(url_root + current_uuid,
"assetTemplate",
"#asset");
});
$( '#requestsPage').live( 'pageinit',function(event){
renderRequestList(url_root + current_uuid + "/requests",
"requestListTemplate",
"#requestList");
});
$( '#requestPage').live( 'pageinit',function(event){
fetchRequestDetails(url_root + current_uuid,
"requestTemplate",
"#request");
});
};