Example
This is an interactive example of the Yes no task. You can submit new answers, show a statistic based on thoses answers or modify the task by using the different forms.
- Task
- View Form
- Evaluation Form
- Feedback Form
- Statistic
Question
Yes
No
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-yes-no"
- Task: The task component displays the task.
- ViewForm: A form to set the neccessary data for a task.
- EvaluationForm: A form to set how an answer for a task will be evaluated.
- FeedbackForm: A form to set when and how feedback will be displayed.
- evaluate: Evaluates if a answer for a task is correct and may add feedback.
- updateStatistic: Generates/updates a statistic for a task based on an answer and result.
- Statistic: Visualizes the statistic for a task. You can use updateStatistic to generate a statistic.
- TaskSchema: Is a zod schema, which can be used to validate a task object. It follows the JSON schema down below.
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-yes-no";
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": "yes-no"
},
"view": {
"type": "object",
"properties": {
"question": {
"type": "string"
}
},
"required": [
"question"
],
"additionalProperties": false
},
"evaluation": {
"type": "object",
"properties": {
"mode": {
"type": "string",
"enum": [
"auto",
"skip",
"manual"
]
},
"enableRetry": {
"type": "boolean"
},
"showFeedback": {
"type": "boolean"
},
"yes": {
"type": "boolean"
}
},
"required": [
"mode",
"enableRetry",
"showFeedback",
"yes"
],
"additionalProperties": false
},
"feedback": {
"type": "object",
"properties": {
"yes": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"severity": {
"type": "string",
"enum": [
"error",
"warning",
"info",
"success"
]
}
},
"required": [
"message",
"severity"
],
"additionalProperties": false
},
"no": {
"$ref": "#/properties/feedback/properties/yes"
}
},
"additionalProperties": false
}
},
"required": [
"name",
"subtype",
"view",
"evaluation",
"feedback"
],
"additionalProperties": false
}