@elice/material-quiz 1.241127.0 → 1.241128.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/components/material-quiz/MaterialQuizSelectMultipleOrder.js +4 -4
- package/cjs/components/material-quiz/material-quiz-group/MaterialQuizGroup.js +4 -2
- package/cjs/components/material-quiz/material-quiz-group/MaterialQuizGroupDesktop.js +6 -3
- package/cjs/components/material-quiz/material-quiz-group/MaterialQuizGroupMobile.js +5 -2
- package/cjs/components/material-quiz/material-quiz-group/MaterialQuizGroupOptionItem.d.ts +1 -0
- package/cjs/components/material-quiz/material-quiz-group/MaterialQuizGroupOptionItem.js +23 -19
- package/cjs/components/material-quiz/material-quiz-group/context/context.d.ts +1 -0
- package/cjs/components/shared/QuizDraggbleOption.js +26 -23
- package/es/components/material-quiz/MaterialQuizSelectMultipleOrder.js +4 -4
- package/es/components/material-quiz/material-quiz-group/MaterialQuizGroup.js +5 -3
- package/es/components/material-quiz/material-quiz-group/MaterialQuizGroupDesktop.js +6 -3
- package/es/components/material-quiz/material-quiz-group/MaterialQuizGroupMobile.js +5 -2
- package/es/components/material-quiz/material-quiz-group/MaterialQuizGroupOptionItem.d.ts +1 -0
- package/es/components/material-quiz/material-quiz-group/MaterialQuizGroupOptionItem.js +23 -19
- package/es/components/material-quiz/material-quiz-group/context/context.d.ts +1 -0
- package/es/components/shared/QuizDraggbleOption.js +26 -23
- package/package.json +6 -6
|
@@ -114,7 +114,7 @@ var MaterialQuizSelectMultipleOrder = function MaterialQuizSelectMultipleOrder(_
|
|
|
114
114
|
var isNextActive = hasSubmitted && typeof onNext === 'function';
|
|
115
115
|
var isDisabled = (materialQuiz === null || materialQuiz === void 0 ? void 0 : materialQuiz.correctOptionCount) !== answerList.filter(function (answer) {
|
|
116
116
|
return answer.order !== null;
|
|
117
|
-
}).length || !!userId;
|
|
117
|
+
}).length || index.checkUserLectureTestEnded(lecture) || !!userId;
|
|
118
118
|
var isTestLecture = (lecture === null || lecture === void 0 ? void 0 : lecture.lectureType) === types.enums.LectureType.Test;
|
|
119
119
|
// ref
|
|
120
120
|
var optionBoxRef = React__default.default.useRef(null);
|
|
@@ -473,11 +473,11 @@ var MaterialQuizSelectMultipleOrder = function MaterialQuizSelectMultipleOrder(_
|
|
|
473
473
|
var renderQuizDragOption = function renderQuizDragOption() {
|
|
474
474
|
return jsxRuntime.jsxs(StyledQuizOptionsDropZone, {
|
|
475
475
|
id: "quiz-options-dropzone",
|
|
476
|
-
disabled:
|
|
476
|
+
disabled: isDisabled,
|
|
477
477
|
accept: ".quiz-answer",
|
|
478
478
|
children: [optionList.map(function (option, index) {
|
|
479
479
|
return jsxRuntime.jsx(QuizDraggbleOption.default, {
|
|
480
|
-
disabled:
|
|
480
|
+
disabled: isDisabled,
|
|
481
481
|
id: "quiz-option-".concat(index),
|
|
482
482
|
className: "quiz-option",
|
|
483
483
|
content: option.value,
|
|
@@ -534,7 +534,7 @@ var MaterialQuizSelectMultipleOrder = function MaterialQuizSelectMultipleOrder(_
|
|
|
534
534
|
id: "option-answer-".concat(index$1),
|
|
535
535
|
content: option.value,
|
|
536
536
|
role: getRole(),
|
|
537
|
-
disabled:
|
|
537
|
+
disabled: isDisabled,
|
|
538
538
|
indexOrder: index$1 + 1,
|
|
539
539
|
isMarkdown: !!(course === null || course === void 0 ? void 0 : course.preference.renderMarkdownInQuizOptions)
|
|
540
540
|
}, "option-answer-".concat(index$1));
|
|
@@ -41,7 +41,8 @@ var MaterialQuizGroup = function MaterialQuizGroup() {
|
|
|
41
41
|
materialQuiz = _useMaterialQuizState.materialQuiz,
|
|
42
42
|
userId = _useMaterialQuizState.userId,
|
|
43
43
|
vertical = _useMaterialQuizState.vertical,
|
|
44
|
-
isLongPassage = _useMaterialQuizState.isLongPassage
|
|
44
|
+
isLongPassage = _useMaterialQuizState.isLongPassage,
|
|
45
|
+
lecture = _useMaterialQuizState.lecture;
|
|
45
46
|
var _useMaterialQuizDispa = MaterialQuizContext.useMaterialQuizDispatch(),
|
|
46
47
|
onSubmit = _useMaterialQuizDispa.onSubmit,
|
|
47
48
|
onNext = _useMaterialQuizDispa.onNext,
|
|
@@ -81,7 +82,7 @@ var MaterialQuizGroup = function MaterialQuizGroup() {
|
|
|
81
82
|
hasSubmitted = _React$useState16[0],
|
|
82
83
|
setHasSubmitted = _React$useState16[1];
|
|
83
84
|
var isNextActive = hasSubmitted && typeof onNext === 'function';
|
|
84
|
-
var isDisabled = !flattenDeep__default.default(currentAnswerList).length || !!userId;
|
|
85
|
+
var isDisabled = !flattenDeep__default.default(currentAnswerList).length || index.checkUserLectureTestEnded(lecture) || !!userId;
|
|
85
86
|
var _useCaculatePassage = useCaculatePassage.useCaculatePassage(),
|
|
86
87
|
questionRef = _useCaculatePassage.questionRef,
|
|
87
88
|
containerRef = _useCaculatePassage.containerRef;
|
|
@@ -358,6 +359,7 @@ var MaterialQuizGroup = function MaterialQuizGroup() {
|
|
|
358
359
|
optionList: optionList,
|
|
359
360
|
currentOptionList: currentOptionList,
|
|
360
361
|
currentAnswerList: currentAnswerList,
|
|
362
|
+
isDisabled: isDisabled,
|
|
361
363
|
onUpdateAnswer: setCurrentAnswerList,
|
|
362
364
|
onUpdateOption: setCurrentOptionList,
|
|
363
365
|
onUpdateHasSubmitted: setHasSubmitted,
|
|
@@ -65,6 +65,7 @@ var MaterialQuizGroupDesktop = function MaterialQuizGroupDesktop(_ref3) {
|
|
|
65
65
|
groupList = _React$useContext.groupList,
|
|
66
66
|
currentAnswerList = _React$useContext.currentAnswerList,
|
|
67
67
|
currentOptionList = _React$useContext.currentOptionList,
|
|
68
|
+
isDisabled = _React$useContext.isDisabled,
|
|
68
69
|
updateCurrentAnswer = _React$useContext.updateCurrentAnswer,
|
|
69
70
|
updateCurrentOption = _React$useContext.updateCurrentOption,
|
|
70
71
|
handleAnswerReset = _React$useContext.handleAnswerReset;
|
|
@@ -123,12 +124,13 @@ var MaterialQuizGroupDesktop = function MaterialQuizGroupDesktop(_ref3) {
|
|
|
123
124
|
}), jsxRuntime.jsx(StyledQuizAnswerDropzone, {
|
|
124
125
|
id: "quiz-answer-dropzone-".concat(dropzoneIndex),
|
|
125
126
|
accept: ".quiz-answer",
|
|
126
|
-
disabled:
|
|
127
|
+
disabled: isDisabled,
|
|
127
128
|
isGroupAnswer: isGroupAnswer,
|
|
128
129
|
children: isGroupAnswer ? (_b = currentAnswerList[dropzoneIndex]) === null || _b === void 0 ? void 0 : _b.map(function (answer, index$1) {
|
|
129
130
|
var isHideStatus = !userId && (isActive || isTestLecture);
|
|
130
131
|
var status = isHideStatus ? undefined : index.getQuizGroupOptionResultStatus(dropzoneIndex, index$1, answer.order, materialQuizResponse, materialQuiz === null || materialQuiz === void 0 ? void 0 : materialQuiz.answerInfo);
|
|
131
132
|
return jsxRuntime.jsx(MaterialQuizGroupOptionItem.default, {
|
|
133
|
+
disabled: isDisabled,
|
|
132
134
|
status: status,
|
|
133
135
|
option: answer
|
|
134
136
|
}, index$1);
|
|
@@ -180,7 +182,7 @@ var MaterialQuizGroupDesktop = function MaterialQuizGroupDesktop(_ref3) {
|
|
|
180
182
|
children: [jsxRuntime.jsx(blocks.Button, {
|
|
181
183
|
role: "white",
|
|
182
184
|
size: "small",
|
|
183
|
-
disabled:
|
|
185
|
+
disabled: isDisabled,
|
|
184
186
|
onClick: handleAnswerReset,
|
|
185
187
|
children: intl$1.formatMessage({
|
|
186
188
|
id: 'materialQuiz.dropzone.optionReset'
|
|
@@ -192,7 +194,8 @@ var MaterialQuizGroupDesktop = function MaterialQuizGroupDesktop(_ref3) {
|
|
|
192
194
|
accept: ".quiz-answer",
|
|
193
195
|
children: currentOptionList.length ? currentOptionList.map(function (option, index) {
|
|
194
196
|
return jsxRuntime.jsx(MaterialQuizGroupOptionItem.default, {
|
|
195
|
-
option: option
|
|
197
|
+
option: option,
|
|
198
|
+
disabled: isDisabled
|
|
196
199
|
}, index);
|
|
197
200
|
}) : jsxRuntime.jsx(blocks.Flex, {
|
|
198
201
|
justify: "center",
|
|
@@ -55,6 +55,7 @@ var MaterialQuizGroupMobile = function MaterialQuizGroupMobile(_ref3) {
|
|
|
55
55
|
var _React$useContext = React__default.default.useContext(context.default),
|
|
56
56
|
currentOptionList = _React$useContext.currentOptionList,
|
|
57
57
|
currentAnswerList = _React$useContext.currentAnswerList,
|
|
58
|
+
isDisabled = _React$useContext.isDisabled,
|
|
58
59
|
updateCurrentAnswer = _React$useContext.updateCurrentAnswer,
|
|
59
60
|
updateCurrentOption = _React$useContext.updateCurrentOption,
|
|
60
61
|
handleAnswerReset = _React$useContext.handleAnswerReset;
|
|
@@ -71,7 +72,7 @@ var MaterialQuizGroupMobile = function MaterialQuizGroupMobile(_ref3) {
|
|
|
71
72
|
children: [jsxRuntime.jsx(blocks.Button, {
|
|
72
73
|
role: "white",
|
|
73
74
|
size: "small",
|
|
74
|
-
disabled:
|
|
75
|
+
disabled: isDisabled,
|
|
75
76
|
onClick: handleAnswerReset,
|
|
76
77
|
block: true,
|
|
77
78
|
children: intl$1.formatMessage({
|
|
@@ -108,6 +109,7 @@ var MaterialQuizGroupMobile = function MaterialQuizGroupMobile(_ref3) {
|
|
|
108
109
|
var status = isHideStatus ? undefined : index.getQuizGroupOptionResultStatus(index$1, answerIndex, answer.order, materialQuizResponse, materialQuiz === null || materialQuiz === void 0 ? void 0 : materialQuiz.answerInfo);
|
|
109
110
|
return jsxRuntime.jsx(MaterialQuizGroupOptionItem.default, {
|
|
110
111
|
option: answer,
|
|
112
|
+
disabled: isDisabled,
|
|
111
113
|
status: status,
|
|
112
114
|
onClose: function onClose() {
|
|
113
115
|
var targetId = answer.order;
|
|
@@ -160,7 +162,8 @@ var MaterialQuizGroupMobile = function MaterialQuizGroupMobile(_ref3) {
|
|
|
160
162
|
updateCurrentAnswer(targetId, dropzoneIndex);
|
|
161
163
|
},
|
|
162
164
|
children: jsxRuntime.jsx(MaterialQuizGroupOptionItem.default, {
|
|
163
|
-
option: option
|
|
165
|
+
option: option,
|
|
166
|
+
disabled: isDisabled
|
|
164
167
|
}, index)
|
|
165
168
|
}, index);
|
|
166
169
|
}) : jsxRuntime.jsx(blocks.Text, {
|
|
@@ -40,20 +40,23 @@ var StyledDraggbleOption = /*#__PURE__*/_styled__default.default(EbDraggable.def
|
|
|
40
40
|
default:
|
|
41
41
|
return '3px solid transparent';
|
|
42
42
|
}
|
|
43
|
+
}, ";cursor:", function (_ref4) {
|
|
44
|
+
var disabled = _ref4.disabled;
|
|
45
|
+
return disabled ? 'not-allowed !important' : 'auto';
|
|
43
46
|
}, ";");
|
|
44
47
|
var StyledOptionTitle = /*#__PURE__*/_styled__default.default("div", {
|
|
45
48
|
target: "ex64yhy2"
|
|
46
|
-
})("display:flex;justify-content:center;align-items:center;width:", function (
|
|
47
|
-
var vertical = _ref4.vertical,
|
|
48
|
-
isOptionContent = _ref4.isOptionContent;
|
|
49
|
-
return isOptionContent ? '100%' : vertical ? '10.25rem' : '11.5rem';
|
|
50
|
-
}, ";height:", function (_ref5) {
|
|
49
|
+
})("display:flex;justify-content:center;align-items:center;width:", function (_ref5) {
|
|
51
50
|
var vertical = _ref5.vertical,
|
|
52
51
|
isOptionContent = _ref5.isOptionContent;
|
|
53
|
-
return isOptionContent ? '
|
|
54
|
-
}, ";
|
|
55
|
-
var
|
|
52
|
+
return isOptionContent ? '100%' : vertical ? '10.25rem' : '11.5rem';
|
|
53
|
+
}, ";height:", function (_ref6) {
|
|
54
|
+
var vertical = _ref6.vertical,
|
|
56
55
|
isOptionContent = _ref6.isOptionContent;
|
|
56
|
+
return isOptionContent ? 'auto' : vertical ? '10.25rem' : '11.5rem';
|
|
57
|
+
}, ";padding:0.5rem;background:", designTokens.base.color.white, ";background-color:", function (_ref7) {
|
|
58
|
+
var status = _ref7.status,
|
|
59
|
+
isOptionContent = _ref7.isOptionContent;
|
|
57
60
|
if (!isOptionContent) {
|
|
58
61
|
return 'auto';
|
|
59
62
|
}
|
|
@@ -68,26 +71,27 @@ var StyledOptionTitle = /*#__PURE__*/_styled__default.default("div", {
|
|
|
68
71
|
}, ";");
|
|
69
72
|
var StyledOptionContent = /*#__PURE__*/_styled__default.default("div", {
|
|
70
73
|
target: "ex64yhy1"
|
|
71
|
-
})("display:flex;align-items:center;width:", function (
|
|
72
|
-
var vertical = _ref7.vertical;
|
|
73
|
-
return vertical ? '10.25rem' : '11.5rem';
|
|
74
|
-
}, ";height:", function (_ref8) {
|
|
74
|
+
})("display:flex;align-items:center;width:", function (_ref8) {
|
|
75
75
|
var vertical = _ref8.vertical;
|
|
76
76
|
return vertical ? '10.25rem' : '11.5rem';
|
|
77
|
+
}, ";height:", function (_ref9) {
|
|
78
|
+
var vertical = _ref9.vertical;
|
|
79
|
+
return vertical ? '10.25rem' : '11.5rem';
|
|
77
80
|
}, ";background:", designTokens.base.color.navy8, ";& p{line-height:1;}");
|
|
78
81
|
var StyledIconButton = /*#__PURE__*/_styled__default.default(material.IconButton, {
|
|
79
82
|
target: "ex64yhy0"
|
|
80
|
-
})("border-radius:50%;width:1.5rem;height:1.5rem;position:absolute;top:0.5rem;right:0.5rem;background-color:", function (
|
|
81
|
-
var theme =
|
|
83
|
+
})("border-radius:50%;width:1.5rem;height:1.5rem;position:absolute;top:0.5rem;right:0.5rem;background-color:", function (_ref10) {
|
|
84
|
+
var theme = _ref10.theme;
|
|
82
85
|
return theme.palette.action.active;
|
|
83
86
|
}, ";align-self:flex-end;");
|
|
84
87
|
//
|
|
85
88
|
//
|
|
86
89
|
//
|
|
87
|
-
var MaterialQuizGroupOptionItem = function MaterialQuizGroupOptionItem(
|
|
88
|
-
var option =
|
|
89
|
-
status =
|
|
90
|
-
|
|
90
|
+
var MaterialQuizGroupOptionItem = function MaterialQuizGroupOptionItem(_ref11) {
|
|
91
|
+
var option = _ref11.option,
|
|
92
|
+
status = _ref11.status,
|
|
93
|
+
disabled = _ref11.disabled,
|
|
94
|
+
onClose = _ref11.onClose;
|
|
91
95
|
var _a;
|
|
92
96
|
var _useMaterialQuizState = MaterialQuizContext.useMaterialQuizState(),
|
|
93
97
|
vertical = _useMaterialQuizState.vertical,
|
|
@@ -118,7 +122,7 @@ var MaterialQuizGroupOptionItem = function MaterialQuizGroupOptionItem(_ref10) {
|
|
|
118
122
|
//
|
|
119
123
|
//
|
|
120
124
|
return jsxRuntime.jsxs(StyledDraggbleOption, {
|
|
121
|
-
disabled:
|
|
125
|
+
disabled: disabled || vertical,
|
|
122
126
|
id: option.order.toString(),
|
|
123
127
|
className: "quiz-answer",
|
|
124
128
|
vertical: vertical,
|
|
@@ -11,6 +11,7 @@ interface QuizGroupContextValue {
|
|
|
11
11
|
optionList: QuizGroupOption[];
|
|
12
12
|
currentOptionList: QuizGroupOption[];
|
|
13
13
|
currentAnswerList: QuizGroupOption[][];
|
|
14
|
+
isDisabled: boolean;
|
|
14
15
|
onDirty: (value: boolean) => void;
|
|
15
16
|
onUpdateAnswer: (value: React.SetStateAction<QuizGroupOption[][]>) => void;
|
|
16
17
|
onUpdateOption: (value: React.SetStateAction<QuizGroupOption[]>) => void;
|
|
@@ -47,8 +47,11 @@ var StyledOrder = styled__default.default.div.withConfig({
|
|
|
47
47
|
})(["width:1.5rem;height:1.5rem;display:flex;border-radius:4px;align-items:center;justify-content:center;color:", ";background-color:", ";flex:none;margin-left:0.5rem;"], designTokens.base.color.navy0, designTokens.base.color.navy4);
|
|
48
48
|
var StyledQuizDraggbleOption = styled__default.default(EbDraggable.default).withConfig({
|
|
49
49
|
componentId: "sc-19b0zkq-3"
|
|
50
|
-
})(["display:flex;border-radius:8px;border:1px solid ", ";background-color:", ";overflow:hidden;&:not(:last-of-type){margin-bottom:1rem;}", "{background-color:", ";color:", ";}", "{background-color:", ";& *{color:", ";}}", "{background-color:", ";color:", ";}&.ui-draggable-dragging{z-index:1000 !important;color:", " !important;border:none !important;", "{background-color:", ";}", "{background-color:", ";border:1px solid ", " !important;}", "{color:", ";background-color:", ";}& *{color:", " !important;}}&.ui-draggable-dragging.quiz-answer{width:calc(100% - 1rem * 2);}"], designTokens.base.color.navy4, designTokens.base.color.navy5,
|
|
51
|
-
var
|
|
50
|
+
})(["display:flex;border-radius:8px;border:1px solid ", ";background-color:", ";overflow:hidden;cursor:", ";&:not(:last-of-type){margin-bottom:1rem;}", "{background-color:", ";color:", ";}", "{background-color:", ";& *{color:", ";}}", "{background-color:", ";color:", ";}&.ui-draggable-dragging{z-index:1000 !important;color:", " !important;border:none !important;", "{background-color:", ";}", "{background-color:", ";border:1px solid ", " !important;}", "{color:", ";background-color:", ";}& *{color:", " !important;}}&.ui-draggable-dragging.quiz-answer{width:calc(100% - 1rem * 2);}"], designTokens.base.color.navy4, designTokens.base.color.navy5, function (_ref3) {
|
|
51
|
+
var disabled = _ref3.disabled;
|
|
52
|
+
return disabled ? 'not-allowed !important' : 'auto';
|
|
53
|
+
}, StyledQuizDraggbleOptionHandle, function (_ref4) {
|
|
54
|
+
var role = _ref4.role;
|
|
52
55
|
switch (role) {
|
|
53
56
|
case 'answer':
|
|
54
57
|
return designTokens.base.color.primary4;
|
|
@@ -60,8 +63,8 @@ var StyledQuizDraggbleOption = styled__default.default(EbDraggable.default).with
|
|
|
60
63
|
default:
|
|
61
64
|
return designTokens.base.color.navy3;
|
|
62
65
|
}
|
|
63
|
-
}, function (
|
|
64
|
-
var role =
|
|
66
|
+
}, function (_ref5) {
|
|
67
|
+
var role = _ref5.role;
|
|
65
68
|
switch (role) {
|
|
66
69
|
case 'answer':
|
|
67
70
|
return designTokens.base.color.primary9;
|
|
@@ -73,8 +76,8 @@ var StyledQuizDraggbleOption = styled__default.default(EbDraggable.default).with
|
|
|
73
76
|
default:
|
|
74
77
|
return designTokens.base.color.navy5;
|
|
75
78
|
}
|
|
76
|
-
}, StyledQuizDraggbleOptionContent, function (
|
|
77
|
-
var role =
|
|
79
|
+
}, StyledQuizDraggbleOptionContent, function (_ref6) {
|
|
80
|
+
var role = _ref6.role;
|
|
78
81
|
switch (role) {
|
|
79
82
|
case 'answer':
|
|
80
83
|
return designTokens.base.color.primary1;
|
|
@@ -86,8 +89,8 @@ var StyledQuizDraggbleOption = styled__default.default(EbDraggable.default).with
|
|
|
86
89
|
default:
|
|
87
90
|
return designTokens.base.color.navy5;
|
|
88
91
|
}
|
|
89
|
-
}, function (
|
|
90
|
-
var role =
|
|
92
|
+
}, function (_ref7) {
|
|
93
|
+
var role = _ref7.role;
|
|
91
94
|
switch (role) {
|
|
92
95
|
case 'answer':
|
|
93
96
|
return designTokens.base.color.primary9;
|
|
@@ -99,8 +102,8 @@ var StyledQuizDraggbleOption = styled__default.default(EbDraggable.default).with
|
|
|
99
102
|
default:
|
|
100
103
|
return designTokens.base.color.navy0;
|
|
101
104
|
}
|
|
102
|
-
}, StyledOrder, function (
|
|
103
|
-
var role =
|
|
105
|
+
}, StyledOrder, function (_ref8) {
|
|
106
|
+
var role = _ref8.role;
|
|
104
107
|
switch (role) {
|
|
105
108
|
case 'answer':
|
|
106
109
|
return designTokens.base.color.primary3;
|
|
@@ -112,8 +115,8 @@ var StyledQuizDraggbleOption = styled__default.default(EbDraggable.default).with
|
|
|
112
115
|
default:
|
|
113
116
|
return designTokens.base.color.navy4;
|
|
114
117
|
}
|
|
115
|
-
}, function (
|
|
116
|
-
var role =
|
|
118
|
+
}, function (_ref9) {
|
|
119
|
+
var role = _ref9.role;
|
|
117
120
|
switch (role) {
|
|
118
121
|
case 'answer':
|
|
119
122
|
return designTokens.base.color.primary9;
|
|
@@ -129,17 +132,17 @@ var StyledQuizDraggbleOption = styled__default.default(EbDraggable.default).with
|
|
|
129
132
|
//
|
|
130
133
|
//
|
|
131
134
|
//
|
|
132
|
-
var QuizDraggbleOption = function QuizDraggbleOption(
|
|
133
|
-
var id =
|
|
134
|
-
className =
|
|
135
|
-
content =
|
|
136
|
-
|
|
137
|
-
disabled =
|
|
138
|
-
|
|
139
|
-
role =
|
|
140
|
-
indexOrder =
|
|
141
|
-
|
|
142
|
-
isMarkdown =
|
|
135
|
+
var QuizDraggbleOption = function QuizDraggbleOption(_ref10) {
|
|
136
|
+
var id = _ref10.id,
|
|
137
|
+
className = _ref10.className,
|
|
138
|
+
content = _ref10.content,
|
|
139
|
+
_ref10$disabled = _ref10.disabled,
|
|
140
|
+
disabled = _ref10$disabled === void 0 ? false : _ref10$disabled,
|
|
141
|
+
_ref10$role = _ref10.role,
|
|
142
|
+
role = _ref10$role === void 0 ? 'default' : _ref10$role,
|
|
143
|
+
indexOrder = _ref10.indexOrder,
|
|
144
|
+
_ref10$isMarkdown = _ref10.isMarkdown,
|
|
145
|
+
isMarkdown = _ref10$isMarkdown === void 0 ? false : _ref10$isMarkdown;
|
|
143
146
|
var _useMaterialQuizState = MaterialQuizContext.useMaterialQuizState(),
|
|
144
147
|
vertical = _useMaterialQuizState.vertical;
|
|
145
148
|
//
|
|
@@ -105,7 +105,7 @@ var MaterialQuizSelectMultipleOrder = function MaterialQuizSelectMultipleOrder(_
|
|
|
105
105
|
var isNextActive = hasSubmitted && typeof onNext === 'function';
|
|
106
106
|
var isDisabled = (materialQuiz === null || materialQuiz === void 0 ? void 0 : materialQuiz.correctOptionCount) !== answerList.filter(function (answer) {
|
|
107
107
|
return answer.order !== null;
|
|
108
|
-
}).length || !!userId;
|
|
108
|
+
}).length || checkUserLectureTestEnded(lecture) || !!userId;
|
|
109
109
|
var isTestLecture = (lecture === null || lecture === void 0 ? void 0 : lecture.lectureType) === enums.LectureType.Test;
|
|
110
110
|
// ref
|
|
111
111
|
var optionBoxRef = React.useRef(null);
|
|
@@ -464,11 +464,11 @@ var MaterialQuizSelectMultipleOrder = function MaterialQuizSelectMultipleOrder(_
|
|
|
464
464
|
var renderQuizDragOption = function renderQuizDragOption() {
|
|
465
465
|
return jsxs(StyledQuizOptionsDropZone, {
|
|
466
466
|
id: "quiz-options-dropzone",
|
|
467
|
-
disabled:
|
|
467
|
+
disabled: isDisabled,
|
|
468
468
|
accept: ".quiz-answer",
|
|
469
469
|
children: [optionList.map(function (option, index) {
|
|
470
470
|
return jsx(QuizDraggbleOption, {
|
|
471
|
-
disabled:
|
|
471
|
+
disabled: isDisabled,
|
|
472
472
|
id: "quiz-option-".concat(index),
|
|
473
473
|
className: "quiz-option",
|
|
474
474
|
content: option.value,
|
|
@@ -525,7 +525,7 @@ var MaterialQuizSelectMultipleOrder = function MaterialQuizSelectMultipleOrder(_
|
|
|
525
525
|
id: "option-answer-".concat(index),
|
|
526
526
|
content: option.value,
|
|
527
527
|
role: getRole(),
|
|
528
|
-
disabled:
|
|
528
|
+
disabled: isDisabled,
|
|
529
529
|
indexOrder: index + 1,
|
|
530
530
|
isMarkdown: !!(course === null || course === void 0 ? void 0 : course.preference.renderMarkdownInQuizOptions)
|
|
531
531
|
}, "option-answer-".concat(index));
|
|
@@ -9,7 +9,7 @@ import { useTheme } from '@mui/material';
|
|
|
9
9
|
import cloneDeep from 'lodash-es/cloneDeep';
|
|
10
10
|
import flattenDeep from 'lodash-es/flattenDeep';
|
|
11
11
|
import { MATERIAL_QUIZ_ANSWER_ID, MATERIAL_QUIZ_PASSIVE_ID } from '../../../constant/element.js';
|
|
12
|
-
import { getQuizResult } from '../../../helpers/index.js';
|
|
12
|
+
import { checkUserLectureTestEnded, getQuizResult } from '../../../helpers/index.js';
|
|
13
13
|
import { useCaculatePassage } from '../../../hooks/useCaculatePassage.js';
|
|
14
14
|
import QuestionBox from '../../shared/QuestionBox.js';
|
|
15
15
|
import { useMaterialQuizState, useMaterialQuizDispatch } from '../context/MaterialQuizContext.js';
|
|
@@ -31,7 +31,8 @@ var MaterialQuizGroup = function MaterialQuizGroup() {
|
|
|
31
31
|
materialQuiz = _useMaterialQuizState.materialQuiz,
|
|
32
32
|
userId = _useMaterialQuizState.userId,
|
|
33
33
|
vertical = _useMaterialQuizState.vertical,
|
|
34
|
-
isLongPassage = _useMaterialQuizState.isLongPassage
|
|
34
|
+
isLongPassage = _useMaterialQuizState.isLongPassage,
|
|
35
|
+
lecture = _useMaterialQuizState.lecture;
|
|
35
36
|
var _useMaterialQuizDispa = useMaterialQuizDispatch(),
|
|
36
37
|
onSubmit = _useMaterialQuizDispa.onSubmit,
|
|
37
38
|
onNext = _useMaterialQuizDispa.onNext,
|
|
@@ -71,7 +72,7 @@ var MaterialQuizGroup = function MaterialQuizGroup() {
|
|
|
71
72
|
hasSubmitted = _React$useState16[0],
|
|
72
73
|
setHasSubmitted = _React$useState16[1];
|
|
73
74
|
var isNextActive = hasSubmitted && typeof onNext === 'function';
|
|
74
|
-
var isDisabled = !flattenDeep(currentAnswerList).length || !!userId;
|
|
75
|
+
var isDisabled = !flattenDeep(currentAnswerList).length || checkUserLectureTestEnded(lecture) || !!userId;
|
|
75
76
|
var _useCaculatePassage = useCaculatePassage(),
|
|
76
77
|
questionRef = _useCaculatePassage.questionRef,
|
|
77
78
|
containerRef = _useCaculatePassage.containerRef;
|
|
@@ -348,6 +349,7 @@ var MaterialQuizGroup = function MaterialQuizGroup() {
|
|
|
348
349
|
optionList: optionList,
|
|
349
350
|
currentOptionList: currentOptionList,
|
|
350
351
|
currentAnswerList: currentAnswerList,
|
|
352
|
+
isDisabled: isDisabled,
|
|
351
353
|
onUpdateAnswer: setCurrentAnswerList,
|
|
352
354
|
onUpdateOption: setCurrentOptionList,
|
|
353
355
|
onUpdateHasSubmitted: setHasSubmitted,
|
|
@@ -56,6 +56,7 @@ var MaterialQuizGroupDesktop = function MaterialQuizGroupDesktop(_ref3) {
|
|
|
56
56
|
groupList = _React$useContext.groupList,
|
|
57
57
|
currentAnswerList = _React$useContext.currentAnswerList,
|
|
58
58
|
currentOptionList = _React$useContext.currentOptionList,
|
|
59
|
+
isDisabled = _React$useContext.isDisabled,
|
|
59
60
|
updateCurrentAnswer = _React$useContext.updateCurrentAnswer,
|
|
60
61
|
updateCurrentOption = _React$useContext.updateCurrentOption,
|
|
61
62
|
handleAnswerReset = _React$useContext.handleAnswerReset;
|
|
@@ -114,12 +115,13 @@ var MaterialQuizGroupDesktop = function MaterialQuizGroupDesktop(_ref3) {
|
|
|
114
115
|
}), jsx(StyledQuizAnswerDropzone, {
|
|
115
116
|
id: "quiz-answer-dropzone-".concat(dropzoneIndex),
|
|
116
117
|
accept: ".quiz-answer",
|
|
117
|
-
disabled:
|
|
118
|
+
disabled: isDisabled,
|
|
118
119
|
isGroupAnswer: isGroupAnswer,
|
|
119
120
|
children: isGroupAnswer ? (_b = currentAnswerList[dropzoneIndex]) === null || _b === void 0 ? void 0 : _b.map(function (answer, index) {
|
|
120
121
|
var isHideStatus = !userId && (isActive || isTestLecture);
|
|
121
122
|
var status = isHideStatus ? undefined : getQuizGroupOptionResultStatus(dropzoneIndex, index, answer.order, materialQuizResponse, materialQuiz === null || materialQuiz === void 0 ? void 0 : materialQuiz.answerInfo);
|
|
122
123
|
return jsx(MaterialQuizGroupOptionItem, {
|
|
124
|
+
disabled: isDisabled,
|
|
123
125
|
status: status,
|
|
124
126
|
option: answer
|
|
125
127
|
}, index);
|
|
@@ -171,7 +173,7 @@ var MaterialQuizGroupDesktop = function MaterialQuizGroupDesktop(_ref3) {
|
|
|
171
173
|
children: [jsx(Button, {
|
|
172
174
|
role: "white",
|
|
173
175
|
size: "small",
|
|
174
|
-
disabled:
|
|
176
|
+
disabled: isDisabled,
|
|
175
177
|
onClick: handleAnswerReset,
|
|
176
178
|
children: intl.formatMessage({
|
|
177
179
|
id: 'materialQuiz.dropzone.optionReset'
|
|
@@ -183,7 +185,8 @@ var MaterialQuizGroupDesktop = function MaterialQuizGroupDesktop(_ref3) {
|
|
|
183
185
|
accept: ".quiz-answer",
|
|
184
186
|
children: currentOptionList.length ? currentOptionList.map(function (option, index) {
|
|
185
187
|
return jsx(MaterialQuizGroupOptionItem, {
|
|
186
|
-
option: option
|
|
188
|
+
option: option,
|
|
189
|
+
disabled: isDisabled
|
|
187
190
|
}, index);
|
|
188
191
|
}) : jsx(Flex, {
|
|
189
192
|
justify: "center",
|
|
@@ -46,6 +46,7 @@ var MaterialQuizGroupMobile = function MaterialQuizGroupMobile(_ref3) {
|
|
|
46
46
|
var _React$useContext = React.useContext(QuizGroupContext),
|
|
47
47
|
currentOptionList = _React$useContext.currentOptionList,
|
|
48
48
|
currentAnswerList = _React$useContext.currentAnswerList,
|
|
49
|
+
isDisabled = _React$useContext.isDisabled,
|
|
49
50
|
updateCurrentAnswer = _React$useContext.updateCurrentAnswer,
|
|
50
51
|
updateCurrentOption = _React$useContext.updateCurrentOption,
|
|
51
52
|
handleAnswerReset = _React$useContext.handleAnswerReset;
|
|
@@ -62,7 +63,7 @@ var MaterialQuizGroupMobile = function MaterialQuizGroupMobile(_ref3) {
|
|
|
62
63
|
children: [jsx(Button, {
|
|
63
64
|
role: "white",
|
|
64
65
|
size: "small",
|
|
65
|
-
disabled:
|
|
66
|
+
disabled: isDisabled,
|
|
66
67
|
onClick: handleAnswerReset,
|
|
67
68
|
block: true,
|
|
68
69
|
children: intl.formatMessage({
|
|
@@ -99,6 +100,7 @@ var MaterialQuizGroupMobile = function MaterialQuizGroupMobile(_ref3) {
|
|
|
99
100
|
var status = isHideStatus ? undefined : getQuizGroupOptionResultStatus(index, answerIndex, answer.order, materialQuizResponse, materialQuiz === null || materialQuiz === void 0 ? void 0 : materialQuiz.answerInfo);
|
|
100
101
|
return jsx(MaterialQuizGroupOptionItem, {
|
|
101
102
|
option: answer,
|
|
103
|
+
disabled: isDisabled,
|
|
102
104
|
status: status,
|
|
103
105
|
onClose: function onClose() {
|
|
104
106
|
var targetId = answer.order;
|
|
@@ -151,7 +153,8 @@ var MaterialQuizGroupMobile = function MaterialQuizGroupMobile(_ref3) {
|
|
|
151
153
|
updateCurrentAnswer(targetId, dropzoneIndex);
|
|
152
154
|
},
|
|
153
155
|
children: jsx(MaterialQuizGroupOptionItem, {
|
|
154
|
-
option: option
|
|
156
|
+
option: option,
|
|
157
|
+
disabled: isDisabled
|
|
155
158
|
}, index)
|
|
156
159
|
}, index);
|
|
157
160
|
}) : jsx(Text, {
|
|
@@ -32,20 +32,23 @@ var StyledDraggbleOption = /*#__PURE__*/_styled(EbDraggable, {
|
|
|
32
32
|
default:
|
|
33
33
|
return '3px solid transparent';
|
|
34
34
|
}
|
|
35
|
+
}, ";cursor:", function (_ref4) {
|
|
36
|
+
var disabled = _ref4.disabled;
|
|
37
|
+
return disabled ? 'not-allowed !important' : 'auto';
|
|
35
38
|
}, ";");
|
|
36
39
|
var StyledOptionTitle = /*#__PURE__*/_styled("div", {
|
|
37
40
|
target: "ex64yhy2"
|
|
38
|
-
})("display:flex;justify-content:center;align-items:center;width:", function (
|
|
39
|
-
var vertical = _ref4.vertical,
|
|
40
|
-
isOptionContent = _ref4.isOptionContent;
|
|
41
|
-
return isOptionContent ? '100%' : vertical ? '10.25rem' : '11.5rem';
|
|
42
|
-
}, ";height:", function (_ref5) {
|
|
41
|
+
})("display:flex;justify-content:center;align-items:center;width:", function (_ref5) {
|
|
43
42
|
var vertical = _ref5.vertical,
|
|
44
43
|
isOptionContent = _ref5.isOptionContent;
|
|
45
|
-
return isOptionContent ? '
|
|
46
|
-
}, ";
|
|
47
|
-
var
|
|
44
|
+
return isOptionContent ? '100%' : vertical ? '10.25rem' : '11.5rem';
|
|
45
|
+
}, ";height:", function (_ref6) {
|
|
46
|
+
var vertical = _ref6.vertical,
|
|
48
47
|
isOptionContent = _ref6.isOptionContent;
|
|
48
|
+
return isOptionContent ? 'auto' : vertical ? '10.25rem' : '11.5rem';
|
|
49
|
+
}, ";padding:0.5rem;background:", base.color.white, ";background-color:", function (_ref7) {
|
|
50
|
+
var status = _ref7.status,
|
|
51
|
+
isOptionContent = _ref7.isOptionContent;
|
|
49
52
|
if (!isOptionContent) {
|
|
50
53
|
return 'auto';
|
|
51
54
|
}
|
|
@@ -60,26 +63,27 @@ var StyledOptionTitle = /*#__PURE__*/_styled("div", {
|
|
|
60
63
|
}, ";");
|
|
61
64
|
var StyledOptionContent = /*#__PURE__*/_styled("div", {
|
|
62
65
|
target: "ex64yhy1"
|
|
63
|
-
})("display:flex;align-items:center;width:", function (
|
|
64
|
-
var vertical = _ref7.vertical;
|
|
65
|
-
return vertical ? '10.25rem' : '11.5rem';
|
|
66
|
-
}, ";height:", function (_ref8) {
|
|
66
|
+
})("display:flex;align-items:center;width:", function (_ref8) {
|
|
67
67
|
var vertical = _ref8.vertical;
|
|
68
68
|
return vertical ? '10.25rem' : '11.5rem';
|
|
69
|
+
}, ";height:", function (_ref9) {
|
|
70
|
+
var vertical = _ref9.vertical;
|
|
71
|
+
return vertical ? '10.25rem' : '11.5rem';
|
|
69
72
|
}, ";background:", base.color.navy8, ";& p{line-height:1;}");
|
|
70
73
|
var StyledIconButton = /*#__PURE__*/_styled(IconButton, {
|
|
71
74
|
target: "ex64yhy0"
|
|
72
|
-
})("border-radius:50%;width:1.5rem;height:1.5rem;position:absolute;top:0.5rem;right:0.5rem;background-color:", function (
|
|
73
|
-
var theme =
|
|
75
|
+
})("border-radius:50%;width:1.5rem;height:1.5rem;position:absolute;top:0.5rem;right:0.5rem;background-color:", function (_ref10) {
|
|
76
|
+
var theme = _ref10.theme;
|
|
74
77
|
return theme.palette.action.active;
|
|
75
78
|
}, ";align-self:flex-end;");
|
|
76
79
|
//
|
|
77
80
|
//
|
|
78
81
|
//
|
|
79
|
-
var MaterialQuizGroupOptionItem = function MaterialQuizGroupOptionItem(
|
|
80
|
-
var option =
|
|
81
|
-
status =
|
|
82
|
-
|
|
82
|
+
var MaterialQuizGroupOptionItem = function MaterialQuizGroupOptionItem(_ref11) {
|
|
83
|
+
var option = _ref11.option,
|
|
84
|
+
status = _ref11.status,
|
|
85
|
+
disabled = _ref11.disabled,
|
|
86
|
+
onClose = _ref11.onClose;
|
|
83
87
|
var _a;
|
|
84
88
|
var _useMaterialQuizState = useMaterialQuizState(),
|
|
85
89
|
vertical = _useMaterialQuizState.vertical,
|
|
@@ -110,7 +114,7 @@ var MaterialQuizGroupOptionItem = function MaterialQuizGroupOptionItem(_ref10) {
|
|
|
110
114
|
//
|
|
111
115
|
//
|
|
112
116
|
return jsxs(StyledDraggbleOption, {
|
|
113
|
-
disabled:
|
|
117
|
+
disabled: disabled || vertical,
|
|
114
118
|
id: option.order.toString(),
|
|
115
119
|
className: "quiz-answer",
|
|
116
120
|
vertical: vertical,
|
|
@@ -11,6 +11,7 @@ interface QuizGroupContextValue {
|
|
|
11
11
|
optionList: QuizGroupOption[];
|
|
12
12
|
currentOptionList: QuizGroupOption[];
|
|
13
13
|
currentAnswerList: QuizGroupOption[][];
|
|
14
|
+
isDisabled: boolean;
|
|
14
15
|
onDirty: (value: boolean) => void;
|
|
15
16
|
onUpdateAnswer: (value: React.SetStateAction<QuizGroupOption[][]>) => void;
|
|
16
17
|
onUpdateOption: (value: React.SetStateAction<QuizGroupOption[]>) => void;
|
|
@@ -39,8 +39,11 @@ var StyledOrder = styled.div.withConfig({
|
|
|
39
39
|
})(["width:1.5rem;height:1.5rem;display:flex;border-radius:4px;align-items:center;justify-content:center;color:", ";background-color:", ";flex:none;margin-left:0.5rem;"], base.color.navy0, base.color.navy4);
|
|
40
40
|
var StyledQuizDraggbleOption = styled(EbDraggable).withConfig({
|
|
41
41
|
componentId: "sc-19b0zkq-3"
|
|
42
|
-
})(["display:flex;border-radius:8px;border:1px solid ", ";background-color:", ";overflow:hidden;&:not(:last-of-type){margin-bottom:1rem;}", "{background-color:", ";color:", ";}", "{background-color:", ";& *{color:", ";}}", "{background-color:", ";color:", ";}&.ui-draggable-dragging{z-index:1000 !important;color:", " !important;border:none !important;", "{background-color:", ";}", "{background-color:", ";border:1px solid ", " !important;}", "{color:", ";background-color:", ";}& *{color:", " !important;}}&.ui-draggable-dragging.quiz-answer{width:calc(100% - 1rem * 2);}"], base.color.navy4, base.color.navy5,
|
|
43
|
-
var
|
|
42
|
+
})(["display:flex;border-radius:8px;border:1px solid ", ";background-color:", ";overflow:hidden;cursor:", ";&:not(:last-of-type){margin-bottom:1rem;}", "{background-color:", ";color:", ";}", "{background-color:", ";& *{color:", ";}}", "{background-color:", ";color:", ";}&.ui-draggable-dragging{z-index:1000 !important;color:", " !important;border:none !important;", "{background-color:", ";}", "{background-color:", ";border:1px solid ", " !important;}", "{color:", ";background-color:", ";}& *{color:", " !important;}}&.ui-draggable-dragging.quiz-answer{width:calc(100% - 1rem * 2);}"], base.color.navy4, base.color.navy5, function (_ref3) {
|
|
43
|
+
var disabled = _ref3.disabled;
|
|
44
|
+
return disabled ? 'not-allowed !important' : 'auto';
|
|
45
|
+
}, StyledQuizDraggbleOptionHandle, function (_ref4) {
|
|
46
|
+
var role = _ref4.role;
|
|
44
47
|
switch (role) {
|
|
45
48
|
case 'answer':
|
|
46
49
|
return base.color.primary4;
|
|
@@ -52,8 +55,8 @@ var StyledQuizDraggbleOption = styled(EbDraggable).withConfig({
|
|
|
52
55
|
default:
|
|
53
56
|
return base.color.navy3;
|
|
54
57
|
}
|
|
55
|
-
}, function (
|
|
56
|
-
var role =
|
|
58
|
+
}, function (_ref5) {
|
|
59
|
+
var role = _ref5.role;
|
|
57
60
|
switch (role) {
|
|
58
61
|
case 'answer':
|
|
59
62
|
return base.color.primary9;
|
|
@@ -65,8 +68,8 @@ var StyledQuizDraggbleOption = styled(EbDraggable).withConfig({
|
|
|
65
68
|
default:
|
|
66
69
|
return base.color.navy5;
|
|
67
70
|
}
|
|
68
|
-
}, StyledQuizDraggbleOptionContent, function (
|
|
69
|
-
var role =
|
|
71
|
+
}, StyledQuizDraggbleOptionContent, function (_ref6) {
|
|
72
|
+
var role = _ref6.role;
|
|
70
73
|
switch (role) {
|
|
71
74
|
case 'answer':
|
|
72
75
|
return base.color.primary1;
|
|
@@ -78,8 +81,8 @@ var StyledQuizDraggbleOption = styled(EbDraggable).withConfig({
|
|
|
78
81
|
default:
|
|
79
82
|
return base.color.navy5;
|
|
80
83
|
}
|
|
81
|
-
}, function (
|
|
82
|
-
var role =
|
|
84
|
+
}, function (_ref7) {
|
|
85
|
+
var role = _ref7.role;
|
|
83
86
|
switch (role) {
|
|
84
87
|
case 'answer':
|
|
85
88
|
return base.color.primary9;
|
|
@@ -91,8 +94,8 @@ var StyledQuizDraggbleOption = styled(EbDraggable).withConfig({
|
|
|
91
94
|
default:
|
|
92
95
|
return base.color.navy0;
|
|
93
96
|
}
|
|
94
|
-
}, StyledOrder, function (
|
|
95
|
-
var role =
|
|
97
|
+
}, StyledOrder, function (_ref8) {
|
|
98
|
+
var role = _ref8.role;
|
|
96
99
|
switch (role) {
|
|
97
100
|
case 'answer':
|
|
98
101
|
return base.color.primary3;
|
|
@@ -104,8 +107,8 @@ var StyledQuizDraggbleOption = styled(EbDraggable).withConfig({
|
|
|
104
107
|
default:
|
|
105
108
|
return base.color.navy4;
|
|
106
109
|
}
|
|
107
|
-
}, function (
|
|
108
|
-
var role =
|
|
110
|
+
}, function (_ref9) {
|
|
111
|
+
var role = _ref9.role;
|
|
109
112
|
switch (role) {
|
|
110
113
|
case 'answer':
|
|
111
114
|
return base.color.primary9;
|
|
@@ -121,17 +124,17 @@ var StyledQuizDraggbleOption = styled(EbDraggable).withConfig({
|
|
|
121
124
|
//
|
|
122
125
|
//
|
|
123
126
|
//
|
|
124
|
-
var QuizDraggbleOption = function QuizDraggbleOption(
|
|
125
|
-
var id =
|
|
126
|
-
className =
|
|
127
|
-
content =
|
|
128
|
-
|
|
129
|
-
disabled =
|
|
130
|
-
|
|
131
|
-
role =
|
|
132
|
-
indexOrder =
|
|
133
|
-
|
|
134
|
-
isMarkdown =
|
|
127
|
+
var QuizDraggbleOption = function QuizDraggbleOption(_ref10) {
|
|
128
|
+
var id = _ref10.id,
|
|
129
|
+
className = _ref10.className,
|
|
130
|
+
content = _ref10.content,
|
|
131
|
+
_ref10$disabled = _ref10.disabled,
|
|
132
|
+
disabled = _ref10$disabled === void 0 ? false : _ref10$disabled,
|
|
133
|
+
_ref10$role = _ref10.role,
|
|
134
|
+
role = _ref10$role === void 0 ? 'default' : _ref10$role,
|
|
135
|
+
indexOrder = _ref10.indexOrder,
|
|
136
|
+
_ref10$isMarkdown = _ref10.isMarkdown,
|
|
137
|
+
isMarkdown = _ref10$isMarkdown === void 0 ? false : _ref10$isMarkdown;
|
|
135
138
|
var _useMaterialQuizState = useMaterialQuizState(),
|
|
136
139
|
vertical = _useMaterialQuizState.vertical;
|
|
137
140
|
//
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elice/material-quiz",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.241128.0",
|
|
4
4
|
"description": "User view and editing components of Elice material quiz",
|
|
5
5
|
"repository": "https://git.elicer.io/elice/frontend/library/elice-material",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -65,19 +65,19 @@
|
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@dnd-kit/core": "^6.1.0",
|
|
67
67
|
"@elice/file-client": "^1.241120.0-quizimage.0",
|
|
68
|
-
"@elice/api-client": "^1.
|
|
68
|
+
"@elice/api-client": "^1.241127.0",
|
|
69
69
|
"@elice/blocks": "1.241007.0",
|
|
70
70
|
"@elice/design-tokens": "^1.220803.0",
|
|
71
71
|
"@elice/icons": "^1.230814.0",
|
|
72
72
|
"@elice/icons-legacy": "npm:@elice/icons@0.230814.0",
|
|
73
|
-
"@elice/intl": "0.
|
|
73
|
+
"@elice/intl": "0.241127.0",
|
|
74
74
|
"@elice/markdown": "1.241015.0",
|
|
75
|
-
"@elice/material-shared-types": "1.
|
|
76
|
-
"@elice/material-shared-utils": "1.
|
|
75
|
+
"@elice/material-shared-types": "1.241128.0",
|
|
76
|
+
"@elice/material-shared-utils": "1.241128.0",
|
|
77
77
|
"@elice/mui-elements": "^5.240820.0",
|
|
78
78
|
"@elice/mui-system": "^5.240820.0",
|
|
79
79
|
"@elice/openapi-client-course": "^1.230814.0",
|
|
80
|
-
"@elice/types": "1.
|
|
80
|
+
"@elice/types": "1.241127.0",
|
|
81
81
|
"@elice/wysiwyg": "1.241015.0",
|
|
82
82
|
"@emotion/react": "^11.10.5",
|
|
83
83
|
"@emotion/styled": "^11.10.5",
|