Skip to content

Commit

Permalink
Fix misc. bugs to prepare for soft launch
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew29tang committed Jun 1, 2020
1 parent 9394166 commit 6dd2355
Show file tree
Hide file tree
Showing 14 changed files with 344 additions and 619 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,10 @@ These two files heavily rely on Material-UI syntax (eg. all the `useStyles` and
8. In `/src/config/skillModel.js`, tag each problem with the appropriate skills
9. If the skill does not already exist in `bktParams`, add its BKT parameters in the appropriate `config/bktParams` files

### Types of problems
* `TextBox` : Box for student to enter answer. 3 different types of answers are supported: Algebraic, String, Numeric. Algebraic will simplify numeric expressions, numeric checks numeric equivalence, string requires answers to exactly match.
* `MultipleChoice`: List choices as `choices: ["Choice A", "Choice B"]`, must have `answerType: "string"`

### Example Directory Structure
```
ProblemPool
Expand Down Expand Up @@ -282,10 +286,12 @@ export { problem };

```js
{
name: "Lesson 1",
topics: "Pythagorean Theorem",
learningObjectives: {
pythagorean: 0.95
}
id: "lesson1",
name: "Lesson 1",
topics: "Pythagorean Theorem",
allowRecycle: true,
learningObjectives: {
pythagorean: 0.95
}
}
```
Loading

0 comments on commit 6dd2355

Please sign in to comment.