-
Notifications
You must be signed in to change notification settings - Fork 0
/
semantics.json
195 lines (195 loc) · 4.85 KB
/
semantics.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
[
{
"label": "Statement",
"name": "statement",
"type": "text",
"default": "Write the statement here",
"description": "The statement displayed above the code area.",
"optional": true,
"widget": "html",
"tags": [
"h2",
"h3",
"h4",
"h5",
"h6",
"p",
"br",
"strong",
"em"
]
},
{
"label": "Code",
"name": "code",
"type": "text",
"description": "The code that will be shown in the editor.",
"widget": "codeSnippet"
},
{
"name": "contentType",
"type": "group",
"label": "Content type",
"importance": "high",
"expanded": true,
"fields": [
{
"label": "Is an exercise ?",
"name": "isExercise",
"type": "boolean",
"description": "The activity is an exercise.",
"default": false
},
{
"name": "correction",
"type": "group",
"label": "Correction",
"importance": "medium",
"expanded": true,
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "isExercise",
"equals": true
}
]
},
"fields": [
{
"label": "Correction",
"name": "correctionText",
"type": "text",
"description": "The text answer that will be shown at vertification if the type is set on \"Exercise\".",
"widget": "textarea"
},
{
"name": "answers",
"type": "list",
"importance": "high",
"label": "Code answers",
"entity": "option",
"min": 1,
"defaultNum": 1,
"field": {
"name": "answer",
"type": "group",
"label": "Option",
"importance": "high",
"fields": [
{
"name": "text",
"type": "text",
"importance": "medium",
"widget": "codeSnippet",
"label": "Code"
},
{
"name": "bestAnswer",
"type": "boolean",
"label": "Best answer",
"importance": "low",
"optional": true
},
{
"name": "tipsAndFeedback",
"type": "group",
"label": "Tips and feedback",
"importance": "low",
"optional": true,
"fields": [
{
"name": "tip",
"type": "text",
"widget": "html",
"label": "Tip text",
"importance": "low",
"description": "Hint for the user that will appear under the correction.",
"optional": true,
"tags": [
"p",
"br",
"strong",
"em",
"a",
"code"
]
}
]
}
]
}
}
]
}
]
},
{
"name": "behaviour",
"type": "group",
"label": "Behavioural settings",
"importance": "low",
"description": "These options will let you control how the task behaves.",
"optional": true,
"fields": [
{
"label": "Make the code editable",
"name": "isEditable",
"type": "boolean",
"description": "If true, the code will be editable.",
"default": true
},
{
"name": "enableRetry",
"type": "boolean",
"label": "Enable \"Retry\" button",
"importance": "low",
"default": true
},
{
"name": "enableSolutionsButton",
"type": "boolean",
"label": "Enable \"Show Solution\" button",
"importance": "low",
"default": true
}
]
},
{
"label": "Display settings",
"name": "displaySettings",
"type": "group",
"importance": "low",
"fields": [
{
"label": "Code width",
"name": "codeWidth",
"type": "number",
"default": "100",
"description": "The CSS value of the code width.",
"decimals": 0
},
{
"label": "Code width unit",
"name": "codeWidthUnit",
"type": "select",
"description": "The CSS unit of value of the code width.",
"options": [
{
"value": "%",
"label": "%"
},
{
"value": "px",
"label": "px"
},
{
"value": "em",
"label": "em"
}
],
"default": "%"
}
]
}
]