-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
306 lines (262 loc) · 8.8 KB
/
index.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
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<html>
<head>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script>
<script>
var CLARIFICATION_PENALTY=10;
var userId=0;
var names = [];
var namesIndex=0;
var mode = 0;//first case
var modesRun = 0;
var sequence = 1;
var modes = ['jaro_winkler', 'phonetic', 'stemming'];//sequence 1
//var modes = ['jaro_winkler', 'stemming', 'phonetic'];//sequence 2
//var modes = ['stemming','jaro_winkler','phonetic'];//sequence 3
//var modes = ['stemming','phonetic','jaro_winkler'];//sequence 4
//var modes = ['phonetic', 'jaro_winkler', 'stemming'];//sequence 5
//var modes = ['phonetic', 'stemming','jaro_winkler'];//sequence 6
var modeColors = ['#F5D6D6','#EBF5D6','#ADD6EB'];
var t0;
function init()
{
mode=0;
userId=0;
$('#controls').css({'background':modeColors[mode], 'padding':'50px', 'width':'66%'});
$('#namesSelect').css({'width':'75%'});
enableControls();
}
function keyup()
{
if($('#fninput').val() == 'First Name' ||
$('#fninput').val() === '' ||
$('#lninput').val() == 'Last Name' ||
$('#lninput').val() === '')
{
$('#searchinput').attr('disabled', 'disabled');
}
else if($('#fninput').val() != 'fninput' &&
$('#fninput').val() !== '' &&
$('#lninput').val() != 'lninput' &&
$('#lninput').val() !== '')
{
$("#searchinput").removeAttr('disabled');
}
}
function focusFunction(input, value)
{
if(input.value==value){
input.value='';
}
}
function blurFunction(input, value)
{
if(input.value==='')
{
input.value = value;
}
}
function getNames(callback)
{
$.get("https://localhost:9080/names", fillNames).error(ajaxError);
function fillNames(data, status, jqXHR)
{
data.patients.every(
function(x)
{
names.push(x);
return true;
}
);
$('#progressBox').attr('value', 'Ready');
callback();
console.log(names);
}
}
function notPresent()
{
var deltat=Date.now()-t0;
var answer = {
mode:modes[mode],
sequence:sequence,
observed:'notPresent',
actual:names[namesIndex-1]._id,
selected:'',
deltat:deltat,
userId:userId,
present:names[namesIndex-1].present,
};
$.post('https://localhost:9080/answers', answer, posted('notPresent')).error(ajaxError);
clearNames();
changeFile();
}
function clarification()
{
disableControls();
countdown(CLARIFICATION_PENALTY);
}
function countdown(x)
{
if(x>0)
{
$('#timerButton').attr('value',x);
setTimeout(function(){countdown(x-1);}, 1000);
}
else
{
$('#timerButton').removeAttr('hidden');
enableControls();
var deltat = (Date.now()-t0)/1000;
var answer = {
mode:modes[mode],
sequence:sequence,
observed:'clarification',
actual:names[namesIndex-1]._id,
selected:'',
deltat:deltat,
userId:userId,
present:names[namesIndex-1].present,
};
$.post('https://localhost:9080/answers', answer, posted('clarification')).error(ajaxError);
clearNames();
changeFile();
}
}
function disableControls()
{
$('#fninput').attr('disabled','disabled');
$('#lninput').attr('disabled','disabled');
$('#searchinput').attr('disabled','disabled');
$('#notPresentButton').attr('disabled','disabled');
$('#selectedButton').attr('disabled','disabled');
$('#clarificationButton').attr('disabled','disabled');
$('clarificationButton').attr('disabled','disabled');
$('#audioControls').removeAttr('controls');
$('#timerButton').show();
}
function enableControls()
{
$('#fninput').removeAttr('disabled','disabled');
$('#lninput').removeAttr('disabled','disabled');
$('#searchinput').removeAttr('disabled','disabled');
$('#notPresentButton').removeAttr('disabled','disabled');
$('#selectedButton').removeAttr('disabled','disabled');
$('#clarificationButton').removeAttr('disabled','disabled');
$('clarificationButton').removeAttr('disabled','disabled');
$('#audioControls').attr('controls','controls');
$('#timerButton').hide();
}
function selected()
{
var selectedName = $('#namesSelect').find(':selected').val();
if(!selectedName)
{
alert('no name selected');
return;
}
var answer = {
mode:modes[mode],
sequence:sequence,
observed:'selected',
actual:names[namesIndex-1]._id,
selected:selectedName,
deltat:Date.now()-t0,
userId:userId,
present:names[namesIndex-1].present,
};
$.post('https://localhost:9080/answers', answer, posted('selected')).error(ajaxError);
clearNames();
changeFile();
}
function changeFile()
{
t0 = Date.now();
$('#fninput').val('First Name');
$('#lninput').val('Last Name');
if(namesIndex >= names.length)
{
namesIndex=0;
changeMode();
}
$('#audioControls').attr('src',names[namesIndex].file);
namesIndex++;
}
function changeMode()
{
modesRun++;
if(modesRun>=3)
{
alert('thank you for completing the study');
disableControls();
return;
}
mode++;
console.log('mode from: ' + modes[mode-1] + ' mode to: ' + modes[mode]);
names = shuffle(names);
$('#controls').css({'background':modeColors[mode], 'padding':'50px', 'width':'66%'});
}
function shuffle(o){ //v1.0
for(var j, x, i = o.length; i; j = Math.floor(Math.random()*i), x = o[--i], o[i] = o[j], o[j] = x);
return o;
}//http://stackoverflow.com/questions/6274339/how-can-i-shuffle-an-array-in-javascript
function search()
{
$('#selectedButton').removeAttr('disabled');
clearNames();
var path='https://localhost:9080' +
'/' + modes[mode] +
'/' + $('#fninput').val() +
'/' + $('#lninput').val();
$.get(path, fillNames).error(ajaxError);
function fillNames(data, status, jqXHR)
{
if(data.patients.length < 1)
{
$('#namesSelect').append('<option value="no results">no results</option>');
$('#selectedButton').attr('disabled','disabled');
}
else
{
data.patients.every(
function(x)
{
$('#namesSelect').append('<option value=' + x._id + '>' + x.first + ' ' + x.last + '</option>');
return true;
}
);
}
}
}
function clearNames()
{
$('#namesSelect').find('option').remove();
}
function ajaxError(e)
{
console.log(e);
}
function posted(x)
{
console.log('posted:' + x);
}
</script>
<head>
<body onLoad="init();getNames(changeFile)">
<div id='loadingDiv'>
<input id='progressBox' type='text' disabled value='loading...'/>
</div>
<div id='audioPlayerDiv'>
<input id='timerButton' type="button" value='' disabled hidden/>
<audio controls id='audioControls' src=''/>
</div><br><br>
<div id='controls'>
<select id='namesSelect' multiple size='8'>
</select><br>
<input id='fninput' type='text' value='First Name' size='50' onkeyup='keyup();' onfocus='focusFunction(this, this.value);' onblur='blurFunction(this, "First Name")'/>
<input id='lninput' type='text' value='Last Name' size='50' onkeyup='keyup();' onfocus='focusFunction(this, this.value);' onblur='blurFunction(this, "Last Name")'/>
<input id='searchinput' type='button' value='Search' disabled onclick='search();'/><br><br>
<input id='notPresentButton' type='button' value='not present' onclick='notPresent();'/>
<input id='selectedButton' type='button' value='selected' onclick='selected();'/>
<input id='clarificationButton' type='button' value='clarification' onclick='clarification();'/>
</div>
</body>
</html>