-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin-html-slider-response-values-art.js
296 lines (264 loc) · 11.3 KB
/
plugin-html-slider-response-values-art.js
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
var jsPsychHtmlSliderResponse = (function (jspsych) {
'use strict';
const info = {
name: "html-slider-response",
parameters: {
/** The HTML string to be displayed */
stimulus: {
type: jspsych.ParameterType.HTML_STRING,
pretty_name: "Stimulus",
default: undefined,
},
/** Sets the minimum value of the slider. */
min: {
type: jspsych.ParameterType.INT,
pretty_name: "Min slider",
default: 0,
},
/** Sets the maximum value of the slider */
max: {
type: jspsych.ParameterType.INT,
pretty_name: "Max slider",
default: 100,
},
/** Sets the starting value of the slider */
slider_start: {
type: jspsych.ParameterType.INT,
pretty_name: "Slider starting value",
default: 50,
},
/** Sets the step of the slider */
step: {
type: jspsych.ParameterType.INT,
pretty_name: "Step",
default: 1,
},
/** Array containing the labels for the slider. Labels will be displayed at equidistant locations along the slider. */
labels: {
type: jspsych.ParameterType.HTML_STRING,
pretty_name: "Labels",
default: [],
array: true,
},
/** Width of the slider in pixels. */
slider_width: {
type: jspsych.ParameterType.INT,
pretty_name: "Slider width",
default: null,
},
/** Label of the button to advance. */
button_label: {
type: jspsych.ParameterType.STRING,
pretty_name: "Button label",
default: "Continue",
array: false,
},
/** If true, the participant will have to move the slider before continuing. */
require_movement: {
type: jspsych.ParameterType.BOOL,
pretty_name: "Require movement",
default: false,
},
/** Any content here will be displayed below the slider. */
prompt: {
type: jspsych.ParameterType.HTML_STRING,
pretty_name: "Prompt",
default: null,
},
/** How long to show the stimulus. */
stimulus_duration: {
type: jspsych.ParameterType.INT,
pretty_name: "Stimulus duration",
default: null,
},
/** How long to show the trial. */
trial_duration: {
type: jspsych.ParameterType.INT,
pretty_name: "Trial duration",
default: null,
},
/** If true, trial will end when user makes a response. */
response_ends_trial: {
type: jspsych.ParameterType.BOOL,
pretty_name: "Response ends trial",
default: true,
},
},
};
/**
* **html-slider-response**
*
* jsPsych plugin for showing an HTML stimulus and collecting a slider response
*
* @author Josh de Leeuw
* @see {@link https://www.jspsych.org/plugins/jspsych-html-slider-response/ html-slider-response plugin documentation on jspsych.org}
*/
class HtmlSliderResponsePlugin {
constructor(jsPsych) {
this.jsPsych = jsPsych;
}
trial(display_element, trial) {
// half of the thumb width value from jspsych.css, used to adjust the label positions
var half_thumb_width = 7.5;
var html = '<div id="jspsych-html-slider-response-wrapper" style="margin: 100px 0px;">';
html += '<div id="jspsych-html-slider-response-stimulus">' + trial.stimulus + "</div>";
html +=
'<div class="jspsych-html-slider-response-container" style="position:relative; margin: 0 auto 3em auto; ';
if (trial.slider_width !== null) {
html += "width:" + trial.slider_width + "px;";
}
else {
html += "width:auto;";
}
html += '">';
html +=
'<input type="range" class="jspsych-slider" value="' +
trial.slider_start +
'" min="' +
trial.min +
'" max="' +
trial.max +
'" step="' +
trial.step +
'" id="jspsych-html-slider-response-response"></input>';
html += "<div>";
for (var j = 0; j < trial.labels.length; j++) {
var label_width_perc = 100 / (trial.labels.length - 1);
var percent_of_range = j * (100 / (trial.labels.length - 1));
var percent_dist_from_center = ((percent_of_range - 50) / 50) * 100;
var offset = (percent_dist_from_center * half_thumb_width) / 100;
html +=
'<div style="border: 1px solid transparent; display: inline-block; position: absolute; ' +
"left:calc(" +
percent_of_range +
"% - (" +
label_width_perc +
"% / 2) - " +
offset +
"px); text-align: center; width: " +
label_width_perc +
'%;">';
html += '<span style="text-align: center; font-size: 80%;">'+ trial.labels[j] + "</span>";
html += "</div>";
}
html += "</div>";
html += "</div>";
html += "</div>";
if (trial.prompt !== null) {
html += trial.prompt;
}
// add submit button
html +=
'<button id="jspsych-html-slider-response-next" class="jspsych-btn" ' +
(trial.require_movement ? "disabled" : "") +
">" +
"<strong>" + trial.button_label + "</strong>" +
"<p id = sliderValuesForTheOther> 0 </p>" +
"</button>";
display_element.innerHTML = html;
/////my code (I am Arturo Clavijo) below to see the values on a paragraph as the user moves the slider////
//sliderVAluesInRealTime = display_element.querySelector("#jspsych-html-slider-response-response").valueAsNumber;
display_element.querySelector("#jspsych-html-slider-response-response").addEventListener("input", myFunction);
function myFunction() {
var valueForTheOther = display_element.querySelector("#jspsych-html-slider-response-response").valueAsNumber;
display_element.querySelector("#sliderValuesForTheOther").innerHTML = valueForTheOther;
}
/////my code above ////
var response = {
rt: null,
response: null,
};
if (trial.require_movement) {
const enable_button = () => {
display_element.querySelector("#jspsych-html-slider-response-next").disabled = false;
};
display_element
.querySelector("#jspsych-html-slider-response-response")
.addEventListener("mousedown", enable_button);
display_element
.querySelector("#jspsych-html-slider-response-response")
.addEventListener("touchstart", enable_button);
display_element
.querySelector("#jspsych-html-slider-response-response")
.addEventListener("change", enable_button);
}
const end_trial = () => {
this.jsPsych.pluginAPI.clearAllTimeouts();
// save data
var trialdata = {
rt: response.rt,
stimulus: trial.stimulus,
slider_start: trial.slider_start,
response: response.response,
};
display_element.innerHTML = "";
// next trial
this.jsPsych.finishTrial(trialdata);
};
display_element
.querySelector("#jspsych-html-slider-response-next")
.addEventListener("click", () => {
// measure response time
var endTime = performance.now();
response.rt = Math.round(endTime - startTime);
response.response = display_element.querySelector("#jspsych-html-slider-response-response").valueAsNumber;
if (trial.response_ends_trial) {
end_trial();
}
else {
display_element.querySelector("#jspsych-html-slider-response-next").disabled = true;
}
});
if (trial.stimulus_duration !== null) {
this.jsPsych.pluginAPI.setTimeout(() => {
display_element.querySelector("#jspsych-html-slider-response-stimulus").style.visibility = "hidden";
}, trial.stimulus_duration);
}
// end trial if trial_duration is set
if (trial.trial_duration !== null) {
this.jsPsych.pluginAPI.setTimeout(end_trial, trial.trial_duration);
}
var startTime = performance.now();
}
simulate(trial, simulation_mode, simulation_options, load_callback) {
if (simulation_mode == "data-only") {
load_callback();
this.simulate_data_only(trial, simulation_options);
}
if (simulation_mode == "visual") {
this.simulate_visual(trial, simulation_options, load_callback);
}
}
create_simulation_data(trial, simulation_options) {
const default_data = {
stimulus: trial.stimulus,
slider_start: trial.slider_start,
response: this.jsPsych.randomization.randomInt(trial.min, trial.max),
rt: this.jsPsych.randomization.sampleExGaussian(500, 50, 1 / 150, true),
};
const data = this.jsPsych.pluginAPI.mergeSimulationData(default_data, simulation_options);
this.jsPsych.pluginAPI.ensureSimulationDataConsistency(trial, data);
return data;
}
simulate_data_only(trial, simulation_options) {
const data = this.create_simulation_data(trial, simulation_options);
this.jsPsych.finishTrial(data);
}
simulate_visual(trial, simulation_options, load_callback) {
const data = this.create_simulation_data(trial, simulation_options);
const display_element = this.jsPsych.getDisplayElement();
this.trial(display_element, trial);
load_callback();
if (data.rt !== null) {
const el = display_element.querySelector("input[type='range']");
setTimeout(() => {
this.jsPsych.pluginAPI.clickTarget(el);
el.valueAsNumber = data.response;
}, data.rt / 2);
this.jsPsych.pluginAPI.clickTarget(display_element.querySelector("button"), data.rt);
}
}
}
HtmlSliderResponsePlugin.info = info;
return HtmlSliderResponsePlugin;
})(jsPsychModule);