@instructure/quiz-interactions
Version:
A React UI component Library for quiz interaction types.
248 lines (246 loc) • 9.52 kB
JavaScript
/** @jsx jsx */ function _assert_this_initialized(self) {
if (self === void 0) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
}
return self;
}
function _call_super(_this, derived, args) {
derived = _get_prototype_of(derived);
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
}
function _class_call_check(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
function _defineProperties(target, props) {
for(var i = 0; i < props.length; i++){
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
function _create_class(Constructor, protoProps, staticProps) {
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
if (staticProps) _defineProperties(Constructor, staticProps);
return Constructor;
}
function _define_property(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}
function _get_prototype_of(o) {
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
return o.__proto__ || Object.getPrototypeOf(o);
};
return _get_prototype_of(o);
}
function _inherits(subClass, superClass) {
if (typeof superClass !== "function" && superClass !== null) {
throw new TypeError("Super expression must either be null or a function");
}
subClass.prototype = Object.create(superClass && superClass.prototype, {
constructor: {
value: subClass,
writable: true,
configurable: true
}
});
if (superClass) _set_prototype_of(subClass, superClass);
}
function _possible_constructor_return(self, call) {
if (call && (_type_of(call) === "object" || typeof call === "function")) {
return call;
}
return _assert_this_initialized(self);
}
function _set_prototype_of(o, p) {
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
o.__proto__ = p;
return o;
};
return _set_prototype_of(o, p);
}
function _type_of(obj) {
"@swc/helpers - typeof";
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
}
function _is_native_reflect_construct() {
try {
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
} catch (_) {}
return (_is_native_reflect_construct = function() {
return !!result;
})();
}
function _ts_decorate(decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
}
import { Component } from 'react';
import PropTypes from 'prop-types';
import find from 'lodash/fp/find';
import { Text } from '@instructure/ui-text';
import { jsx } from '@instructure/emotion';
import t from '@instructure/quiz-i18n/format-message';
import { ItemBodyWrapper } from '@instructure/quiz-rce';
import { FeedbackWrapper, NoResponse } from '@instructure/quiz-results-feedback';
import generateStyle from './styles';
import generateComponentTheme from './theme';
import { withStyleOverrides } from '@instructure/quiz-common';
/**
---
category: Matching
---
Matching Result component
```jsx_example
<SettingsSwitcher locales={LOCALES}>
<MatchingResult
itemBody="Match the name of the celestial body on the left with its correct classification."
interactionData={{
questions: [
{ id: 'quuid1', itemBody: 'Mars' },
{ id: 'quuid2', itemBody: 'Phobos' },
{ id: 'quuid3', itemBody: 'Andromeda' },
{ id: 'quuid4', itemBody: 'Alpha Centauri' }
],
answers: [
'Planet',
'Moon',
'Nebula',
'Star',
'Galaxy - this is a very long answer - this is a very long answer - this is a very long answer'
]
}}
scoredData={{
value: [{
id: 'quuid1',
userResponded: 'Planet',
value: 'Planet'
}, {
id: 'quuid2',
userResponded: 'Moon',
value: 'Moon'
}, {
id: 'quuid3',
userResponded: 'Nebula',
value: 'Nebula'
}, {
id: 'quuid4',
userResponded: 'Star',
value: 'GalaxyGalaxy - this is a very long answer - this is a very long answer - this is a very long answer'
}]
}}
/>
</SettingsSwitcher>
```
**/ var MatchingResult = /*#__PURE__*/ function(Component) {
"use strict";
_inherits(MatchingResult, Component);
function MatchingResult() {
_class_call_check(this, MatchingResult);
return _call_super(this, MatchingResult, arguments);
}
_create_class(MatchingResult, [
{
key: "getAnswerBodyForQuestion",
value: function getAnswerBodyForQuestion(questionId) {
var answer = find({
id: String(questionId)
}, this.props.scoredData.value || {});
return answer && answer.value;
}
},
{
key: "renderAnswer",
value: function renderAnswer(response, answerBody) {
var correctnessKnown = typeof this.props.scoredData.correct !== 'undefined';
var status = 'incorrect';
if (response && response.resultScore) {
status = 'correct';
} else if ((!response || !response.resultScore) && correctnessKnown) {
status = 'incorrect';
} else {
status = 'unknown';
}
return /*#__PURE__*/ jsx("div", {
css: this.props.styles.answer
}, response && response.userResponded ? /*#__PURE__*/ jsx(FeedbackWrapper, {
userResponse: response.userResponded,
correctAnswer: answerBody,
status: status,
hiddenCorrectAnswerText: t('Correct match: '),
hiddenIncorrectAnswerText: t('Incorrect match: ')
}) : /*#__PURE__*/ jsx(NoResponse, {
correctAnswerLabel: answerBody,
responseHidden: !this.props.scoredData.value,
status: status
}));
}
},
{
key: "render",
value: function render() {
var _this = this;
return /*#__PURE__*/ jsx(ItemBodyWrapper, {
itemBody: this.props.itemBody
}, /*#__PURE__*/ jsx("div", null, this.props.interactionData.questions.map(function(question) {
var response = find({
id: String(question.id)
}, _this.props.scoredData.value || {});
var answerBody = _this.getAnswerBodyForQuestion(question.id);
return /*#__PURE__*/ jsx("div", {
css: _this.props.styles.item,
key: question.id
}, /*#__PURE__*/ jsx("div", {
css: _this.props.styles.question,
"data-testid": "question"
}, /*#__PURE__*/ jsx(Text, {
color: "primary"
}, question.itemBody)), /*#__PURE__*/ jsx("div", {
css: _this.props.styles.divider
}), _this.renderAnswer(response, answerBody));
})));
}
}
]);
return MatchingResult;
}(Component);
_define_property(MatchingResult, "displayName", 'MatchingResult');
_define_property(MatchingResult, "componentId", "Quizzes".concat(MatchingResult.displayName));
_define_property(MatchingResult, "propTypes", {
interactionData: PropTypes.shape({
questions: PropTypes.arrayOf(PropTypes.shape({
id: PropTypes.string,
itemBody: PropTypes.string
}))
}).isRequired,
itemBody: PropTypes.string.isRequired,
scoredData: PropTypes.shape({
correct: PropTypes.bool,
value: PropTypes.arrayOf(PropTypes.shape({
id: PropTypes.string.isRequired,
resultScore: PropTypes.number,
userResponded: PropTypes.string,
value: PropTypes.string
}))
}).isRequired,
styles: PropTypes.object
});
MatchingResult = _ts_decorate([
withStyleOverrides(generateStyle, generateComponentTheme)
], MatchingResult);
export default MatchingResult;