Task - Fill in the blank

Description

A task bit allowing to create fill in the blank texts. The text can be written in Markdown. The strike-through syntax will create a blank. The answers of a user can be automatically evaluated, if you provide regular expressions for the blanks. You can also provide feedback by using regular expression, as well.
View Repository
View on NPM

Example

This is an interactive example of the Fill in the blank task. You can submit new answers, show a statistic based on thoses answers or modify the task by using the different forms.

Complete the sentence!

is a library for creating and conducting flow-based .

Imports

This is a list of all exported components and functions. These are only relevant if you want to use this task in a standalone way.
import {
  Task, TaskSchema,
  ViewForm, EvaluationForm, FeedbackForm,
  evaluate, updateStatistic, Statistic
} from "@bitflow/task-fill-in-the-blank"

Usage

We recommand that you wrap this component with the TaskShell component like so, if you want to use the component on its own.
import { TaskShell } from "@bitflow/shell";
import { evaluate, Task } from "@bitflow/task-fill-in-the-blank";

const My = () => (
  <TaskShell
    onNext={async () => {}}
    evaluate={evaluate}
    TaskComponent={Task}
    mode="default"
    task={task}
  />
);
            
You can also use this task with the Do component.

Actions

Each task emits different actions, which can be used for capture and replay the solving process. These are defined by the IAction type.

JSON Schema

If you do not want to use the provided forms to create a task object, you can build something yourself which produces a object, which follows this JSON schema.
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "subtype": {
      "type": "string",
      "const": "fill-in-the-blank"
    },
    "view": {
      "type": "object",
      "properties": {
        "instruction": {
          "type": "string"
        },
        "textWithBlanks": {
          "type": "string"
        }
      },
      "required": [
        "instruction",
        "textWithBlanks"
      ],
      "additionalProperties": false
    },
    "evaluation": {
      "type": "object",
      "properties": {
        "mode": {
          "type": "string",
          "enum": [
            "auto",
            "skip",
            "manual"
          ]
        },
        "enableRetry": {
          "type": "boolean"
        },
        "showFeedback": {
          "type": "boolean"
        },
        "blanks": {
          "type": "object",
          "additionalProperties": {
            "type": "string"
          }
        }
      },
      "required": [
        "mode",
        "enableRetry",
        "showFeedback",
        "blanks"
      ],
      "additionalProperties": false
    },
    "feedback": {
      "type": "object",
      "properties": {
        "blanks": {
          "type": "object",
          "additionalProperties": {
            "type": "object",
            "properties": {
              "patterns": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "pattern": {
                      "type": "string"
                    },
                    "feedback": {
                      "type": "object",
                      "properties": {
                        "message": {
                          "type": "string"
                        },
                        "severity": {
                          "type": "string",
                          "enum": [
                            "error",
                            "warning",
                            "info",
                            "success"
                          ]
                        }
                      },
                      "required": [
                        "message",
                        "severity"
                      ],
                      "additionalProperties": false
                    }
                  },
                  "required": [
                    "pattern",
                    "feedback"
                  ],
                  "additionalProperties": false
                }
              }
            },
            "required": [
              "patterns"
            ],
            "additionalProperties": false
          }
        }
      },
      "required": [
        "blanks"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "name",
    "subtype",
    "view",
    "evaluation",
    "feedback"
  ],
  "additionalProperties": false
}