jsPsych/examples/lexical-decision.html
Becky Gilbert db754538b7
Convert plugins to classes and update examples (#2078)
* modularize plugins: edit index.ts and example files (WIP)

* continue modularizing plugins: edit index.ts and example files (WIP)

* continue modularizing plugins: edit index.ts and example files (WIP)

* continue modularizing plugins and example files, make info static in plugin classes

* add preload flag to plugin info, fix a few parameterType values

* change preload flags in plugin info from audio/image/video strings to boolean

* convert more plugins and example files

* convert more plugins/examples, sync with webgazer branch plugins/examples (not working on this branch)

* remove preload flag from info, change to ParameterType, change to "ALL_KEYS"/"NO_KEYS", change KEY type to KEYS for array params

* remove descriptions from plugin info, fix some ALL_KEYS/NO_KEYS errors

* remove descriptions and add pretty names to plugin info

* remove/edit comments re ALL_KEYS/NO_KEYS and TS errors

* fix some preload plugin errors and convert example file (plugin still not working due to getAutoPreloadList)

* convert RDK plugin and example file

* convert preload plugin and example, add JsPsych getTimelineDescription method for auto-preloading (still not working for audio due to getAudioBuffer

* fix jsPsych getTimelineDescription method so that it does recursive search

* add image and video preloading to plugin examples

* Merge branch 'modularization' into modularization-plugins

* add tests for reconstruction

* fix timeline array getter method: add private timelineDescription var, set to timeline array in run(), rename getTimelineDescription to getTimeline

* changes in response to PR review: fix JsDoc comments, fix array: true in param info, change HTML string param types, add JsDoc author/file/see docs for all plugin classes, switch to @ts-expect-error. Thanks @bjoluc!

* fix JsDoc comments for plugin classes and preload trials parameter

* change preload type to boolean in ParameterInfo interface, and add `preload: false` to virtual-chinrest item_path image parameter

* All my tests except for preload plugin (will do that tomorrow)

* minor fixes to reconstruction tests

* Update preload plugin tests

* Finish test conversion

* switch to arrow functions to fix this keyword errors in plugins, add audio preloading into plugin example files, fix typos

* convert non-plugin example files (WIP, not tested)

* Fix allow_held_keys -> allow_held_key parameter in virtual-chinrest plugin

* Fix `keyboardListener` type in serial-reaction-time plugin

* type fixes for RDK, simplifying `correctOrNot()` function

* fixed ["ALL_KEYS"] => "ALL_KEYS" for iat plugins and tests

* Build jspsych packages before everything else

Dependent builds were previously failing due to missing type definitions

* Remove console.log from html-keyboard-response tests

I think I accidentially committed it.

* fix the delayed start to animation bug (#1885)

* round all RTs to nearest int (#2108)

* fixes and tests #1900 - IAT parameter problems

* finish converting/testing example files, add init settings, add audio preloading, fix errors

* fix progress-bar timeline to demo an example where auto-updating the progress bar works well

* Revert "round all RTs to nearest int (#2108)"

This reverts commit f53145d2e3.

* change how delayed timeline variables are implemented

* use static for generate_stimulus method so that it can be called on the vsl-grid-scene class

* fix external-html plugin and example (switch to arrow function for proper this context, fix incorrect parameter name)

* remove outdated TO DO comments

Co-authored-by: bjoluc <mail@bjoluc.de>
Co-authored-by: Josh de Leeuw <josh.deleeuw@gmail.com>
2021-09-08 09:44:53 -04:00

130 lines
5.7 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<script src="../packages/jspsych/dist/index.browser.js"></script>
<script src="../packages/plugin-html-keyboard-response/dist/index.browser.js"></script>
<script src="../packages/plugin-html-button-response/dist/index.browser.js"></script>
<link rel="stylesheet" href="../packages/jspsych/css/jspsych.css">
<style>
.stimulus { font-size: 32px; }
</style>
</head>
<script>
var jsPsych = initJsPsych({
on_finish: function() {
jsPsych.data.displayData();
},
default_iti: 250
});
var timeline = [];
var instructions = {
type: jsPsychHtmlButtonResponse,
stimulus: '<p>Each screen will show either an English word or letters that do not form a word.</p>'+
'<p>Press y if the letters form a valid word.</p><p>Press n if the letters do not form a valid word.</p>',
choices: ['Ready to start']
};
timeline.push(instructions);
var stimuli = [
{word: 'woman', word_validity: 'valid', word_frequency: 'high'},
{word: 'title', word_validity: 'valid', word_frequency: 'high'},
{word: 'speed', word_validity: 'valid', word_frequency: 'high'},
{word: 'movie', word_validity: 'valid', word_frequency: 'high'},
{word: 'night', word_validity: 'valid', word_frequency: 'high'},
{word: 'house', word_validity: 'valid', word_frequency: 'high'},
{word: 'child', word_validity: 'valid', word_frequency: 'high'},
{word: 'apple', word_validity: 'valid', word_frequency: 'high'},
{word: 'books', word_validity: 'valid', word_frequency: 'high'},
{word: 'color', word_validity: 'valid', word_frequency: 'high'},
{word: 'whigs', word_validity: 'valid', word_frequency: 'low'},
{word: 'pecan', word_validity: 'valid', word_frequency: 'low'},
{word: 'hanky', word_validity: 'valid', word_frequency: 'low'},
{word: 'femur', word_validity: 'valid', word_frequency: 'low'},
{word: 'tusks', word_validity: 'valid', word_frequency: 'low'},
{word: 'tongs', word_validity: 'valid', word_frequency: 'low'},
{word: 'petal', word_validity: 'valid', word_frequency: 'low'},
{word: 'dunce', word_validity: 'valid', word_frequency: 'low'},
{word: 'friar', word_validity: 'valid', word_frequency: 'low'},
{word: 'gable', word_validity: 'valid', word_frequency: 'low'},
{word: 'womfn', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'tgtle', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'speqd', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'movje', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'npght', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'hoxse', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'chrld', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'wpple', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'boxks', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'colwr', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'whzgs', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'pecjn', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'hankk', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'fembr', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'tmsks', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'tvngs', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'pettl', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'duncr', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'friwr', word_validity: 'invalid', word_frequency: 'NA'},
{word: 'gabls', word_validity: 'invalid', word_frequency: 'NA'}
];
var trials = {
timeline_variables: stimuli,
randomize_order: true,
timeline: [
{
type: jsPsychHtmlKeyboardResponse,
stimulus: '+',
choices: "NO_KEYS",
trial_duration: 500,
post_trial_gap: 0,
css_classes: ['stimulus']
},
{
type: jsPsychHtmlKeyboardResponse,
stimulus: jsPsych.timelineVariable('word'),
choices: ['y','n'],
post_trial_gap: 0,
css_classes: ['stimulus'],
data: {
word_validity: jsPsych.timelineVariable('word_validity'),
word_frequency: jsPsych.timelineVariable('word_frequency')
},
on_finish: function(data) {
if (data.word_validity == 'valid') {
var correct = jsPsych.pluginAPI.compareKeys(data.response, 'y');
} else {
var correct = jsPsych.pluginAPI.compareKeys(data.response, 'n');
}
data.correct = correct;
}
}
]
};
timeline.push(trials);
var debrief = {
type: jsPsychHtmlKeyboardResponse,
choices: ['c'],
stimulus: function() {
var high_rt = jsPsych.data.get().filter({word_frequency: 'high', correct: true}).select('rt').mean();
var low_rt = jsPsych.data.get().filter({word_frequency: 'low', correct: true}).select('rt').mean();
var message = "<p>All done!</p>"+
"<p>Your average correct response time for high frequency English words was "+Math.round(high_rt)+"ms.</p>"+
"<p>Your average correct response time for low frequency English words was "+Math.round(low_rt)+"ms.</p>"+
"<p>The typical pattern of results is that people are faster to respond to high frequency (common) "+
"word than low frequency (uncommon) words.</p>"+
"<p>Press c to see the entire set of data generated by this experiment.</p>";
return message;
}
};
timeline.push(debrief);
jsPsych.run(timeline);
</script>
</html>