@pie-element/graphing 4.8.1-beta.1 → 4.8.1-beta.4
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/configure/lib/configure.js +326 -0
- package/configure/lib/configure.js.map +1 -0
- package/configure/lib/correct-response.js +471 -0
- package/configure/lib/correct-response.js.map +1 -0
- package/configure/lib/defaults.js +364 -0
- package/configure/lib/defaults.js.map +1 -0
- package/configure/lib/graphing-config.js +379 -0
- package/configure/lib/graphing-config.js.map +1 -0
- package/configure/lib/index.js +151 -0
- package/configure/lib/index.js.map +1 -0
- package/configure/lib/utils.js +137 -0
- package/configure/lib/utils.js.map +1 -0
- package/configure/package.json +2 -2
- package/controller/lib/defaults.js +55 -0
- package/controller/lib/defaults.js.map +1 -0
- package/controller/lib/index.js +312 -0
- package/controller/lib/index.js.map +1 -0
- package/controller/lib/utils.js +282 -0
- package/controller/lib/utils.js.map +1 -0
- package/lib/index.js +87 -0
- package/lib/index.js.map +1 -0
- package/lib/main.js +165 -0
- package/lib/main.js.map +1 -0
- package/lib/utils.js +43 -0
- package/lib/utils.js.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _graphing = require("@pie-lib/graphing");
|
|
8
|
+
var _tools$allTools = _graphing.tools.allTools,
|
|
9
|
+
allTools = _tools$allTools === void 0 ? [] : _tools$allTools;
|
|
10
|
+
var _default = {
|
|
11
|
+
model: {
|
|
12
|
+
answers: {},
|
|
13
|
+
arrows: {
|
|
14
|
+
left: true,
|
|
15
|
+
right: true,
|
|
16
|
+
up: true,
|
|
17
|
+
down: true
|
|
18
|
+
},
|
|
19
|
+
backgroundMarks: [],
|
|
20
|
+
domain: {
|
|
21
|
+
min: -5,
|
|
22
|
+
max: 5,
|
|
23
|
+
step: 1,
|
|
24
|
+
labelStep: 1,
|
|
25
|
+
axisLabel: 'x'
|
|
26
|
+
},
|
|
27
|
+
graph: {
|
|
28
|
+
width: 500,
|
|
29
|
+
height: 500
|
|
30
|
+
},
|
|
31
|
+
includeAxes: true,
|
|
32
|
+
labels: {},
|
|
33
|
+
labelsEnabled: true,
|
|
34
|
+
padding: true,
|
|
35
|
+
prompt: '',
|
|
36
|
+
range: {
|
|
37
|
+
min: -5,
|
|
38
|
+
max: 5,
|
|
39
|
+
step: 1,
|
|
40
|
+
labelStep: 1,
|
|
41
|
+
axisLabel: 'y'
|
|
42
|
+
},
|
|
43
|
+
rationale: '',
|
|
44
|
+
standardGrid: false,
|
|
45
|
+
title: '',
|
|
46
|
+
titleEnabled: true,
|
|
47
|
+
toolbarTools: allTools,
|
|
48
|
+
coordinatesOnHover: false,
|
|
49
|
+
promptEnabled: true,
|
|
50
|
+
rationaleEnabled: true,
|
|
51
|
+
teacherInstructionsEnabled: true,
|
|
52
|
+
studentInstructionsEnabled: true
|
|
53
|
+
},
|
|
54
|
+
configuration: {
|
|
55
|
+
availableTools: allTools,
|
|
56
|
+
authoring: {
|
|
57
|
+
settings: false,
|
|
58
|
+
label: 'Customize Grid Setup',
|
|
59
|
+
enabled: true,
|
|
60
|
+
includeAxesEnabled: true,
|
|
61
|
+
standardGridEnabled: true,
|
|
62
|
+
min: {
|
|
63
|
+
label: 'Min Value',
|
|
64
|
+
enabled: true
|
|
65
|
+
},
|
|
66
|
+
max: {
|
|
67
|
+
label: 'Max Value',
|
|
68
|
+
enabled: true
|
|
69
|
+
},
|
|
70
|
+
axisLabel: {
|
|
71
|
+
label: 'Label',
|
|
72
|
+
enabled: true
|
|
73
|
+
},
|
|
74
|
+
step: {
|
|
75
|
+
label: 'Grid Interval',
|
|
76
|
+
enabled: true
|
|
77
|
+
},
|
|
78
|
+
labelStep: {
|
|
79
|
+
label: 'Label Interval',
|
|
80
|
+
enabled: true
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
arrows: {
|
|
84
|
+
settings: true,
|
|
85
|
+
label: 'Include Arrows',
|
|
86
|
+
left: {
|
|
87
|
+
label: 'left'
|
|
88
|
+
},
|
|
89
|
+
right: {
|
|
90
|
+
label: 'right'
|
|
91
|
+
},
|
|
92
|
+
up: {
|
|
93
|
+
label: 'up'
|
|
94
|
+
},
|
|
95
|
+
down: {
|
|
96
|
+
label: 'down'
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
gridConfigurations: [{
|
|
100
|
+
label: '4-quadrant coordinate grid, -10 to 10',
|
|
101
|
+
arrows: {
|
|
102
|
+
left: true,
|
|
103
|
+
right: true,
|
|
104
|
+
up: true,
|
|
105
|
+
down: true
|
|
106
|
+
},
|
|
107
|
+
domain: {
|
|
108
|
+
min: -10,
|
|
109
|
+
max: 10,
|
|
110
|
+
step: 1,
|
|
111
|
+
padding: 0,
|
|
112
|
+
labelStep: 1,
|
|
113
|
+
axisLabel: '<i>x</i>'
|
|
114
|
+
},
|
|
115
|
+
graph: {
|
|
116
|
+
width: 480,
|
|
117
|
+
height: 480
|
|
118
|
+
},
|
|
119
|
+
includeAxes: true,
|
|
120
|
+
labels: {
|
|
121
|
+
top: '',
|
|
122
|
+
right: '',
|
|
123
|
+
bottom: '',
|
|
124
|
+
left: ''
|
|
125
|
+
},
|
|
126
|
+
padding: true,
|
|
127
|
+
range: {
|
|
128
|
+
min: -10,
|
|
129
|
+
max: 10,
|
|
130
|
+
step: 1,
|
|
131
|
+
padding: 0,
|
|
132
|
+
labelStep: 1,
|
|
133
|
+
axisLabel: '<i>y</i>'
|
|
134
|
+
},
|
|
135
|
+
standardGrid: true,
|
|
136
|
+
title: ''
|
|
137
|
+
}, {
|
|
138
|
+
label: '0 to 10 on both axes',
|
|
139
|
+
arrows: {
|
|
140
|
+
left: false,
|
|
141
|
+
right: true,
|
|
142
|
+
up: true,
|
|
143
|
+
down: false
|
|
144
|
+
},
|
|
145
|
+
domain: {
|
|
146
|
+
min: 0,
|
|
147
|
+
max: 10,
|
|
148
|
+
step: 1,
|
|
149
|
+
padding: 0,
|
|
150
|
+
labelStep: 1,
|
|
151
|
+
axisLabel: '<i>x</i>'
|
|
152
|
+
},
|
|
153
|
+
graph: {
|
|
154
|
+
width: 480,
|
|
155
|
+
height: 480
|
|
156
|
+
},
|
|
157
|
+
includeAxes: true,
|
|
158
|
+
labels: {
|
|
159
|
+
top: '',
|
|
160
|
+
right: '',
|
|
161
|
+
bottom: '',
|
|
162
|
+
left: ''
|
|
163
|
+
},
|
|
164
|
+
padding: true,
|
|
165
|
+
range: {
|
|
166
|
+
min: 0,
|
|
167
|
+
max: 10,
|
|
168
|
+
step: 1,
|
|
169
|
+
padding: 0,
|
|
170
|
+
labelStep: 1,
|
|
171
|
+
axisLabel: '<i>y</i>'
|
|
172
|
+
},
|
|
173
|
+
standardGrid: true,
|
|
174
|
+
title: ''
|
|
175
|
+
}, {
|
|
176
|
+
label: '0 to 20 on both axes',
|
|
177
|
+
arrows: {
|
|
178
|
+
left: false,
|
|
179
|
+
right: true,
|
|
180
|
+
up: true,
|
|
181
|
+
down: false
|
|
182
|
+
},
|
|
183
|
+
domain: {
|
|
184
|
+
min: 0,
|
|
185
|
+
max: 20,
|
|
186
|
+
step: 1,
|
|
187
|
+
padding: 0,
|
|
188
|
+
labelStep: 1,
|
|
189
|
+
axisLabel: '<i>x</i>'
|
|
190
|
+
},
|
|
191
|
+
graph: {
|
|
192
|
+
width: 480,
|
|
193
|
+
height: 480
|
|
194
|
+
},
|
|
195
|
+
includeAxes: true,
|
|
196
|
+
labels: {
|
|
197
|
+
top: '',
|
|
198
|
+
right: '',
|
|
199
|
+
bottom: '',
|
|
200
|
+
left: ''
|
|
201
|
+
},
|
|
202
|
+
padding: true,
|
|
203
|
+
range: {
|
|
204
|
+
min: 0,
|
|
205
|
+
max: 20,
|
|
206
|
+
step: 1,
|
|
207
|
+
padding: 0,
|
|
208
|
+
labelStep: 1,
|
|
209
|
+
axisLabel: '<i>y</i>'
|
|
210
|
+
},
|
|
211
|
+
standardGrid: true,
|
|
212
|
+
title: ''
|
|
213
|
+
}, {
|
|
214
|
+
label: 'Sample Data Graph',
|
|
215
|
+
arrows: {
|
|
216
|
+
left: false,
|
|
217
|
+
right: true,
|
|
218
|
+
up: true,
|
|
219
|
+
down: false
|
|
220
|
+
},
|
|
221
|
+
domain: {
|
|
222
|
+
min: 0,
|
|
223
|
+
max: 30,
|
|
224
|
+
step: 1,
|
|
225
|
+
padding: 0,
|
|
226
|
+
labelStep: 2,
|
|
227
|
+
axisLabel: '<i>t</i>'
|
|
228
|
+
},
|
|
229
|
+
graph: {
|
|
230
|
+
width: 480,
|
|
231
|
+
height: 480
|
|
232
|
+
},
|
|
233
|
+
includeAxes: true,
|
|
234
|
+
labels: {
|
|
235
|
+
top: '',
|
|
236
|
+
right: '',
|
|
237
|
+
bottom: 'Time (seconds)',
|
|
238
|
+
left: 'Distance (meters)'
|
|
239
|
+
},
|
|
240
|
+
padding: true,
|
|
241
|
+
range: {
|
|
242
|
+
min: 0,
|
|
243
|
+
max: 80,
|
|
244
|
+
step: 5,
|
|
245
|
+
padding: 0,
|
|
246
|
+
labelStep: 10,
|
|
247
|
+
axisLabel: '<i>d</i>'
|
|
248
|
+
},
|
|
249
|
+
standardGrid: false,
|
|
250
|
+
title: 'Distance as a function of time'
|
|
251
|
+
}, {
|
|
252
|
+
label: 'No Visible Axes',
|
|
253
|
+
arrows: {
|
|
254
|
+
left: false,
|
|
255
|
+
right: false,
|
|
256
|
+
up: false,
|
|
257
|
+
down: false
|
|
258
|
+
},
|
|
259
|
+
domain: {
|
|
260
|
+
min: 1,
|
|
261
|
+
max: 21,
|
|
262
|
+
step: 1,
|
|
263
|
+
padding: 0,
|
|
264
|
+
labelStep: 0,
|
|
265
|
+
axisLabel: ''
|
|
266
|
+
},
|
|
267
|
+
graph: {
|
|
268
|
+
width: 480,
|
|
269
|
+
height: 480
|
|
270
|
+
},
|
|
271
|
+
includeAxes: false,
|
|
272
|
+
labels: {
|
|
273
|
+
top: '',
|
|
274
|
+
right: '',
|
|
275
|
+
bottom: '',
|
|
276
|
+
left: ''
|
|
277
|
+
},
|
|
278
|
+
padding: true,
|
|
279
|
+
range: {
|
|
280
|
+
min: 1,
|
|
281
|
+
max: 21,
|
|
282
|
+
step: 1,
|
|
283
|
+
padding: 0,
|
|
284
|
+
labelStep: 0,
|
|
285
|
+
axisLabel: ''
|
|
286
|
+
},
|
|
287
|
+
standardGrid: false,
|
|
288
|
+
title: ''
|
|
289
|
+
}],
|
|
290
|
+
graphDimensions: {
|
|
291
|
+
settings: false,
|
|
292
|
+
label: 'Graph Dimensions',
|
|
293
|
+
enabled: true,
|
|
294
|
+
min: 150,
|
|
295
|
+
max: 800,
|
|
296
|
+
step: 20
|
|
297
|
+
},
|
|
298
|
+
padding: {
|
|
299
|
+
settings: false,
|
|
300
|
+
label: 'Padding'
|
|
301
|
+
},
|
|
302
|
+
labels: {
|
|
303
|
+
settings: true,
|
|
304
|
+
label: 'Graph Labels',
|
|
305
|
+
enabled: true,
|
|
306
|
+
top: 'Click here to add a top label',
|
|
307
|
+
right: 'Click here to add a right label',
|
|
308
|
+
bottom: 'Click here to add a bottom label',
|
|
309
|
+
left: 'Click here to add a left label'
|
|
310
|
+
},
|
|
311
|
+
prompt: {
|
|
312
|
+
settings: true,
|
|
313
|
+
label: 'Item Stem'
|
|
314
|
+
},
|
|
315
|
+
rationale: {
|
|
316
|
+
settings: true,
|
|
317
|
+
label: 'Rationale'
|
|
318
|
+
},
|
|
319
|
+
scoringType: {
|
|
320
|
+
settings: false,
|
|
321
|
+
label: 'Scoring Type'
|
|
322
|
+
},
|
|
323
|
+
studentInstructions: {
|
|
324
|
+
settings: false,
|
|
325
|
+
label: 'Student Instructions'
|
|
326
|
+
},
|
|
327
|
+
teacherInstructions: {
|
|
328
|
+
settings: true,
|
|
329
|
+
label: 'Teacher Instructions'
|
|
330
|
+
},
|
|
331
|
+
title: {
|
|
332
|
+
settings: true,
|
|
333
|
+
label: 'Graph Title',
|
|
334
|
+
enabled: true,
|
|
335
|
+
placeholder: 'Click here to add a title for this graph'
|
|
336
|
+
},
|
|
337
|
+
settingsPanelDisabled: false,
|
|
338
|
+
spellCheck: {
|
|
339
|
+
label: 'Spellcheck',
|
|
340
|
+
settings: false,
|
|
341
|
+
enabled: true
|
|
342
|
+
},
|
|
343
|
+
coordinatesOnHover: {
|
|
344
|
+
settings: true,
|
|
345
|
+
label: 'Coordinates on Hover'
|
|
346
|
+
},
|
|
347
|
+
maxImageWidth: {
|
|
348
|
+
teacherInstructions: 300,
|
|
349
|
+
prompt: 300,
|
|
350
|
+
rationale: 300
|
|
351
|
+
},
|
|
352
|
+
maxImageHeight: {
|
|
353
|
+
teacherInstructions: 300,
|
|
354
|
+
prompt: 300,
|
|
355
|
+
rationale: 300
|
|
356
|
+
},
|
|
357
|
+
withRubric: {
|
|
358
|
+
settings: false,
|
|
359
|
+
label: 'Add Rubric'
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
};
|
|
363
|
+
exports["default"] = _default;
|
|
364
|
+
//# sourceMappingURL=defaults.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"defaults.js","names":["_graphing","require","_tools$allTools","tools","allTools","_default","model","answers","arrows","left","right","up","down","backgroundMarks","domain","min","max","step","labelStep","axisLabel","graph","width","height","includeAxes","labels","labelsEnabled","padding","prompt","range","rationale","standardGrid","title","titleEnabled","toolbarTools","coordinatesOnHover","promptEnabled","rationaleEnabled","teacherInstructionsEnabled","studentInstructionsEnabled","configuration","availableTools","authoring","settings","label","enabled","includeAxesEnabled","standardGridEnabled","gridConfigurations","top","bottom","graphDimensions","scoringType","studentInstructions","teacherInstructions","placeholder","settingsPanelDisabled","spellCheck","maxImageWidth","maxImageHeight","withRubric","exports"],"sources":["../src/defaults.js"],"sourcesContent":["import { tools } from '@pie-lib/graphing';\n\nconst { allTools = [] } = tools;\n\nexport default {\n model: {\n answers: {},\n arrows: {\n left: true,\n right: true,\n up: true,\n down: true,\n },\n backgroundMarks: [],\n domain: {\n min: -5,\n max: 5,\n step: 1,\n labelStep: 1,\n axisLabel: 'x',\n },\n graph: {\n width: 500,\n height: 500,\n },\n includeAxes: true,\n labels: {},\n labelsEnabled: true,\n padding: true,\n prompt: '',\n range: {\n min: -5,\n max: 5,\n step: 1,\n labelStep: 1,\n axisLabel: 'y',\n },\n rationale: '',\n standardGrid: false,\n title: '',\n titleEnabled: true,\n toolbarTools: allTools,\n coordinatesOnHover: false,\n promptEnabled: true,\n rationaleEnabled: true,\n teacherInstructionsEnabled: true,\n studentInstructionsEnabled: true,\n },\n configuration: {\n availableTools: allTools,\n authoring: {\n settings: false,\n label: 'Customize Grid Setup',\n enabled: true,\n includeAxesEnabled: true,\n standardGridEnabled: true,\n min: {\n label: 'Min Value',\n enabled: true,\n },\n max: {\n label: 'Max Value',\n enabled: true,\n },\n axisLabel: {\n label: 'Label',\n enabled: true,\n },\n step: {\n label: 'Grid Interval',\n enabled: true,\n },\n labelStep: {\n label: 'Label Interval',\n enabled: true,\n },\n },\n arrows: {\n settings: true,\n label: 'Include Arrows',\n left: {\n label: 'left',\n },\n right: {\n label: 'right',\n },\n up: {\n label: 'up',\n },\n down: {\n label: 'down',\n },\n },\n gridConfigurations: [\n {\n label: '4-quadrant coordinate grid, -10 to 10',\n arrows: {\n left: true,\n right: true,\n up: true,\n down: true,\n },\n domain: {\n min: -10,\n max: 10,\n step: 1,\n padding: 0,\n labelStep: 1,\n axisLabel: '<i>x</i>',\n },\n graph: {\n width: 480,\n height: 480,\n },\n includeAxes: true,\n labels: {\n top: '',\n right: '',\n bottom: '',\n left: '',\n },\n padding: true,\n range: {\n min: -10,\n max: 10,\n step: 1,\n padding: 0,\n labelStep: 1,\n axisLabel: '<i>y</i>',\n },\n standardGrid: true,\n title: '',\n },\n {\n label: '0 to 10 on both axes',\n arrows: {\n left: false,\n right: true,\n up: true,\n down: false,\n },\n domain: {\n min: 0,\n max: 10,\n step: 1,\n padding: 0,\n labelStep: 1,\n axisLabel: '<i>x</i>',\n },\n graph: {\n width: 480,\n height: 480,\n },\n includeAxes: true,\n labels: {\n top: '',\n right: '',\n bottom: '',\n left: '',\n },\n padding: true,\n range: {\n min: 0,\n max: 10,\n step: 1,\n padding: 0,\n labelStep: 1,\n axisLabel: '<i>y</i>',\n },\n standardGrid: true,\n title: '',\n },\n {\n label: '0 to 20 on both axes',\n arrows: {\n left: false,\n right: true,\n up: true,\n down: false,\n },\n domain: {\n min: 0,\n max: 20,\n step: 1,\n padding: 0,\n labelStep: 1,\n axisLabel: '<i>x</i>',\n },\n graph: {\n width: 480,\n height: 480,\n },\n includeAxes: true,\n labels: {\n top: '',\n right: '',\n bottom: '',\n left: '',\n },\n padding: true,\n range: {\n min: 0,\n max: 20,\n step: 1,\n padding: 0,\n labelStep: 1,\n axisLabel: '<i>y</i>',\n },\n standardGrid: true,\n title: '',\n },\n {\n label: 'Sample Data Graph',\n arrows: {\n left: false,\n right: true,\n up: true,\n down: false,\n },\n domain: {\n min: 0,\n max: 30,\n step: 1,\n padding: 0,\n labelStep: 2,\n axisLabel: '<i>t</i>',\n },\n graph: {\n width: 480,\n height: 480,\n },\n includeAxes: true,\n labels: {\n top: '',\n right: '',\n bottom: 'Time (seconds)',\n left: 'Distance (meters)',\n },\n padding: true,\n range: {\n min: 0,\n max: 80,\n step: 5,\n padding: 0,\n labelStep: 10,\n axisLabel: '<i>d</i>',\n },\n standardGrid: false,\n title: 'Distance as a function of time',\n },\n {\n label: 'No Visible Axes',\n arrows: {\n left: false,\n right: false,\n up: false,\n down: false,\n },\n domain: {\n min: 1,\n max: 21,\n step: 1,\n padding: 0,\n labelStep: 0,\n axisLabel: '',\n },\n graph: {\n width: 480,\n height: 480,\n },\n includeAxes: false,\n labels: {\n top: '',\n right: '',\n bottom: '',\n left: '',\n },\n padding: true,\n range: {\n min: 1,\n max: 21,\n step: 1,\n padding: 0,\n labelStep: 0,\n axisLabel: '',\n },\n standardGrid: false,\n title: '',\n },\n ],\n graphDimensions: {\n settings: false,\n label: 'Graph Dimensions',\n enabled: true,\n min: 150,\n max: 800,\n step: 20,\n },\n padding: {\n settings: false,\n label: 'Padding',\n },\n labels: {\n settings: true,\n label: 'Graph Labels',\n enabled: true,\n top: 'Click here to add a top label',\n right: 'Click here to add a right label',\n bottom: 'Click here to add a bottom label',\n left: 'Click here to add a left label',\n },\n prompt: {\n settings: true,\n label: 'Item Stem',\n },\n rationale: {\n settings: true,\n label: 'Rationale',\n },\n scoringType: {\n settings: false,\n label: 'Scoring Type',\n },\n studentInstructions: {\n settings: false,\n label: 'Student Instructions',\n },\n teacherInstructions: {\n settings: true,\n label: 'Teacher Instructions',\n },\n title: {\n settings: true,\n label: 'Graph Title',\n enabled: true,\n placeholder: 'Click here to add a title for this graph',\n },\n settingsPanelDisabled: false,\n spellCheck: {\n label: 'Spellcheck',\n settings: false,\n enabled: true,\n },\n coordinatesOnHover: {\n settings: true,\n label: 'Coordinates on Hover',\n },\n maxImageWidth: {\n teacherInstructions: 300,\n prompt: 300,\n rationale: 300,\n },\n maxImageHeight: {\n teacherInstructions: 300,\n prompt: 300,\n rationale: 300,\n },\n withRubric: {\n settings: false,\n label: 'Add Rubric',\n },\n },\n};\n"],"mappings":"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"}
|