@pie-element/graphing-solution-set 6.1.2-next.1 → 6.1.2
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/CHANGELOG.json +1 -0
- package/CHANGELOG.md +856 -0
- package/LICENSE.md +5 -0
- package/README.md +20 -0
- package/configure/CHANGELOG.json +1 -0
- package/configure/CHANGELOG.md +816 -0
- package/configure/lib/configure.js +312 -0
- package/configure/lib/configure.js.map +1 -0
- package/configure/lib/correct-response.js +435 -0
- package/configure/lib/correct-response.js.map +1 -0
- package/configure/lib/defaults.js +357 -0
- package/configure/lib/defaults.js.map +1 -0
- package/configure/lib/graphing-config.js +408 -0
- package/configure/lib/graphing-config.js.map +1 -0
- package/configure/lib/index.js +163 -0
- package/configure/lib/index.js.map +1 -0
- package/configure/lib/utils.js +630 -0
- package/configure/lib/utils.js.map +1 -0
- package/configure/package.json +29 -0
- package/controller/CHANGELOG.json +1 -0
- package/controller/CHANGELOG.md +675 -0
- package/controller/lib/defaults.js +69 -0
- package/controller/lib/defaults.js.map +1 -0
- package/controller/lib/index.js +351 -0
- package/controller/lib/index.js.map +1 -0
- package/controller/lib/utils.js +212 -0
- package/controller/lib/utils.js.map +1 -0
- package/controller/package.json +22 -0
- package/demo-gss.gif +0 -0
- package/docs/config-schema.json +1560 -0
- package/docs/config-schema.json.md +1114 -0
- package/docs/demo/config.js +8 -0
- package/docs/demo/generate.js +54 -0
- package/docs/demo/index.html +1 -0
- package/docs/demo/session.js +6 -0
- package/docs/pie-schema.json +1800 -0
- package/docs/pie-schema.json.md +952 -0
- package/lib/index.js +164 -0
- package/lib/index.js.map +1 -0
- package/lib/main.js +355 -0
- package/lib/main.js.map +1 -0
- package/lib/utils.js +515 -0
- package/lib/utils.js.map +1 -0
- package/package.json +23 -86
- package/configure.js +0 -2
- package/controller.js +0 -1
- package/dist/author/configure.d.ts +0 -26
- package/dist/author/configure.js +0 -190
- package/dist/author/correct-response.d.ts +0 -33
- package/dist/author/correct-response.js +0 -206
- package/dist/author/defaults.d.ts +0 -238
- package/dist/author/defaults.js +0 -339
- package/dist/author/graphing-config.d.ts +0 -33
- package/dist/author/graphing-config.js +0 -237
- package/dist/author/index.d.ts +0 -62
- package/dist/author/index.js +0 -87
- package/dist/author/utils.d.ts +0 -46
- package/dist/author/utils.js +0 -474
- package/dist/browser/author/index.js +0 -1942
- package/dist/browser/author/index.js.map +0 -1
- package/dist/browser/browser-pUycHh7Y.js +0 -348
- package/dist/browser/browser-pUycHh7Y.js.map +0 -1
- package/dist/browser/controller/index.js +0 -193
- package/dist/browser/controller/index.js.map +0 -1
- package/dist/browser/delivery/index.js +0 -782
- package/dist/browser/delivery/index.js.map +0 -1
- package/dist/browser/dist-BxTk7Laj.js +0 -57671
- package/dist/browser/dist-BxTk7Laj.js.map +0 -1
- package/dist/browser/graphing-solution-set.css +0 -2
- package/dist/controller/defaults.d.ts +0 -64
- package/dist/controller/defaults.js +0 -54
- package/dist/controller/index.d.ts +0 -24
- package/dist/controller/index.js +0 -110
- package/dist/controller/utils.d.ts +0 -20
- package/dist/controller/utils.js +0 -39
- package/dist/delivery/index.d.ts +0 -22
- package/dist/delivery/index.js +0 -62
- package/dist/delivery/main.d.ts +0 -31
- package/dist/delivery/main.js +0 -198
- package/dist/delivery/utils.d.ts +0 -12
- package/dist/delivery/utils.js +0 -220
- package/dist/graphing-solution-set.css +0 -2
- package/dist/index.d.ts +0 -1
- package/dist/index.iife.d.ts +0 -8
- package/dist/index.iife.js +0 -405
- package/dist/index.js +0 -2
- package/dist/runtime-support.d.ts +0 -12
- package/dist/runtime-support.js +0 -12
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = exports.Configure = void 0;
|
|
8
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
9
|
+
var _react = _interopRequireDefault(require("react"));
|
|
10
|
+
var _styles = require("@mui/material/styles");
|
|
11
|
+
var _configUi = require("@pie-lib/config-ui");
|
|
12
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
+
var _debug = _interopRequireDefault(require("debug"));
|
|
14
|
+
var _Typography = _interopRequireDefault(require("@mui/material/Typography"));
|
|
15
|
+
var _editableHtmlTipTap = _interopRequireDefault(require("@pie-lib/editable-html-tip-tap"));
|
|
16
|
+
var _graphingConfig = _interopRequireDefault(require("./graphing-config"));
|
|
17
|
+
var _correctResponse = _interopRequireDefault(require("./correct-response"));
|
|
18
|
+
const {
|
|
19
|
+
Panel,
|
|
20
|
+
toggle,
|
|
21
|
+
radio,
|
|
22
|
+
checkboxes,
|
|
23
|
+
textField,
|
|
24
|
+
dropdown
|
|
25
|
+
} = _configUi.settings;
|
|
26
|
+
const log = (0, _debug.default)('@pie-element:graphing-solution-set:configure');
|
|
27
|
+
const StyledInputContainer = (0, _styles.styled)(_configUi.InputContainer)(({
|
|
28
|
+
theme
|
|
29
|
+
}) => ({
|
|
30
|
+
width: '100%',
|
|
31
|
+
paddingTop: theme.spacing(2),
|
|
32
|
+
marginBottom: theme.spacing(2),
|
|
33
|
+
marginTop: theme.spacing(2)
|
|
34
|
+
}));
|
|
35
|
+
const Description = (0, _styles.styled)(_Typography.default)(({
|
|
36
|
+
theme
|
|
37
|
+
}) => ({
|
|
38
|
+
marginBottom: theme.spacing(2.5)
|
|
39
|
+
}));
|
|
40
|
+
class Configure extends _react.default.Component {
|
|
41
|
+
constructor(...args) {
|
|
42
|
+
super(...args);
|
|
43
|
+
/*
|
|
44
|
+
* Triggered when the rationale is changed
|
|
45
|
+
* @param {string} rationale - The new rationale
|
|
46
|
+
* */
|
|
47
|
+
(0, _defineProperty2.default)(this, "onRationaleChange", rationale => {
|
|
48
|
+
const {
|
|
49
|
+
onModelChanged,
|
|
50
|
+
model
|
|
51
|
+
} = this.props;
|
|
52
|
+
onModelChanged({
|
|
53
|
+
...model,
|
|
54
|
+
rationale
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
/*
|
|
58
|
+
* Triggered when the prompt is changed
|
|
59
|
+
* @param {string} prompt - The new prompt
|
|
60
|
+
* */
|
|
61
|
+
(0, _defineProperty2.default)(this, "onPromptChange", prompt => {
|
|
62
|
+
const {
|
|
63
|
+
onModelChanged,
|
|
64
|
+
model
|
|
65
|
+
} = this.props;
|
|
66
|
+
onModelChanged({
|
|
67
|
+
...model,
|
|
68
|
+
prompt
|
|
69
|
+
});
|
|
70
|
+
});
|
|
71
|
+
/*
|
|
72
|
+
* Triggered when the teacher instructions are changed
|
|
73
|
+
* @param {string} teacherInstructions - The new teacher instructions
|
|
74
|
+
* */
|
|
75
|
+
(0, _defineProperty2.default)(this, "onTeacherInstructionsChange", teacherInstructions => {
|
|
76
|
+
const {
|
|
77
|
+
onModelChanged,
|
|
78
|
+
model
|
|
79
|
+
} = this.props;
|
|
80
|
+
onModelChanged({
|
|
81
|
+
...model,
|
|
82
|
+
teacherInstructions
|
|
83
|
+
});
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
/*
|
|
87
|
+
* Triggered when configure component is mounted
|
|
88
|
+
* */
|
|
89
|
+
componentDidMount() {
|
|
90
|
+
const {
|
|
91
|
+
configuration,
|
|
92
|
+
onModelChanged,
|
|
93
|
+
model
|
|
94
|
+
} = this.props;
|
|
95
|
+
const {
|
|
96
|
+
title,
|
|
97
|
+
graphDimensions
|
|
98
|
+
} = configuration || {};
|
|
99
|
+
let {
|
|
100
|
+
arrows,
|
|
101
|
+
titleEnabled: showTitle,
|
|
102
|
+
dimensionsEnabled: showDimensions
|
|
103
|
+
} = model || {};
|
|
104
|
+
// This is used for offering support for old models which have the property arrows: boolean
|
|
105
|
+
// Same thing is set in the controller: packages/graphing/controller/src/index.js - model
|
|
106
|
+
if (typeof arrows === 'boolean') {
|
|
107
|
+
if (arrows) {
|
|
108
|
+
arrows = {
|
|
109
|
+
left: true,
|
|
110
|
+
right: true,
|
|
111
|
+
up: true,
|
|
112
|
+
down: true
|
|
113
|
+
};
|
|
114
|
+
} else {
|
|
115
|
+
arrows = {
|
|
116
|
+
left: false,
|
|
117
|
+
right: false,
|
|
118
|
+
up: false,
|
|
119
|
+
down: false
|
|
120
|
+
};
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
const titleEnabled = showTitle === undefined || showTitle === null ? title.enabled : showTitle;
|
|
124
|
+
const dimensionsEnabled = showDimensions === undefined || showDimensions === null ? graphDimensions.enabled : showDimensions;
|
|
125
|
+
onModelChanged && onModelChanged({
|
|
126
|
+
...model,
|
|
127
|
+
arrows,
|
|
128
|
+
titleEnabled,
|
|
129
|
+
dimensionsEnabled
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
/*
|
|
133
|
+
* Render the component
|
|
134
|
+
* */
|
|
135
|
+
render() {
|
|
136
|
+
const {
|
|
137
|
+
model,
|
|
138
|
+
configuration,
|
|
139
|
+
onConfigurationChanged,
|
|
140
|
+
onModelChanged,
|
|
141
|
+
imageSupport,
|
|
142
|
+
uploadSoundSupport
|
|
143
|
+
} = this.props;
|
|
144
|
+
const {
|
|
145
|
+
arrows = {},
|
|
146
|
+
authoring = {},
|
|
147
|
+
coordinatesOnHover = {},
|
|
148
|
+
contentDimensions = {},
|
|
149
|
+
gridConfigurations = [],
|
|
150
|
+
graphDimensions = {},
|
|
151
|
+
instruction = {},
|
|
152
|
+
labels = {},
|
|
153
|
+
padding = {},
|
|
154
|
+
prompt = {},
|
|
155
|
+
rationale = {},
|
|
156
|
+
scoringType = {},
|
|
157
|
+
settingsPanelDisabled,
|
|
158
|
+
spellCheck = {},
|
|
159
|
+
studentInstructions = {},
|
|
160
|
+
teacherInstructions = {},
|
|
161
|
+
title = {},
|
|
162
|
+
maxImageWidth = {},
|
|
163
|
+
maxImageHeight = {},
|
|
164
|
+
withRubric = {},
|
|
165
|
+
language = {},
|
|
166
|
+
languageChoices = {},
|
|
167
|
+
mathMlOptions = {}
|
|
168
|
+
} = configuration || {};
|
|
169
|
+
const {
|
|
170
|
+
errors = {},
|
|
171
|
+
extraCSSRules,
|
|
172
|
+
labelsEnabled,
|
|
173
|
+
dimensionsEnabled,
|
|
174
|
+
promptEnabled,
|
|
175
|
+
rationaleEnabled,
|
|
176
|
+
spellCheckEnabled,
|
|
177
|
+
teacherInstructionsEnabled,
|
|
178
|
+
titleEnabled
|
|
179
|
+
} = model || {};
|
|
180
|
+
const defaultImageMaxWidth = maxImageWidth && maxImageWidth.prompt;
|
|
181
|
+
const defaultImageMaxHeight = maxImageHeight && maxImageHeight.prompt;
|
|
182
|
+
const labelsPlaceholders = {
|
|
183
|
+
top: labels.top,
|
|
184
|
+
right: labels.right,
|
|
185
|
+
bottom: labels.bottom,
|
|
186
|
+
left: labels.left
|
|
187
|
+
};
|
|
188
|
+
const panelItemType = {
|
|
189
|
+
arrows: arrows.settings && checkboxes(arrows.label, {
|
|
190
|
+
left: arrows.left,
|
|
191
|
+
right: arrows.right,
|
|
192
|
+
up: arrows.up,
|
|
193
|
+
down: arrows.down
|
|
194
|
+
}),
|
|
195
|
+
titleEnabled: title.settings && toggle(title.label),
|
|
196
|
+
padding: padding.settings && toggle(padding.label),
|
|
197
|
+
labelsEnabled: labels.settings && toggle(labels.label),
|
|
198
|
+
'language.enabled': language.settings && toggle(language.label, true),
|
|
199
|
+
language: language.settings && language.enabled && dropdown(languageChoices.label, languageChoices.options),
|
|
200
|
+
dimensionsEnabled: graphDimensions.settings && toggle(graphDimensions.label),
|
|
201
|
+
coordinatesOnHover: coordinatesOnHover.settings && toggle(coordinatesOnHover.label)
|
|
202
|
+
};
|
|
203
|
+
const panelProperties = {
|
|
204
|
+
'authoring.enabled': authoring.settings && toggle(authoring.label, true),
|
|
205
|
+
teacherInstructionsEnabled: teacherInstructions.settings && toggle(teacherInstructions.label),
|
|
206
|
+
studentInstructionsEnabled: studentInstructions.settings && toggle(studentInstructions.label),
|
|
207
|
+
promptEnabled: prompt.settings && toggle(prompt.label),
|
|
208
|
+
rationaleEnabled: rationale.settings && toggle(rationale.label),
|
|
209
|
+
spellCheckEnabled: spellCheck.settings && toggle(spellCheck.label),
|
|
210
|
+
scoringType: scoringType.settings && radio(scoringType.label, ['dichotomous', 'partial scoring']),
|
|
211
|
+
rubricEnabled: withRubric?.settings && toggle(withRubric?.label),
|
|
212
|
+
instruction: instruction.settings && textField(instruction.label)
|
|
213
|
+
};
|
|
214
|
+
return /*#__PURE__*/_react.default.createElement(_configUi.layout.ConfigLayout, {
|
|
215
|
+
extraCSSRules: extraCSSRules,
|
|
216
|
+
dimensions: contentDimensions,
|
|
217
|
+
hideSettings: settingsPanelDisabled,
|
|
218
|
+
settings: /*#__PURE__*/_react.default.createElement(Panel, {
|
|
219
|
+
model: model,
|
|
220
|
+
configuration: configuration,
|
|
221
|
+
onChangeModel: onModelChanged,
|
|
222
|
+
onChangeConfiguration: onConfigurationChanged,
|
|
223
|
+
groups: {
|
|
224
|
+
Settings: panelItemType,
|
|
225
|
+
Properties: panelProperties
|
|
226
|
+
}
|
|
227
|
+
})
|
|
228
|
+
}, /*#__PURE__*/_react.default.createElement(Description, {
|
|
229
|
+
component: "div",
|
|
230
|
+
variant: "body1"
|
|
231
|
+
}, instruction?.label || ''), teacherInstructionsEnabled && /*#__PURE__*/_react.default.createElement(StyledInputContainer, {
|
|
232
|
+
label: teacherInstructions.label
|
|
233
|
+
}, /*#__PURE__*/_react.default.createElement(_editableHtmlTipTap.default, {
|
|
234
|
+
markup: model.teacherInstructions || '',
|
|
235
|
+
onChange: this.onTeacherInstructionsChange,
|
|
236
|
+
imageSupport: imageSupport,
|
|
237
|
+
nonEmpty: false,
|
|
238
|
+
spellCheck: spellCheckEnabled,
|
|
239
|
+
maxImageWidth: maxImageWidth && maxImageWidth.teacherInstructions || defaultImageMaxWidth,
|
|
240
|
+
maxImageHeight: maxImageHeight && maxImageHeight.teacherInstructions || defaultImageMaxHeight,
|
|
241
|
+
uploadSoundSupport: uploadSoundSupport,
|
|
242
|
+
languageCharactersProps: [{
|
|
243
|
+
language: 'spanish'
|
|
244
|
+
}, {
|
|
245
|
+
language: 'special'
|
|
246
|
+
}],
|
|
247
|
+
mathMlOptions: mathMlOptions
|
|
248
|
+
})), promptEnabled && /*#__PURE__*/_react.default.createElement(StyledInputContainer, {
|
|
249
|
+
label: prompt.label
|
|
250
|
+
}, /*#__PURE__*/_react.default.createElement(_editableHtmlTipTap.default, {
|
|
251
|
+
markup: model.prompt,
|
|
252
|
+
onChange: this.onPromptChange,
|
|
253
|
+
imageSupport: imageSupport,
|
|
254
|
+
nonEmpty: false,
|
|
255
|
+
spellCheck: spellCheckEnabled,
|
|
256
|
+
disableUnderline: true,
|
|
257
|
+
maxImageWidth: defaultImageMaxWidth,
|
|
258
|
+
maxImageHeight: defaultImageMaxHeight,
|
|
259
|
+
uploadSoundSupport: uploadSoundSupport,
|
|
260
|
+
languageCharactersProps: [{
|
|
261
|
+
language: 'spanish'
|
|
262
|
+
}, {
|
|
263
|
+
language: 'special'
|
|
264
|
+
}],
|
|
265
|
+
mathMlOptions: mathMlOptions
|
|
266
|
+
})), /*#__PURE__*/_react.default.createElement(_graphingConfig.default, {
|
|
267
|
+
authoring: authoring,
|
|
268
|
+
gridConfigurations: gridConfigurations,
|
|
269
|
+
graphDimensions: graphDimensions,
|
|
270
|
+
labelsPlaceholders: labelsPlaceholders,
|
|
271
|
+
model: model,
|
|
272
|
+
showLabels: labelsEnabled,
|
|
273
|
+
dimensionsEnabled: dimensionsEnabled,
|
|
274
|
+
showTitle: titleEnabled,
|
|
275
|
+
titlePlaceholder: title.placeholder,
|
|
276
|
+
onChange: this.props.onModelChanged,
|
|
277
|
+
mathMlOptions: mathMlOptions
|
|
278
|
+
}), /*#__PURE__*/_react.default.createElement(_correctResponse.default, {
|
|
279
|
+
errors: errors,
|
|
280
|
+
model: model,
|
|
281
|
+
onChange: this.props.onModelChanged,
|
|
282
|
+
mathMlOptions: mathMlOptions
|
|
283
|
+
}), rationaleEnabled && /*#__PURE__*/_react.default.createElement(StyledInputContainer, {
|
|
284
|
+
label: rationale.label || 'Rationale'
|
|
285
|
+
}, /*#__PURE__*/_react.default.createElement(_editableHtmlTipTap.default, {
|
|
286
|
+
markup: model.rationale || '',
|
|
287
|
+
onChange: this.onRationaleChange,
|
|
288
|
+
imageSupport: imageSupport,
|
|
289
|
+
spellCheck: spellCheckEnabled,
|
|
290
|
+
maxImageWidth: maxImageWidth && maxImageWidth.rationale || defaultImageMaxWidth,
|
|
291
|
+
maxImageHeight: maxImageHeight && maxImageHeight.rationale || defaultImageMaxHeight,
|
|
292
|
+
uploadSoundSupport: uploadSoundSupport,
|
|
293
|
+
languageCharactersProps: [{
|
|
294
|
+
language: 'spanish'
|
|
295
|
+
}, {
|
|
296
|
+
language: 'special'
|
|
297
|
+
}],
|
|
298
|
+
mathMlOptions: mathMlOptions
|
|
299
|
+
})));
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
exports.Configure = Configure;
|
|
303
|
+
(0, _defineProperty2.default)(Configure, "propTypes", {
|
|
304
|
+
onModelChanged: _propTypes.default.func,
|
|
305
|
+
onConfigurationChanged: _propTypes.default.func,
|
|
306
|
+
imageSupport: _propTypes.default.object,
|
|
307
|
+
uploadSoundSupport: _propTypes.default.object,
|
|
308
|
+
model: _propTypes.default.object.isRequired,
|
|
309
|
+
configuration: _propTypes.default.object.isRequired
|
|
310
|
+
});
|
|
311
|
+
var _default = exports.default = Configure;
|
|
312
|
+
//# sourceMappingURL=configure.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"configure.js","names":["_react","_interopRequireDefault","require","_styles","_configUi","_propTypes","_debug","_Typography","_editableHtmlTipTap","_graphingConfig","_correctResponse","Panel","toggle","radio","checkboxes","textField","dropdown","settings","log","debug","StyledInputContainer","styled","InputContainer","theme","width","paddingTop","spacing","marginBottom","marginTop","Description","Typography","Configure","React","Component","constructor","args","_defineProperty2","default","rationale","onModelChanged","model","props","prompt","teacherInstructions","componentDidMount","configuration","title","graphDimensions","arrows","titleEnabled","showTitle","dimensionsEnabled","showDimensions","left","right","up","down","undefined","enabled","render","onConfigurationChanged","imageSupport","uploadSoundSupport","authoring","coordinatesOnHover","contentDimensions","gridConfigurations","instruction","labels","padding","scoringType","settingsPanelDisabled","spellCheck","studentInstructions","maxImageWidth","maxImageHeight","withRubric","language","languageChoices","mathMlOptions","errors","extraCSSRules","labelsEnabled","promptEnabled","rationaleEnabled","spellCheckEnabled","teacherInstructionsEnabled","defaultImageMaxWidth","defaultImageMaxHeight","labelsPlaceholders","top","bottom","panelItemType","label","options","panelProperties","studentInstructionsEnabled","rubricEnabled","createElement","layout","ConfigLayout","dimensions","hideSettings","onChangeModel","onChangeConfiguration","groups","Settings","Properties","component","variant","markup","onChange","onTeacherInstructionsChange","nonEmpty","languageCharactersProps","onPromptChange","disableUnderline","showLabels","titlePlaceholder","placeholder","onRationaleChange","exports","PropTypes","func","object","isRequired","_default"],"sources":["../src/configure.jsx"],"sourcesContent":["import React from 'react';\nimport { styled } from '@mui/material/styles';\n\nimport { settings, layout, InputContainer } from '@pie-lib/config-ui';\nimport PropTypes from 'prop-types';\nimport debug from 'debug';\nimport Typography from '@mui/material/Typography';\nimport EditableHtml from '@pie-lib/editable-html-tip-tap';\nimport GraphingConfig from './graphing-config';\nimport CorrectResponse from './correct-response';\n\nconst { Panel, toggle, radio, checkboxes, textField, dropdown } = settings;\nconst log = debug('@pie-element:graphing-solution-set:configure');\n\nconst StyledInputContainer = styled(InputContainer)(({ theme }) => ({\n width: '100%',\n paddingTop: theme.spacing(2),\n marginBottom: theme.spacing(2),\n marginTop: theme.spacing(2),\n}));\n\nconst Description = styled(Typography)(({ theme }) => ({\n marginBottom: theme.spacing(2.5),\n}));\n\nexport class Configure extends React.Component {\n static propTypes = {\n onModelChanged: PropTypes.func,\n onConfigurationChanged: PropTypes.func,\n imageSupport: PropTypes.object,\n uploadSoundSupport: PropTypes.object,\n model: PropTypes.object.isRequired,\n configuration: PropTypes.object.isRequired,\n };\n\n /*\n * Triggered when configure component is mounted\n * */\n componentDidMount() {\n const { configuration, onModelChanged, model } = this.props;\n const { title, graphDimensions } = configuration || {};\n let { arrows, titleEnabled: showTitle, dimensionsEnabled: showDimensions } = model || {};\n // This is used for offering support for old models which have the property arrows: boolean\n // Same thing is set in the controller: packages/graphing/controller/src/index.js - model\n if (typeof arrows === 'boolean') {\n if (arrows) {\n arrows = { left: true, right: true, up: true, down: true };\n } else {\n arrows = { left: false, right: false, up: false, down: false };\n }\n }\n const titleEnabled = showTitle === undefined || showTitle === null ? title.enabled : showTitle;\n const dimensionsEnabled =\n showDimensions === undefined || showDimensions === null ? graphDimensions.enabled : showDimensions;\n onModelChanged && onModelChanged({ ...model, arrows, titleEnabled, dimensionsEnabled });\n }\n\n /*\n * Triggered when the rationale is changed\n * @param {string} rationale - The new rationale\n * */\n onRationaleChange = (rationale) => {\n const { onModelChanged, model } = this.props;\n onModelChanged({ ...model, rationale });\n };\n\n /*\n * Triggered when the prompt is changed\n * @param {string} prompt - The new prompt\n * */\n onPromptChange = (prompt) => {\n const { onModelChanged, model } = this.props;\n onModelChanged({ ...model, prompt });\n };\n\n /*\n * Triggered when the teacher instructions are changed\n * @param {string} teacherInstructions - The new teacher instructions\n * */\n onTeacherInstructionsChange = (teacherInstructions) => {\n const { onModelChanged, model } = this.props;\n onModelChanged({ ...model, teacherInstructions });\n };\n\n /*\n * Render the component\n * */\n render() {\n const { model, configuration, onConfigurationChanged, onModelChanged, imageSupport, uploadSoundSupport } =\n this.props;\n const {\n arrows = {},\n authoring = {},\n coordinatesOnHover = {},\n contentDimensions = {},\n gridConfigurations = [],\n graphDimensions = {},\n instruction = {},\n labels = {},\n padding = {},\n prompt = {},\n rationale = {},\n scoringType = {},\n settingsPanelDisabled,\n spellCheck = {},\n studentInstructions = {},\n teacherInstructions = {},\n title = {},\n maxImageWidth = {},\n maxImageHeight = {},\n withRubric = {},\n language = {},\n languageChoices = {},\n mathMlOptions = {},\n } = configuration || {};\n const {\n errors = {},\n extraCSSRules,\n labelsEnabled,\n dimensionsEnabled,\n promptEnabled,\n rationaleEnabled,\n spellCheckEnabled,\n teacherInstructionsEnabled,\n titleEnabled,\n } = model || {};\n const defaultImageMaxWidth = maxImageWidth && maxImageWidth.prompt;\n const defaultImageMaxHeight = maxImageHeight && maxImageHeight.prompt;\n const labelsPlaceholders = {\n top: labels.top,\n right: labels.right,\n bottom: labels.bottom,\n left: labels.left,\n };\n const panelItemType = {\n arrows:\n arrows.settings &&\n checkboxes(arrows.label, {\n left: arrows.left,\n right: arrows.right,\n up: arrows.up,\n down: arrows.down,\n }),\n titleEnabled: title.settings && toggle(title.label),\n padding: padding.settings && toggle(padding.label),\n labelsEnabled: labels.settings && toggle(labels.label),\n 'language.enabled': language.settings && toggle(language.label, true),\n language: language.settings && language.enabled && dropdown(languageChoices.label, languageChoices.options),\n dimensionsEnabled: graphDimensions.settings && toggle(graphDimensions.label),\n coordinatesOnHover: coordinatesOnHover.settings && toggle(coordinatesOnHover.label),\n };\n const panelProperties = {\n 'authoring.enabled': authoring.settings && toggle(authoring.label, true),\n teacherInstructionsEnabled: teacherInstructions.settings && toggle(teacherInstructions.label),\n studentInstructionsEnabled: studentInstructions.settings && toggle(studentInstructions.label),\n promptEnabled: prompt.settings && toggle(prompt.label),\n rationaleEnabled: rationale.settings && toggle(rationale.label),\n spellCheckEnabled: spellCheck.settings && toggle(spellCheck.label),\n scoringType: scoringType.settings && radio(scoringType.label, ['dichotomous', 'partial scoring']),\n rubricEnabled: withRubric?.settings && toggle(withRubric?.label),\n instruction: instruction.settings && textField(instruction.label),\n };\n return (\n <layout.ConfigLayout\n extraCSSRules={extraCSSRules}\n dimensions={contentDimensions}\n hideSettings={settingsPanelDisabled}\n settings={\n <Panel\n model={model}\n configuration={configuration}\n onChangeModel={onModelChanged}\n onChangeConfiguration={onConfigurationChanged}\n groups={{\n Settings: panelItemType,\n Properties: panelProperties,\n }}\n />\n }\n >\n <Description component=\"div\" variant=\"body1\">\n {instruction?.label || ''}\n </Description>\n {teacherInstructionsEnabled && (\n <StyledInputContainer label={teacherInstructions.label}>\n <EditableHtml\n markup={model.teacherInstructions || ''}\n onChange={this.onTeacherInstructionsChange}\n imageSupport={imageSupport}\n nonEmpty={false}\n spellCheck={spellCheckEnabled}\n maxImageWidth={(maxImageWidth && maxImageWidth.teacherInstructions) || defaultImageMaxWidth}\n maxImageHeight={(maxImageHeight && maxImageHeight.teacherInstructions) || defaultImageMaxHeight}\n uploadSoundSupport={uploadSoundSupport}\n languageCharactersProps={[{ language: 'spanish' }, { language: 'special' }]}\n mathMlOptions={mathMlOptions}\n />\n </StyledInputContainer>\n )}\n {promptEnabled && (\n <StyledInputContainer label={prompt.label}>\n <EditableHtml\n markup={model.prompt}\n onChange={this.onPromptChange}\n imageSupport={imageSupport}\n nonEmpty={false}\n spellCheck={spellCheckEnabled}\n disableUnderline\n maxImageWidth={defaultImageMaxWidth}\n maxImageHeight={defaultImageMaxHeight}\n uploadSoundSupport={uploadSoundSupport}\n languageCharactersProps={[{ language: 'spanish' }, { language: 'special' }]}\n mathMlOptions={mathMlOptions}\n />\n </StyledInputContainer>\n )}\n <GraphingConfig\n authoring={authoring}\n gridConfigurations={gridConfigurations}\n graphDimensions={graphDimensions}\n labelsPlaceholders={labelsPlaceholders}\n model={model}\n showLabels={labelsEnabled}\n dimensionsEnabled={dimensionsEnabled}\n showTitle={titleEnabled}\n titlePlaceholder={title.placeholder}\n onChange={this.props.onModelChanged}\n mathMlOptions={mathMlOptions}\n />\n <CorrectResponse\n errors={errors}\n model={model}\n onChange={this.props.onModelChanged}\n mathMlOptions={mathMlOptions}\n />\n {rationaleEnabled && (\n <StyledInputContainer label={rationale.label || 'Rationale'}>\n <EditableHtml\n markup={model.rationale || ''}\n onChange={this.onRationaleChange}\n imageSupport={imageSupport}\n spellCheck={spellCheckEnabled}\n maxImageWidth={(maxImageWidth && maxImageWidth.rationale) || defaultImageMaxWidth}\n maxImageHeight={(maxImageHeight && maxImageHeight.rationale) || defaultImageMaxHeight}\n uploadSoundSupport={uploadSoundSupport}\n languageCharactersProps={[{ language: 'spanish' }, { language: 'special' }]}\n mathMlOptions={mathMlOptions}\n />\n </StyledInputContainer>\n )}\n </layout.ConfigLayout>\n );\n }\n}\n\nexport default Configure;\n"],"mappings":"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","ignoreList":[]}
|