mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00
autofocus + case sensitivity
This commit is contained in:
parent
281c8e6c69
commit
16ef614018
@ -22,6 +22,14 @@
|
|||||||
text: 'The %% is the largest terrestrial mammal. It lives in both %% and %%.'
|
text: 'The %% is the largest terrestrial mammal. It lives in both %% and %%.'
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// an example that allows the user to input a solution that doesn't require case sensitivity
|
||||||
|
timeline.push({
|
||||||
|
type: jsPsychCloze,
|
||||||
|
text: 'The %CASE% is closed.',
|
||||||
|
check_answers: true,
|
||||||
|
case_sensitivity: false,
|
||||||
|
})
|
||||||
|
|
||||||
// another example with checking if all the blanks are filled in
|
// another example with checking if all the blanks are filled in
|
||||||
timeline.push({
|
timeline.push({
|
||||||
type: jsPsychCloze,
|
type: jsPsychCloze,
|
||||||
|
@ -73,6 +73,21 @@ describe("cloze", () => {
|
|||||||
await expectFinished();
|
await expectFinished();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test("ends trial on button click when answers are checked and correct without case sensitivity", async () => {
|
||||||
|
const { expectFinished } = await startTimeline([
|
||||||
|
{
|
||||||
|
type: cloze,
|
||||||
|
text: "This is a %cloze% text.",
|
||||||
|
check_answers: true,
|
||||||
|
case_sensitivity: false,
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
getInputElementById("input0").value = "CLOZE";
|
||||||
|
clickTarget(document.querySelector("#finish_cloze_button"));
|
||||||
|
await expectFinished();
|
||||||
|
});
|
||||||
|
|
||||||
test("ends trial on button click when all answers are checked for completion and are complete", async () => {
|
test("ends trial on button click when all answers are checked for completion and are complete", async () => {
|
||||||
const { expectFinished } = await startTimeline([
|
const { expectFinished } = await startTimeline([
|
||||||
{
|
{
|
||||||
|
@ -27,6 +27,12 @@ const info = <const>{
|
|||||||
pretty_name: "Allow blanks",
|
pretty_name: "Allow blanks",
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
|
/** Boolean value indicating if the solutions checker must be case sensitive. */
|
||||||
|
case_sensitivity: {
|
||||||
|
type: ParameterType.BOOL,
|
||||||
|
pretty_name: "Case sensitivity",
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
/** Function called if either the check_answers is set to TRUE or the allow_blanks is set to FALSE and there is a discrepancy between the set answers and the answers provide or if all input fields aren't filled out, respectively. */
|
/** Function called if either the check_answers is set to TRUE or the allow_blanks is set to FALSE and there is a discrepancy between the set answers and the answers provide or if all input fields aren't filled out, respectively. */
|
||||||
mistake_fn: {
|
mistake_fn: {
|
||||||
type: ParameterType.FUNCTION,
|
type: ParameterType.FUNCTION,
|
||||||
@ -55,7 +61,7 @@ class ClozePlugin implements JsPsychPlugin<Info> {
|
|||||||
var html = '<div class="cloze">';
|
var html = '<div class="cloze">';
|
||||||
// odd elements are text, even elements are the blanks
|
// odd elements are text, even elements are the blanks
|
||||||
var elements = trial.text.split("%");
|
var elements = trial.text.split("%");
|
||||||
const solutions = this.getSolutions(trial.text);
|
const solutions = this.getSolutions(trial.text, trial.case_sensitivity);
|
||||||
|
|
||||||
let solution_counter = 0;
|
let solution_counter = 0;
|
||||||
for (var i = 0; i < elements.length; i++) {
|
for (var i = 0; i < elements.length; i++) {
|
||||||
@ -78,7 +84,9 @@ class ClozePlugin implements JsPsychPlugin<Info> {
|
|||||||
|
|
||||||
for (var i = 0; i < solutions.length; i++) {
|
for (var i = 0; i < solutions.length; i++) {
|
||||||
var field = document.getElementById("input" + i) as HTMLInputElement;
|
var field = document.getElementById("input" + i) as HTMLInputElement;
|
||||||
answers.push(field.value.trim());
|
answers.push(
|
||||||
|
trial.case_sensitivity ? field.value.trim() : field.value.toLowerCase().trim()
|
||||||
|
);
|
||||||
|
|
||||||
if (trial.check_answers) {
|
if (trial.check_answers) {
|
||||||
if (answers[i] !== solutions[i]) {
|
if (answers[i] !== solutions[i]) {
|
||||||
@ -112,15 +120,18 @@ class ClozePlugin implements JsPsychPlugin<Info> {
|
|||||||
trial.button_text +
|
trial.button_text +
|
||||||
"</button>";
|
"</button>";
|
||||||
display_element.querySelector("#finish_cloze_button").addEventListener("click", check);
|
display_element.querySelector("#finish_cloze_button").addEventListener("click", check);
|
||||||
|
|
||||||
|
(display_element.querySelector("#input0") as HTMLElement).focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
private getSolutions(text: string) {
|
private getSolutions(text: string, case_sensitive: boolean) {
|
||||||
const solutions = [];
|
const solutions = [];
|
||||||
const elements = text.split("%");
|
const elements = text.split("%");
|
||||||
for (let i = 0; i < elements.length; i++) {
|
|
||||||
if (i % 2 == 1) {
|
for (let i = 1; i < elements.length; i += 2) {
|
||||||
solutions.push(elements[i].trim());
|
solutions.push(
|
||||||
}
|
case_sensitive ? elements[i].trim() : elements[i].toLowerCase().trim()
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return solutions;
|
return solutions;
|
||||||
@ -142,7 +153,7 @@ class ClozePlugin implements JsPsychPlugin<Info> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private create_simulation_data(trial: TrialType<Info>, simulation_options) {
|
private create_simulation_data(trial: TrialType<Info>, simulation_options) {
|
||||||
const solutions = this.getSolutions(trial.text);
|
const solutions = this.getSolutions(trial.text, trial.case_sensitivity);
|
||||||
const responses = [];
|
const responses = [];
|
||||||
for (const word of solutions) {
|
for (const word of solutions) {
|
||||||
if (word == "") {
|
if (word == "") {
|
||||||
|
Loading…
Reference in New Issue
Block a user