Skip to content
Snippets Groups Projects
Commit c3a5da2d authored by chris's avatar chris
Browse files

true/false question

parent 98768714
No related branches found
No related tags found
1 merge request!348Multiple single
...@@ -325,7 +325,8 @@ export default css` ...@@ -325,7 +325,8 @@ export default css`
/* -- Multiple Choice ---------------------------------- */ /* -- Multiple Choice ---------------------------------- */
.multiple-choice, .multiple-choice,
.multiple-choice-single-correct { .multiple-choice-single-correct,
.true-false {
border: 3px solid #f5f5f7; border: 3px solid #f5f5f7;
counter-reset: question-item-multiple; counter-reset: question-item-multiple;
margin: 38px; margin: 38px;
...@@ -334,7 +335,6 @@ export default css` ...@@ -334,7 +335,6 @@ export default css`
&:before { &:before {
bottom: 25px; bottom: 25px;
content: 'Answer Group ' counter(multiple-question) '.';
counter-increment: multiple-question; counter-increment: multiple-question;
position: relative; position: relative;
right: 20px; right: 20px;
...@@ -346,6 +346,32 @@ export default css` ...@@ -346,6 +346,32 @@ export default css`
} }
} }
.multiple-choice {
&:before {
content: 'Answer Group ' counter(multiple-question) ' (multiple choice)';
}
}
.multiple-choice-single-correct {
&:before {
content: 'Answer Group ' counter(multiple-question)
' (multiple choice single correct)';
}
}
.true-false {
&:before {
content: 'Answer Group ' counter(multiple-question) ' (true/false)';
}
}
.true-false-single-correct {
&:before {
content: 'Answer Group ' counter(multiple-question)
' (true/false single correct)';
}
}
/* -- Fill The Gap ---------------------------------- */ /* -- Fill The Gap ---------------------------------- */
.fill-the-gap { .fill-the-gap {
......
...@@ -54,11 +54,11 @@ const CustomSwitch = ({ node, getPos }) => { ...@@ -54,11 +54,11 @@ const CustomSwitch = ({ node, getPos }) => {
return ( return (
<StyledSwitch <StyledSwitch
checked={checked} checked={checked}
checkedChildren="YES" checkedChildren="True"
label="Correct?" label="True/false?"
labelPosition="left" labelPosition="left"
onChange={handleChange} onChange={handleChange}
unCheckedChildren="NO" unCheckedChildren="False"
/> />
); );
}; };
...@@ -67,7 +67,7 @@ const getNodes = view => { ...@@ -67,7 +67,7 @@ const getNodes = view => {
const allNodes = DocumentHelpers.findBlockNodes(view.state.doc); const allNodes = DocumentHelpers.findBlockNodes(view.state.doc);
const multipleChoiceNodes = []; const multipleChoiceNodes = [];
allNodes.forEach(node => { allNodes.forEach(node => {
if (node.node.type.name === 'multiple_choice_single_correct') { if (node.node.type.name === 'true_false') {
multipleChoiceNodes.push(node); multipleChoiceNodes.push(node);
} }
}); });
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment