Skip to content
This repository was archived by the owner on May 4, 2019. It is now read-only.

Commit 483bb94

Browse files
authored
Merge pull request #163 from osu-cass/feat/rubric-fix
Feat/rubric fix
2 parents c866d6f + bbef080 commit 483bb94

13 files changed

+20968
-20907
lines changed

mocks/Rubric/mocks.ts

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import { RubricModalProps } from "@src/Rubric/RubricModal";
2+
3+
export const rubricModalMockProps: RubricModalProps = {
4+
showModal: true,
5+
rubrics: [
6+
{
7+
language: "English",
8+
rubricEntries: [
9+
{
10+
scorepoint: "2",
11+
name: "\n Rubric 2",
12+
value:
13+
'<p style="text-decoration:underline; font-weight:bold; ">3 point text </p><p style="">&#xA0;</p><p style="">The student determines that Emily can make it to school on time at her current rate of speed and includes a valid explanation containing a full chain of reasoning that supports this conclusion. The student may make minor computation errors that do not affect the reasonableness of the explanation. </p><p style="">&#xA0;</p><p style="">&#xA0;</p><p style="text-decoration:underline; font-weight:bold; ">2 point text </p><p style="text-decoration:underline; font-weight:bold; ">&#xA0;</p><p style="">The student determines that Emily can make it to school on time at her current rate of speed and includes a valid explanation containing an incomplete chain of reasoning that supports this conclusion. (An incomplete chain of reasoning can be defined by missing process steps or unsupported calculations in an otherwise complete chain of reasoning.) </p><p style="">OR </p><p style="">The student determines that Emily can make it to school on time at her current rate of speed and includes a valid explanation containing a full chain of reasoning that supports this conclusion, but makes computation errors that affect the reasonableness of the explanation. </p>'
14+
},
15+
{
16+
scorepoint: "1",
17+
name: "\n Rubric 1",
18+
value:
19+
'<p style="">The student completes the task and reaches a conclusion. The student\'s explanation attempts to relate distance to time, but contains errors in fundamental mathematical procedures. </p><p style="">&#xA0;</p>'
20+
},
21+
{
22+
scorepoint: "0",
23+
name: "\n Rubric 0",
24+
value:
25+
'<p style="">The student demonstrates a lack of comprehension in regard to the mathematical content and practices essential to the task. </p>'
26+
}
27+
],
28+
samples: [
29+
{
30+
maxValue: "2",
31+
minValue: "2",
32+
sampleResponses: [
33+
{
34+
purpose: "OtherExemplar",
35+
scorePoint: "2",
36+
name: "2-Point Other Official Sample Answers\n ",
37+
sampleContent:
38+
'<p style=""><span style="text-decoration:underline; font-weight:bold; ">Sample 1: </span>&#xA0;</p><p style="">Emily can travel 3/4 mile in under 5 minutes, so she can travel 3 miles (4x as far) in under 20 minutes (4x as long.) This means that Emily will have traveled 3 miles before 8:45 (20 minutes after she left.) Then there is only .42 miles left to go, and since .42 miles is less than 3/4 mile, we know she can cover that distance in less than 5 minutes. That means she will get to school before 8:50, so she will be on time. </p><p style="">&#xA0;</p><p style=""><span style="text-decoration:underline; font-weight:bold; ">Sample 2:</span> &#xA0;</p><p style="">Emily travels 3/4 mile in 4.5 minutes, so to find her rate of travel we would divide time by distance and get (4.5) / (.75) = 6 minutes per mile. Multiply 6 minutes per mile times the distance she has to travel (3.42 miles) to find the time it would take for her to get to school (20.52.) Since 20.52 is less than 21 minutes, we know it will take her less than 21 minutes to get to school. 8:25 + 21 minutes is 8:46, which is before 8:50, so she will make it to school on time. </p>'
39+
}
40+
]
41+
}
42+
]
43+
}
44+
]
45+
};

0 commit comments

Comments
 (0)