mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00
172 lines
6.1 KiB
Markdown
172 lines
6.1 KiB
Markdown
# Event-related callback functions
|
|
|
|
jsPsych offers the ability to call arbitrary functions in response to certain events occurring, like the end of a trial or when new data is saved. This page summarizes the different opportunities for callback functions and how to specify them.
|
|
|
|
---
|
|
|
|
## on_close
|
|
|
|
The `on_close` callback can be declared in the `initJsPsych` method. The callback triggers when the user leaves the page, but before any content on the page is removed from the browser's memory. This can be used, for example, to save data as the user is leaving the page.
|
|
|
|
```javascript
|
|
initJsPsych({
|
|
on_close: function(){
|
|
var data = jsPsych.data.get().json();
|
|
save_data_to_server(data);
|
|
}
|
|
});
|
|
```
|
|
|
|
---
|
|
|
|
## on_data_update
|
|
|
|
The `on_data_update` callback can be declared in the `initJsPsych` method. The callback triggers at the end of a data update cycle. This happens after every trial, after the on_finish (trial) and on_trial_finish events execute, allowing you to modify the data in those callbacks, and then use this callback to store the data. The function will be passed a single argument, which contains the data that was written.
|
|
|
|
```javascript
|
|
initJsPsych({
|
|
on_data_update: function(data) {
|
|
console.log('Just added new data. The contents of the data are: '+JSON.stringify(data));
|
|
}
|
|
});
|
|
```
|
|
|
|
---
|
|
|
|
## on_finish (trial)
|
|
|
|
The `on_finish` callback can be added to any trial. The callback will trigger whenever the trial ends. The callback function will be passed a single argument, containing the data object from the trial. This data object is *editable*. Any changes made in the on_finish function will be stored in the internal data collection.
|
|
|
|
```javascript
|
|
var trial = {
|
|
type: jsPsychImageKeyboardResponse,
|
|
stimulus: 'imgA.png',
|
|
on_finish: function(data) {
|
|
if(jsPsych.pluginAPI.compareKeys(data.response, 'j')){
|
|
data.correct = true;
|
|
} else {
|
|
data.correct = false;
|
|
}
|
|
}
|
|
};
|
|
```
|
|
|
|
---
|
|
|
|
## on_finish (experiment)
|
|
|
|
The `on_finish` callback can be declared in the `initJsPsych` method. The callback will trigger once all trials in the experiment have been run. The method will be passed a single argument, containing all of the data generated in the experiment.
|
|
|
|
```javascript
|
|
initJsPsych({
|
|
on_finish: function(data) {
|
|
console.log('The experiment is over! Here is all the data: '+JSON.stringify(data));
|
|
}
|
|
});
|
|
```
|
|
|
|
---
|
|
|
|
## on_load
|
|
|
|
The `on_load` callback can be added to any trial. The callback will trigger once the trial has completed loading. For most plugins, this will occur once the display has been initially updated but before any user interactions or timed events (e.g., animations) have occurred.
|
|
|
|
```javascript
|
|
var trial = {
|
|
type: jsPsychImageKeyboardResponse,
|
|
stimulus: 'imgA.png',
|
|
on_load: function() {
|
|
console.log('The trial just finished loading.');
|
|
}
|
|
};
|
|
```
|
|
|
|
---
|
|
|
|
## on_start (trial)
|
|
|
|
The `on_start` callback can be added to any trial. The callback will trigger right before the trial begins. The callback function will be passed a single argument, containing the trial object. If any of the parameters of the trial are functions or timeline variables, these will be evaluated before `on_start` is called, and the trial object will contain the evaluated value. The trial object is modifiable, and any changes made will affect the trial.
|
|
|
|
```javascript
|
|
var trial = {
|
|
type: jsPsychImageKeyboardResponse,
|
|
stimulus: 'imgA.png',
|
|
on_start: function(trial) {
|
|
console.log('The trial is about to start.');
|
|
trial.stimulus = 'imgB.png'; // this will change what stimulus is displayed in the trial
|
|
}
|
|
};
|
|
```
|
|
|
|
---
|
|
|
|
## on_timeline_finish
|
|
|
|
The `on_timeline_finish` callback can be declared in a timeline node. The callback will be triggered when the timeline ends. The event will trigger only once if the timeline loops, after all repetitions are complete.
|
|
|
|
```javascript
|
|
var procedure = {
|
|
timeline: [trial1, trial2],
|
|
timeline_variables: [
|
|
{ stimulus: 'person-1.jpg' },
|
|
{ stimulus: 'person-2.jpg' },
|
|
{ stimulus: 'person-3.jpg' },
|
|
{ stimulus: 'person-4.jpg' }
|
|
],
|
|
on_timeline_finish: function() {
|
|
console.log('This timeline has finished.');
|
|
}
|
|
}
|
|
```
|
|
|
|
---
|
|
|
|
## on_timeline_start
|
|
|
|
The `on_timeline_start` callback can be declared in a timeline node. The callback will be triggered when the timeline starts during the experiment. If a `conditional_function` is used, then the conditional function will execute first, and the `on_timeline_start` function will only execute if the conditional function returns `true`. The event is triggered once, even if the timeline has a `loop_function` or `repetitions`.
|
|
|
|
```javascript
|
|
var procedure = {
|
|
timeline: [trial1, trial2],
|
|
conditional_function: function() {
|
|
console.log('This conditional function will execute first.')
|
|
return true;
|
|
},
|
|
on_timeline_start: function() {
|
|
console.log('This timeline has started');
|
|
}
|
|
}
|
|
```
|
|
|
|
---
|
|
|
|
## on_trial_finish
|
|
|
|
The `on_trial_finish` callback can be declared in the `initJsPsych` method. The callback will trigger at the end of every trial in the experiment, after the trial object's [`on_finish`](#on_finish-trial) callback has been run. The callback function will be passed a single argument, containing the data object from the trial. If you want a callback to trigger only for the end of certain trials, use the [`on_finish`](#on_finish-trial) callback on the trial object instead.
|
|
|
|
```javascript
|
|
initJsPsych({
|
|
on_trial_finish: function(data) {
|
|
console.log('A trial just ended.');
|
|
console.log(JSON.stringify(data));
|
|
}
|
|
});
|
|
```
|
|
|
|
---
|
|
|
|
## on_trial_start
|
|
|
|
The `on_trial_start` callback can be declared in the `initJsPsych` method. The callback will trigger at the start of every trial in the experiment, before the trial-specific `on_start` callback is executed. The function receives a single argument: a modifiable copy of the trial object that will be used to run the next trial. Changes can be made to this object to alter the parameters of the upcoming trial.
|
|
|
|
```javascript
|
|
var current_score = 0; // a variable that is updated throughout the experiment to keep track of the current score.
|
|
|
|
initJsPsych({
|
|
on_trial_start: function(trial) {
|
|
trial.data.score_at_start_of_trial = current_score;
|
|
console.log('A trial just started.');
|
|
}
|
|
});
|
|
```
|