mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-11 16:18:11 +00:00
Merge pull request #2084 from bjoluc/parameter-types
Enhance parameter types
This commit is contained in:
commit
f54d48911f
@ -142,6 +142,6 @@ var trial = {
|
||||
```
|
||||
## When dynamic parameters can't be used
|
||||
|
||||
Note that if the plugin *expects* the value of a given parameter to be a function, then this function *will not* be evaluated at the start of the trial. This is because some plugins allow the researcher to specify functions that should be called at some point during the trial. Some examples of this include the `stimulus` parameter in the canvas-* plugins, the `mistake_fn` parameter in the cloze plugin, and the `stim_function` parameter in the reconstruction plugin. If you want to check whether this is the case for a particular plugin and parameter, then the parameter's `type` in the `plugin.info` section of the plugin file. If the parameter type is `jsPsych.plugins.parameterType.FUNCTION`, then this parameter must be a function and it will not be executed before the trial starts.
|
||||
Note that if the plugin *expects* the value of a given parameter to be a function, then this function *will not* be evaluated at the start of the trial. This is because some plugins allow the researcher to specify functions that should be called at some point during the trial. Some examples of this include the `stimulus` parameter in the canvas-* plugins, the `mistake_fn` parameter in the cloze plugin, and the `stim_function` parameter in the reconstruction plugin. If you want to check whether this is the case for a particular plugin and parameter, then the parameter's `type` in the `plugin.info` section of the plugin file. If the parameter type is `ParameterType.FUNCTION`, then this parameter must be a function and it will not be executed before the trial starts.
|
||||
|
||||
Even though function evaluation doesn't work the same way with these parameters, the fact that the parameters are functions means that you can get the same dynamic functionality. These functions are typically evaluated at some point during the trial, so you still get updates to values within the function during the trial.
|
@ -3,7 +3,7 @@ import autoBind from "auto-bind";
|
||||
import { version } from "../package.json";
|
||||
import { JsPsychData } from "./modules/data";
|
||||
import { PluginAPI, createJointPluginAPIObject } from "./modules/plugin-api";
|
||||
import * as plugins from "./modules/plugins";
|
||||
import { ParameterType, universalPluginParameters } from "./modules/plugins";
|
||||
import * as randomization from "./modules/randomization";
|
||||
import * as turk from "./modules/turk";
|
||||
import * as utils from "./modules/utils";
|
||||
@ -15,7 +15,6 @@ function delay(ms: number) {
|
||||
|
||||
export class JsPsych {
|
||||
extensions = <any>{};
|
||||
plugins = plugins;
|
||||
turk = turk;
|
||||
randomization = randomization;
|
||||
utils = utils;
|
||||
@ -140,10 +139,6 @@ export class JsPsych {
|
||||
this.pluginAPI.initAudio();
|
||||
}
|
||||
|
||||
// enumerated variables for special parameter types
|
||||
readonly ALL_KEYS = "allkeys";
|
||||
readonly NO_KEYS = "none";
|
||||
|
||||
/**
|
||||
* Starts an experiment using the provided timeline and returns a promise that is resolved when
|
||||
* the experiment is finished.
|
||||
@ -614,14 +609,14 @@ export class JsPsych {
|
||||
// the first line checks if the parameter is defined in the universalPluginParameters set
|
||||
// the second line checks the plugin-specific parameters
|
||||
if (
|
||||
typeof this.plugins.universalPluginParameters[key] !== "undefined" &&
|
||||
this.plugins.universalPluginParameters[key].type !== this.plugins.parameterType.FUNCTION
|
||||
typeof universalPluginParameters[key] !== "undefined" &&
|
||||
universalPluginParameters[key].type !== ParameterType.FUNCTION
|
||||
) {
|
||||
trial[key] = this.replaceFunctionsWithValues(trial[key], null);
|
||||
}
|
||||
if (
|
||||
typeof trial.type.info.parameters[key] !== "undefined" &&
|
||||
trial.type.info.parameters[key].type !== this.plugins.parameterType.FUNCTION
|
||||
trial.type.info.parameters[key].type !== ParameterType.FUNCTION
|
||||
) {
|
||||
trial[key] = this.replaceFunctionsWithValues(trial[key], trial.type.info.parameters[key]);
|
||||
}
|
||||
@ -658,7 +653,7 @@ export class JsPsych {
|
||||
for (var i = 0; i < keys.length; i++) {
|
||||
if (
|
||||
typeof info.nested[keys[i]] == "object" &&
|
||||
info.nested[keys[i]].type !== this.plugins.parameterType.FUNCTION
|
||||
info.nested[keys[i]].type !== ParameterType.FUNCTION
|
||||
) {
|
||||
obj[keys[i]] = this.replaceFunctionsWithValues(obj[keys[i]], info.nested[keys[i]]);
|
||||
}
|
||||
@ -673,7 +668,7 @@ export class JsPsych {
|
||||
private setDefaultValues(trial) {
|
||||
for (var param in trial.type.info.parameters) {
|
||||
// check if parameter is complex with nested defaults
|
||||
if (trial.type.info.parameters[param].type == this.plugins.parameterType.COMPLEX) {
|
||||
if (trial.type.info.parameters[param].type == ParameterType.COMPLEX) {
|
||||
if (trial.type.info.parameters[param].array == true) {
|
||||
// iterate over each entry in the array
|
||||
trial[param].forEach(function (ip, i) {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { JsPsych } from "./JsPsych";
|
||||
import { parameterType } from "./modules/plugins";
|
||||
import { ParameterType } from "./modules/plugins";
|
||||
import {
|
||||
repeat,
|
||||
sampleWithReplacement,
|
||||
@ -546,9 +546,9 @@ export class TimelineNode {
|
||||
|
||||
/** Maps parameter types to their corresponding preload type */
|
||||
const parameterTypeMap = new Map<number, PreloadType>([
|
||||
[parameterType.AUDIO, "audio"],
|
||||
[parameterType.IMAGE, "image"],
|
||||
[parameterType.VIDEO, "video"],
|
||||
[ParameterType.AUDIO, "audio"],
|
||||
[ParameterType.IMAGE, "image"],
|
||||
[ParameterType.VIDEO, "video"],
|
||||
]);
|
||||
|
||||
function recurseTimeline(node: TimelineNode) {
|
||||
|
@ -24,5 +24,11 @@ export function initJsPsych(options?) {
|
||||
}
|
||||
|
||||
export { JsPsych } from "./JsPsych";
|
||||
export { JsPsychPlugin, PluginInfo, TrialType } from "./modules/plugins";
|
||||
export { parameterType } from "./modules/plugins";
|
||||
export {
|
||||
JsPsychPlugin,
|
||||
PluginInfo,
|
||||
TrialType,
|
||||
ParameterType,
|
||||
universalPluginParameters,
|
||||
UniversalPluginParameters,
|
||||
} from "./modules/plugins";
|
||||
|
@ -1,10 +1,5 @@
|
||||
export class KeyboardListenerAPI {
|
||||
constructor(
|
||||
private areResponsesCaseSensitive: boolean,
|
||||
private minimumValidRt = 0,
|
||||
private readonly ALL_KEYS = "allkeys",
|
||||
private readonly NO_KEYS = "none"
|
||||
) {}
|
||||
constructor(private areResponsesCaseSensitive: boolean, private minimumValidRt = 0) {}
|
||||
|
||||
private keyboard_listeners = [];
|
||||
|
||||
@ -83,9 +78,9 @@ export class KeyboardListenerAPI {
|
||||
var valid_response = false;
|
||||
if (typeof parameters.valid_responses === "undefined") {
|
||||
valid_response = true;
|
||||
} else if (parameters.valid_responses == this.ALL_KEYS) {
|
||||
} else if (parameters.valid_responses == "ALL_KEYS") {
|
||||
valid_response = true;
|
||||
} else if (parameters.valid_responses != this.NO_KEYS) {
|
||||
} else if (parameters.valid_responses != "NO_KEYS") {
|
||||
if (parameters.valid_responses.includes(e.key)) {
|
||||
valid_response = true;
|
||||
}
|
||||
|
@ -11,12 +11,7 @@ export function createJointPluginAPIObject(jsPsych: JsPsych) {
|
||||
return Object.assign(
|
||||
{},
|
||||
...[
|
||||
new KeyboardListenerAPI(
|
||||
settings.case_sensitive_responses,
|
||||
settings.minimum_valid_rt,
|
||||
jsPsych.ALL_KEYS,
|
||||
jsPsych.NO_KEYS
|
||||
),
|
||||
new KeyboardListenerAPI(settings.case_sensitive_responses, settings.minimum_valid_rt),
|
||||
new TimeoutAPI(),
|
||||
new MediaAPI(settings.use_webaudio, jsPsych.webaudio_context),
|
||||
new HardwareAPI(),
|
||||
|
@ -12,43 +12,47 @@ type SetRequired<BaseType, Keys extends keyof BaseType> = Simplify<
|
||||
Omit<BaseType, Keys> & Required<Pick<BaseType, Keys>>
|
||||
>;
|
||||
|
||||
// enumerate possible parameter types for plugins
|
||||
export const parameterType = <const>{
|
||||
BOOL: 0,
|
||||
STRING: 1,
|
||||
INT: 2,
|
||||
FLOAT: 3,
|
||||
FUNCTION: 4,
|
||||
KEY: 5,
|
||||
SELECT: 6,
|
||||
HTML_STRING: 7,
|
||||
IMAGE: 8,
|
||||
AUDIO: 9,
|
||||
VIDEO: 10,
|
||||
OBJECT: 11,
|
||||
COMPLEX: 12,
|
||||
TIMELINE: 13,
|
||||
};
|
||||
/**
|
||||
* Parameter types for plugins
|
||||
*/
|
||||
export enum ParameterType {
|
||||
BOOL,
|
||||
STRING,
|
||||
INT,
|
||||
FLOAT,
|
||||
FUNCTION,
|
||||
KEY,
|
||||
KEYS,
|
||||
SELECT,
|
||||
HTML_STRING,
|
||||
IMAGE,
|
||||
AUDIO,
|
||||
VIDEO,
|
||||
OBJECT,
|
||||
COMPLEX,
|
||||
TIMELINE,
|
||||
}
|
||||
|
||||
type ParameterTypeMap = {
|
||||
0: boolean; // BOOL
|
||||
1: string; // STRING
|
||||
2: number; // INT
|
||||
3: number; // FLOAT
|
||||
4: (...args: any[]) => any; // FUNCTION
|
||||
5: string; // KEY
|
||||
6: any; // SELECT
|
||||
7: string; // HTML_STRING
|
||||
8: string; // IMAGE
|
||||
9: string; // AUDIO
|
||||
10: string; // VIDEO
|
||||
11: object; // OBJECT
|
||||
12: any; // COMPLEX
|
||||
13: any; // TIMELINE
|
||||
[ParameterType.BOOL]: boolean;
|
||||
[ParameterType.STRING]: string;
|
||||
[ParameterType.INT]: number;
|
||||
[ParameterType.FLOAT]: number;
|
||||
[ParameterType.FUNCTION]: (...args: any[]) => any;
|
||||
[ParameterType.KEY]: string;
|
||||
[ParameterType.KEYS]: string[] | "ALL_KEYS" | "NO_KEYS";
|
||||
[ParameterType.SELECT]: any;
|
||||
[ParameterType.HTML_STRING]: string;
|
||||
[ParameterType.IMAGE]: string;
|
||||
[ParameterType.AUDIO]: string;
|
||||
[ParameterType.VIDEO]: string;
|
||||
[ParameterType.OBJECT]: object;
|
||||
[ParameterType.COMPLEX]: any;
|
||||
[ParameterType.TIMELINE]: any;
|
||||
};
|
||||
|
||||
export interface ParameterInfo {
|
||||
type: keyof ParameterTypeMap;
|
||||
type: ParameterType;
|
||||
array?: boolean;
|
||||
pretty_name?: string;
|
||||
default?: any;
|
||||
@ -59,7 +63,7 @@ export interface ParameterInfos {
|
||||
[key: string]: ParameterInfo;
|
||||
}
|
||||
|
||||
type ParameterType<I extends ParameterInfo> = I["array"] extends boolean // Hack to deal with type widening in parameter declarations inferred from JavaScript
|
||||
type InferredParameter<I extends ParameterInfo> = I["array"] extends true
|
||||
? Array<ParameterTypeMap[I["type"]]>
|
||||
: ParameterTypeMap[I["type"]];
|
||||
|
||||
@ -69,17 +73,17 @@ type RequiredParameterNames<I extends ParameterInfos> = {
|
||||
|
||||
type InferredParameters<I extends ParameterInfos> = SetRequired<
|
||||
{
|
||||
[Property in keyof I]?: ParameterType<I[Property]>;
|
||||
[Property in keyof I]?: InferredParameter<I[Property]>;
|
||||
},
|
||||
RequiredParameterNames<I>
|
||||
>;
|
||||
|
||||
export const universalPluginParameters: ParameterInfos = {
|
||||
export const universalPluginParameters = <const>{
|
||||
/**
|
||||
* Data to add to this trial (key-value pairs)
|
||||
*/
|
||||
data: {
|
||||
type: parameterType.OBJECT,
|
||||
type: ParameterType.OBJECT,
|
||||
pretty_name: "Data",
|
||||
default: {},
|
||||
},
|
||||
@ -87,7 +91,7 @@ export const universalPluginParameters: ParameterInfos = {
|
||||
* Function to execute when trial begins
|
||||
*/
|
||||
on_start: {
|
||||
type: parameterType.FUNCTION,
|
||||
type: ParameterType.FUNCTION,
|
||||
pretty_name: "On start",
|
||||
default: function () {
|
||||
return;
|
||||
@ -97,7 +101,7 @@ export const universalPluginParameters: ParameterInfos = {
|
||||
* Function to execute when trial is finished
|
||||
*/
|
||||
on_finish: {
|
||||
type: parameterType.FUNCTION,
|
||||
type: ParameterType.FUNCTION,
|
||||
pretty_name: "On finish",
|
||||
default: function () {
|
||||
return;
|
||||
@ -107,7 +111,7 @@ export const universalPluginParameters: ParameterInfos = {
|
||||
* Function to execute after the trial has loaded
|
||||
*/
|
||||
on_load: {
|
||||
type: parameterType.FUNCTION,
|
||||
type: ParameterType.FUNCTION,
|
||||
pretty_name: "On load",
|
||||
default: function () {
|
||||
return;
|
||||
@ -117,7 +121,7 @@ export const universalPluginParameters: ParameterInfos = {
|
||||
* Length of gap between the end of this trial and the start of the next trial
|
||||
*/
|
||||
post_trial_gap: {
|
||||
type: parameterType.INT,
|
||||
type: ParameterType.INT,
|
||||
pretty_name: "Post trial gap",
|
||||
default: null,
|
||||
},
|
||||
@ -125,7 +129,7 @@ export const universalPluginParameters: ParameterInfos = {
|
||||
* A list of CSS classes to add to the jsPsych display element for the duration of this trial
|
||||
*/
|
||||
css_classes: {
|
||||
type: parameterType.STRING,
|
||||
type: ParameterType.STRING,
|
||||
pretty_name: "Custom CSS classes",
|
||||
default: null,
|
||||
},
|
||||
|
@ -1,7 +1,7 @@
|
||||
// import cloze from "@jspsych/plugin-cloze";
|
||||
import htmlKeyboardResponse from "@jspsych/plugin-html-keyboard-response";
|
||||
|
||||
import { JsPsych, JsPsychPlugin, TrialType, parameterType } from "../../src";
|
||||
import { JsPsych, JsPsychPlugin, ParameterType, TrialType } from "../../src";
|
||||
import { clickTarget, pressKey, startTimeline } from "../utils";
|
||||
|
||||
// import surveyMultiChoice from "@jspsych/plugin-survey-multi-choice";
|
||||
@ -20,7 +20,7 @@ describe("standard use of function as parameter", () => {
|
||||
pressKey("a");
|
||||
});
|
||||
|
||||
test.skip("parameters can be protected from early evaluation using jsPsych.plugins.parameterType.FUNCTION", async () => {
|
||||
test.skip("parameters can be protected from early evaluation using ParameterType.FUNCTION", async () => {
|
||||
var mock = jest.fn();
|
||||
|
||||
await startTimeline([
|
||||
@ -142,22 +142,22 @@ describe("nested parameters as functions", () => {
|
||||
await expectFinished();
|
||||
});
|
||||
|
||||
test("nested parameters can be protected from early evaluation using jsPsych.plugins.parameterType.FUNCTION", async () => {
|
||||
test("nested parameters can be protected from early evaluation using ParameterType.FUNCTION", async () => {
|
||||
// currently no plugins that use this feature (Jan. 2021), so here's a simple placeholder plugin.
|
||||
|
||||
const info = <const>{
|
||||
name: "function-test-plugin",
|
||||
parameters: {
|
||||
foo: {
|
||||
type: parameterType.COMPLEX,
|
||||
type: ParameterType.COMPLEX,
|
||||
default: null,
|
||||
nested: {
|
||||
not_protected: {
|
||||
type: parameterType.STRING,
|
||||
type: ParameterType.STRING,
|
||||
default: null,
|
||||
},
|
||||
protected: {
|
||||
type: parameterType.FUNCTION,
|
||||
type: ParameterType.FUNCTION,
|
||||
default: null,
|
||||
},
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
import htmlKeyboardResponse from "@jspsych/plugin-html-keyboard-response";
|
||||
|
||||
import { initJsPsych, parameterType } from "../../src";
|
||||
import { ParameterType, initJsPsych } from "../../src";
|
||||
import { TimelineNode } from "../../src/TimelineNode";
|
||||
import { pressKey, startTimeline } from "../utils";
|
||||
|
||||
@ -520,13 +520,13 @@ describe("TimelineNode", () => {
|
||||
info: {
|
||||
name: "my-plugin",
|
||||
parameters: {
|
||||
one: { type: parameterType.IMAGE },
|
||||
two: { type: parameterType.VIDEO },
|
||||
three: { type: parameterType.AUDIO },
|
||||
four: { type: parameterType.IMAGE, preload: true },
|
||||
five: { type: parameterType.IMAGE, preload: false },
|
||||
one: { type: ParameterType.IMAGE },
|
||||
two: { type: ParameterType.VIDEO },
|
||||
three: { type: ParameterType.AUDIO },
|
||||
four: { type: ParameterType.IMAGE, preload: true },
|
||||
five: { type: ParameterType.IMAGE, preload: false },
|
||||
six: {
|
||||
type: parameterType.STRING,
|
||||
type: ParameterType.STRING,
|
||||
// This is illegal! But it should still not be added
|
||||
preload: true,
|
||||
},
|
||||
@ -551,7 +551,7 @@ describe("TimelineNode", () => {
|
||||
type: {
|
||||
info: {
|
||||
name: "plugin1",
|
||||
parameters: { one: { type: parameterType.STRING } },
|
||||
parameters: { one: { type: ParameterType.STRING } },
|
||||
},
|
||||
},
|
||||
},
|
||||
@ -559,7 +559,7 @@ describe("TimelineNode", () => {
|
||||
type: {
|
||||
info: {
|
||||
name: "plugin2",
|
||||
parameters: { one: { type: parameterType.AUDIO } },
|
||||
parameters: { one: { type: ParameterType.AUDIO } },
|
||||
},
|
||||
},
|
||||
},
|
||||
@ -570,8 +570,8 @@ describe("TimelineNode", () => {
|
||||
info: {
|
||||
name: "plugin3",
|
||||
parameters: {
|
||||
one: { type: parameterType.VIDEO },
|
||||
two: { type: parameterType.IMAGE },
|
||||
one: { type: ParameterType.VIDEO },
|
||||
two: { type: ParameterType.IMAGE },
|
||||
},
|
||||
},
|
||||
},
|
||||
|
@ -51,10 +51,10 @@ describe("#getKeyboardResponse", () => {
|
||||
expect(callback).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
test("should not respond when jsPsych.NO_KEYS is used", () => {
|
||||
test('should not respond when "NO_KEYS" is used', () => {
|
||||
jsPsych.pluginAPI.getKeyboardResponse({
|
||||
callback_function: callback,
|
||||
valid_responses: jsPsych.NO_KEYS,
|
||||
valid_responses: "NO_KEYS",
|
||||
});
|
||||
|
||||
expect(callback).toHaveBeenCalledTimes(0);
|
||||
@ -69,7 +69,7 @@ describe("#getKeyboardResponse", () => {
|
||||
|
||||
jsPsych.pluginAPI.getKeyboardResponse({
|
||||
callback_function: callback,
|
||||
valid_responses: jsPsych.ALL_KEYS,
|
||||
valid_responses: "ALL_KEYS",
|
||||
allow_held_key: false,
|
||||
});
|
||||
|
||||
@ -85,7 +85,7 @@ describe("#getKeyboardResponse", () => {
|
||||
|
||||
jsPsych.pluginAPI.getKeyboardResponse({
|
||||
callback_function: callback,
|
||||
valid_responses: jsPsych.ALL_KEYS,
|
||||
valid_responses: "ALL_KEYS",
|
||||
allow_held_key: true,
|
||||
});
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { JsPsych, JsPsychPlugin, TrialType, parameterType } from "jspsych";
|
||||
import { JsPsych, JsPsychPlugin, ParameterType, TrialType } from "jspsych";
|
||||
|
||||
const info = <const>{
|
||||
name: "html-keyboard-response",
|
||||
@ -7,7 +7,7 @@ const info = <const>{
|
||||
* The HTML string to be displayed
|
||||
*/
|
||||
stimulus: {
|
||||
type: parameterType.HTML_STRING,
|
||||
type: ParameterType.HTML_STRING,
|
||||
pretty_name: "Stimulus",
|
||||
default: undefined,
|
||||
},
|
||||
@ -15,16 +15,16 @@ const info = <const>{
|
||||
* The keys the subject is allowed to press to respond to the stimulus.
|
||||
*/
|
||||
choices: {
|
||||
type: parameterType.KEY,
|
||||
type: ParameterType.KEY,
|
||||
array: true,
|
||||
pretty_name: "Choices",
|
||||
default: "allkeys", // cannot access jsPsych.ALL_KEYS here – ideally, it would be static
|
||||
default: "ALL_KEYS",
|
||||
},
|
||||
/**
|
||||
* Any content here will be displayed below the stimulus.
|
||||
*/
|
||||
prompt: {
|
||||
type: parameterType.STRING,
|
||||
type: ParameterType.STRING,
|
||||
pretty_name: "Prompt",
|
||||
default: null,
|
||||
},
|
||||
@ -32,7 +32,7 @@ const info = <const>{
|
||||
* How long to hide the stimulus.
|
||||
*/
|
||||
stimulus_duration: {
|
||||
type: parameterType.INT,
|
||||
type: ParameterType.INT,
|
||||
pretty_name: "Stimulus duration",
|
||||
default: null,
|
||||
},
|
||||
@ -40,7 +40,7 @@ const info = <const>{
|
||||
* How long to show trial before it ends.
|
||||
*/
|
||||
trial_duration: {
|
||||
type: parameterType.INT,
|
||||
type: ParameterType.INT,
|
||||
pretty_name: "Trial duration",
|
||||
default: null,
|
||||
},
|
||||
@ -48,7 +48,7 @@ const info = <const>{
|
||||
* If true, trial will end when subject makes a response.
|
||||
*/
|
||||
response_ends_trial: {
|
||||
type: parameterType.BOOL,
|
||||
type: ParameterType.BOOL,
|
||||
pretty_name: "Response ends trial",
|
||||
default: true,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user