jsPsych/plugins/jspsych-survey-multi-picture.js
2017-06-24 23:53:50 -04:00

148 lines
5.7 KiB
JavaScript

/**
* jspsych-survey-multi-picture
* a jspsych plugin for multiple choice survey questions
*
* documentation: docs.jspsych.org
*
*/
jsPsych.plugins['survey-multi-picture'] = (function() {
var plugin = {};
plugin.info = {
name: 'survey-multi-picture',
description: '',
parameters: {
questions: {
type: [jsPsych.plugins.parameterType.STRING],
array: true,
default: undefined,
no_function: false,
description: ''
},
options: {
type: [jsPsych.plugins.parameterType.STRING],
array: true,
default: undefined,
no_function: false,
description: ''
},
required: {
type: [jsPsych.plugins.parameterType.BOOL],
array: true,
default: false,
no_function: false,
description: ''
},
horitzontal: {
type: [jsPsych.plugins.parameterType.BOOL],
default: false,
no_function: false,
description: ''
},
preamble: {
type: [jsPsych.plugins.parameterType.STRING],
default: '',
no_function: false,
description: ''
}
}
}
plugin.trial = function(display_element, trial) {
var plugin_id_name = "jspsych-survey-multi-picture";
var plugin_id_selector = '#' + plugin_id_name;
var _join = function( /*args*/ ) {
var arr = Array.prototype.slice.call(arguments, _join.length);
return arr.join(separator = '-');
}
// trial defaults
trial.preamble = typeof trial.preamble == 'undefined' ? "" : trial.preamble;
trial.required = typeof trial.required == 'undefined' ? null : trial.required;
trial.horizontal = typeof trial.required == 'undefined' ? false : trial.horizontal;
// if any trial variables are functions
// this evaluates the function and replaces
// it with the output of the function
trial = jsPsych.pluginAPI.evaluateFunctionParameters(trial);
// inject CSS for trial
display_element.innerHTML = '<style id="jspsych-survey-multi-picture-css"></style>';
var cssstr = ".jspsych-survey-multi-picture-question { margin-top: 2em; margin-bottom: 2em; text-align: center; }"+
".jspsych-survey-multi-picture-text span.required {color: darkred;}"+
".jspsych-survey-multi-picture-option { line-height: 2; margin-bottom: 10px; }"+
".jspsych-survey-multi-picture-horizontal .jspsych-survey-multi-picture-option { display: inline-block; margin-left: 1em; margin-right: 1em; vertical-align: top;}"
display_element.querySelector('#jspsych-survey-multi-picture-css').innerHTML = cssstr;
// form element
var trial_form_id = _join(plugin_id_name, "form");
display_element.innerHTML += '<form id="'+trial_form_id+'"></form>';
var trial_form = display_element.querySelector("#" + trial_form_id);
// show preamble text
var preamble_id_name = _join(plugin_id_name, 'preamble');
trial_form.innerHTML += '<div id="'+preamble_id_name+'" class="'+preamble_id_name+'">'+trial.preamble+'</div>';
// add multiple-picture questions
for (var i = 0; i < trial.questions.length; i++) {
// create question container
var question_classes = [_join(plugin_id_name, 'question')];
if (trial.horizontal) {
question_classes.push(_join(plugin_id_name, 'horizontal'));
}
trial_form.innerHTML += '<div id="'+_join(plugin_id_name, i)+'" class="'+question_classes.join(' ')+'"></div>';
var question_selector = _join(plugin_id_selector, i);
// add question text
display_element.querySelector(question_selector).innerHTML += '<p id="survey-question" class="' + plugin_id_name + '-text survey-multi-picture">' + trial.questions[i] + '</p>';
// create option clickble images
for (var j = 0; j < trial.options[i].length; j++) {
var option_id_name = _join(plugin_id_name, "option", i, j),
option_id_selector = '#' + option_id_name;
// add image container
display_element.querySelector(question_selector).innerHTML += '<div id="'+option_id_name+'" class="'+_join(plugin_id_name, 'option')+'"></div>';
// add label
if(trial.options[i][j].label){
var label = trial.options[i][j].label;
var option_label = '<label class="' + plugin_id_name + '-text">' + label + '</label>';
display_element.querySelector(option_id_selector).innerHTML += option_label;
} else {
var option_label = '<label class="' + plugin_id_name + '-text"></label>';
display_element.querySelector(option_id_selector).innerHTML += option_label;
}
display_element.querySelector(option_id_selector + " label").innerHTML =
'<img style="width: 250px; height: auto;" class="'+plugin_id_name+'-image" src="'+trial.options[i][j].url+'">' +
display_element.querySelector(option_id_selector + " label").innerHTML;
}
}
var matches = display_element.querySelectorAll(".jspsych-survey-multi-picture-option");
for(var index=0; index<matches.length; index++){
currentImageDiv = matches[index];
currentImageDiv.cursor = 'pointer';
currentImageDiv.addEventListener('click', function(event){
var endTime = (new Date()).getTime();
var response_time = endTime - startTime;
var question_data = {};
var id = 'Q' + index;
var val = currentImageDiv.querySelector('.'+plugin_id_name+'-image').src;
var obje = {};
obje[id] = val;
Object.assign(question_data, obje);
var trial_data = {
"rt": response_time,
"responses": JSON.stringify(question_data)
};
display_element.innerHTML = '';
jsPsych.finishTrial(trial_data);
});
}
var startTime = (new Date()).getTime();
};
return plugin;
})();