@webwriter/quiz 1.0.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/LICENSE +7 -0
- package/custom.d.ts +176 -0
- package/dist/widgets/webwriter-choice-item.css +444 -0
- package/dist/widgets/webwriter-choice-item.js +288 -0
- package/dist/widgets/webwriter-choice.css +444 -0
- package/dist/widgets/webwriter-choice.js +327 -0
- package/dist/widgets/webwriter-cloze-gap.css +444 -0
- package/dist/widgets/webwriter-cloze-gap.js +722 -0
- package/dist/widgets/webwriter-cloze.css +444 -0
- package/dist/widgets/webwriter-cloze.js +177 -0
- package/dist/widgets/webwriter-mark.css +444 -0
- package/dist/widgets/webwriter-mark.js +410 -0
- package/dist/widgets/webwriter-order-item.css +444 -0
- package/dist/widgets/webwriter-order-item.js +464 -0
- package/dist/widgets/webwriter-order.css +444 -0
- package/dist/widgets/webwriter-order.js +560 -0
- package/dist/widgets/webwriter-pairing-item.css +444 -0
- package/dist/widgets/webwriter-pairing-item.js +203 -0
- package/dist/widgets/webwriter-pairing.css +444 -0
- package/dist/widgets/webwriter-pairing.js +224 -0
- package/dist/widgets/webwriter-quiz.css +444 -0
- package/dist/widgets/webwriter-quiz.js +323 -0
- package/dist/widgets/webwriter-speech.css +444 -0
- package/dist/widgets/webwriter-speech.js +320 -0
- package/dist/widgets/webwriter-task-explainer.css +444 -0
- package/dist/widgets/webwriter-task-explainer.js +90 -0
- package/dist/widgets/webwriter-task-hint.css +444 -0
- package/dist/widgets/webwriter-task-hint.js +67 -0
- package/dist/widgets/webwriter-task-prompt.css +444 -0
- package/dist/widgets/webwriter-task-prompt.js +68 -0
- package/dist/widgets/webwriter-task.css +444 -0
- package/dist/widgets/webwriter-task.js +546 -0
- package/dist/widgets/webwriter-text.css +444 -0
- package/dist/widgets/webwriter-text.js +174 -0
- package/package.json +199 -0
- package/src/lib/combobox.ts +456 -0
- package/src/lib/highlighter-fill.svg +6 -0
- package/src/snippets/choice.html +8 -0
- package/src/snippets/cloze.html +4 -0
- package/src/snippets/mark.html +4 -0
- package/src/snippets/order.html +8 -0
- package/src/snippets/pairing.html +10 -0
- package/src/snippets/speech.html +4 -0
- package/src/snippets/text.html +4 -0
- package/src/snippets/wordsearch.html +4 -0
- package/src/widgets/webwriter-choice-item.ts +251 -0
- package/src/widgets/webwriter-choice.ts +310 -0
- package/src/widgets/webwriter-cloze-gap.ts +217 -0
- package/src/widgets/webwriter-cloze.ts +136 -0
- package/src/widgets/webwriter-mark.ts +435 -0
- package/src/widgets/webwriter-order-item.ts +445 -0
- package/src/widgets/webwriter-order.ts +273 -0
- package/src/widgets/webwriter-pairing-item.ts +156 -0
- package/src/widgets/webwriter-pairing.ts +188 -0
- package/src/widgets/webwriter-quiz.ts +281 -0
- package/src/widgets/webwriter-speech.ts +268 -0
- package/src/widgets/webwriter-task-explainer.ts +38 -0
- package/src/widgets/webwriter-task-hint.ts +17 -0
- package/src/widgets/webwriter-task-prompt.ts +18 -0
- package/src/widgets/webwriter-task.ts +544 -0
- package/src/widgets/webwriter-text.ts +131 -0
- package/tsconfig.json +7 -0
|
@@ -0,0 +1,445 @@
|
|
|
1
|
+
import {css, html, PropertyValues} from "lit"
|
|
2
|
+
import {styleMap} from "lit/directives/style-map.js"
|
|
3
|
+
import {LitElementWw} from "@webwriter/lit"
|
|
4
|
+
import {customElement, property, query} from "lit/decorators.js"
|
|
5
|
+
|
|
6
|
+
import SlIconButton from "@shoelace-style/shoelace/dist/components/icon-button/icon-button.component.js"
|
|
7
|
+
|
|
8
|
+
import IconArrowsMove from "bootstrap-icons/icons/arrows-move.svg"
|
|
9
|
+
import IconArrowUp from "bootstrap-icons/icons/arrow-up.svg"
|
|
10
|
+
import IconArrowDown from "bootstrap-icons/icons/arrow-down.svg"
|
|
11
|
+
import IconTrash from "bootstrap-icons/icons/trash.svg"
|
|
12
|
+
import "@shoelace-style/shoelace/dist/themes/light.css"
|
|
13
|
+
import { keyed } from "lit/directives/keyed.js"
|
|
14
|
+
import { ifDefined } from "lit/directives/if-defined.js"
|
|
15
|
+
|
|
16
|
+
import IconX from "bootstrap-icons/icons/x.svg"
|
|
17
|
+
import IconCheck from "bootstrap-icons/icons/check.svg"
|
|
18
|
+
import { shuffle } from "./webwriter-choice"
|
|
19
|
+
|
|
20
|
+
declare global {interface HTMLElementTagNameMap {
|
|
21
|
+
"webwriter-order-item": WebwriterOrderItem;
|
|
22
|
+
}}
|
|
23
|
+
|
|
24
|
+
function exchangeElements<A extends Node, B extends Node>(a: A, b: B) {
|
|
25
|
+
var clonedA = a.cloneNode(true) as A
|
|
26
|
+
var clonedB = b.cloneNode(true) as B
|
|
27
|
+
b.parentNode.replaceChild(clonedA, b)
|
|
28
|
+
a.parentNode.replaceChild(clonedB, a)
|
|
29
|
+
return clonedA
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@customElement("webwriter-order-item")
|
|
33
|
+
export class WebwriterOrderItem extends LitElementWw {
|
|
34
|
+
|
|
35
|
+
static localization = {}
|
|
36
|
+
|
|
37
|
+
static scopedElements = {
|
|
38
|
+
"sl-icon-button": SlIconButton
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@property({attribute: true, reflect: true, converter: {toAttribute: (v: boolean) => v? "true": "false", fromAttribute: (attr: string) => attr === "true"}})
|
|
42
|
+
accessor draggable = true
|
|
43
|
+
|
|
44
|
+
msg = (str: string) => this.lang in WebwriterOrderItem.localization? WebwriterOrderItem.localization[this.lang][str] ?? str: str
|
|
45
|
+
|
|
46
|
+
get elementIndex() {
|
|
47
|
+
return Array.from(this.parentElement?.children ?? []).indexOf(this)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
getSibling(i: number) {
|
|
51
|
+
return this.parentElement.children.item(i)
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
emitClearDropPreview = () => {
|
|
55
|
+
this.dispatchEvent(new CustomEvent("webwriter-clear-drop-preview", {bubbles: true}))
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
connectedCallback(): void {
|
|
59
|
+
super.connectedCallback()
|
|
60
|
+
this.dropPreview = undefined
|
|
61
|
+
this.addEventListener("dragstart", e => {
|
|
62
|
+
this.dropPreview = undefined
|
|
63
|
+
e.dataTransfer.setData("text/html", this.outerHTML)
|
|
64
|
+
e.dataTransfer.setData("text/plain", this.id)
|
|
65
|
+
// setTimeout(() => this.baseEl.style.visibility = "hidden", 0)
|
|
66
|
+
e.stopPropagation()
|
|
67
|
+
})
|
|
68
|
+
this.addEventListener("drop", e => {
|
|
69
|
+
e.stopPropagation()
|
|
70
|
+
const id = e.dataTransfer.getData("text/plain")
|
|
71
|
+
const inTopHalf = e.offsetY < this.offsetHeight / 2
|
|
72
|
+
const inLeftHalf = e.offsetX < this.offsetWidth / 2
|
|
73
|
+
const el = document.querySelector(`webwriter-order-item#${id}`)
|
|
74
|
+
const offset = (this.layout === "tiles"? inLeftHalf: inTopHalf)? 0: 1
|
|
75
|
+
el.dispatchEvent(new CustomEvent("ww-moveto", {bubbles: true, detail: {i: this.elementIndex + offset}}))
|
|
76
|
+
// this.insertAdjacentHTML(inTopHalf? "beforebegin": "afterend", html)
|
|
77
|
+
}, {passive: true})
|
|
78
|
+
this.addEventListener("dragover", e => {
|
|
79
|
+
const inTopHalf = e.offsetY < this.offsetHeight / 2
|
|
80
|
+
const inLeftHalf = e.offsetX < this.offsetWidth / 2
|
|
81
|
+
if(this.layout === "tiles") {
|
|
82
|
+
this.dropPreview = inLeftHalf? "left": "right"
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
this.dropPreview = inTopHalf? "top": "bottom"
|
|
86
|
+
}
|
|
87
|
+
e.preventDefault()
|
|
88
|
+
e.stopImmediatePropagation()
|
|
89
|
+
})
|
|
90
|
+
this.addEventListener("dragleave", () => this.emitClearDropPreview(), {passive: true})
|
|
91
|
+
document.addEventListener("dragend", (e) => {
|
|
92
|
+
// (e.target as HTMLElement)?.remove()
|
|
93
|
+
this.emitClearDropPreview()
|
|
94
|
+
}, {passive: true})
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
@property({type: String, attribute: true, reflect: true})
|
|
98
|
+
accessor dropPreview: "top" | "bottom" | "left" | "right" | undefined = undefined
|
|
99
|
+
|
|
100
|
+
@property({type: String, attribute: true, reflect: true})
|
|
101
|
+
accessor layout: "list" | "tiles" = "list"
|
|
102
|
+
|
|
103
|
+
@property({type: Number, attribute: false})
|
|
104
|
+
accessor validOrder: number | undefined
|
|
105
|
+
|
|
106
|
+
@property({type: Boolean, attribute: true, reflect: true})
|
|
107
|
+
accessor hideOrderButtons = false
|
|
108
|
+
|
|
109
|
+
static styles = css`
|
|
110
|
+
|
|
111
|
+
:host {
|
|
112
|
+
position: relative;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
:host(:is([contenteditable=true], [contenteditable=""])) .user-only {
|
|
116
|
+
display: none;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
::marker {
|
|
120
|
+
font-weight: bold;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
:host(:is([contenteditable=true], [contenteditable=""])) ::marker {
|
|
124
|
+
color: var(--sl-color-success-800);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
ol {
|
|
128
|
+
padding-left: 0;
|
|
129
|
+
margin: 0;
|
|
130
|
+
width: 100%;
|
|
131
|
+
position: relative;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.solution {
|
|
135
|
+
display: flex;
|
|
136
|
+
align-items: center;
|
|
137
|
+
justify-content: center;
|
|
138
|
+
position: absolute;
|
|
139
|
+
top: -7px;
|
|
140
|
+
left: -13px;
|
|
141
|
+
border: 2px solid var(--sl-color-gray-500);
|
|
142
|
+
border-radius: 100%;
|
|
143
|
+
width: 15px;
|
|
144
|
+
height: 15px;
|
|
145
|
+
font-size: 10px;
|
|
146
|
+
z-index: 1;
|
|
147
|
+
color: white;
|
|
148
|
+
font-weight: bold;
|
|
149
|
+
|
|
150
|
+
&[data-valid] {
|
|
151
|
+
background: var(--sl-color-success-600);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
&:not([data-valid]) {
|
|
155
|
+
background: var(--sl-color-danger-600);
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
:host([layout=tiles]) {
|
|
161
|
+
border: 2px solid var(--sl-color-gray-500);
|
|
162
|
+
border-radius: 5px;
|
|
163
|
+
aspect-ratio: 1;
|
|
164
|
+
min-width: 125px;
|
|
165
|
+
width: 125px;
|
|
166
|
+
max-width: 350px;
|
|
167
|
+
min-height: 125px;
|
|
168
|
+
height: 125px;
|
|
169
|
+
max-height: 350px;
|
|
170
|
+
|
|
171
|
+
& .solution {
|
|
172
|
+
left: unset;
|
|
173
|
+
top: -10px;
|
|
174
|
+
right: -10px;
|
|
175
|
+
width: 20px;
|
|
176
|
+
height: 20px;
|
|
177
|
+
font-size: 15px;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
& ol[part=base] {
|
|
181
|
+
padding-left: 0;
|
|
182
|
+
margin: 0;
|
|
183
|
+
aspect-ratio: 1;
|
|
184
|
+
min-width: 125px;
|
|
185
|
+
width: 125px;
|
|
186
|
+
max-width: 350px;
|
|
187
|
+
min-height: 125px;
|
|
188
|
+
height: 125px;
|
|
189
|
+
max-height: 350px;
|
|
190
|
+
overflow-y: auto;
|
|
191
|
+
scrollbar-width: thin;
|
|
192
|
+
resize: both;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
& ::slotted(:is(picture, audio, video, img, iframe)) {
|
|
196
|
+
height: 100%;
|
|
197
|
+
width: 100%;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
& ::slotted(:not(:is(picture, audio, video, img, iframe))) {
|
|
201
|
+
margin: 5px !important;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
:host(:not([layout=tiles])) {
|
|
206
|
+
|
|
207
|
+
width: 100% !important;
|
|
208
|
+
height: unset !important;
|
|
209
|
+
|
|
210
|
+
& ol[part=base] {
|
|
211
|
+
width: 100% !important;
|
|
212
|
+
height: auto !important;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
li {
|
|
217
|
+
list-style-type: inherit;
|
|
218
|
+
list-style-position: inside;
|
|
219
|
+
flex-direction: row;
|
|
220
|
+
align-items: center;
|
|
221
|
+
font-size: var(--sl-input-font-size-medium);
|
|
222
|
+
cursor: move;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
:host([droppreview])::before {
|
|
226
|
+
content: "";
|
|
227
|
+
position: absolute;
|
|
228
|
+
background: var(--sl-color-primary-600);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
:host([droppreview=top])::before {
|
|
232
|
+
height: 2px;
|
|
233
|
+
width: 100%;
|
|
234
|
+
top: -2px;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
:host([droppreview=bottom])::before {
|
|
238
|
+
height: 2px;
|
|
239
|
+
width: 100%;
|
|
240
|
+
bottom: -2px;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
:host([droppreview=left])::before {
|
|
244
|
+
left: -17px;
|
|
245
|
+
height: 100%;
|
|
246
|
+
width: 15px;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
:host([droppreview=right])::before {
|
|
250
|
+
right: -17px;
|
|
251
|
+
height: 100%;
|
|
252
|
+
width: 15px;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
slot {
|
|
256
|
+
display: inline-block;
|
|
257
|
+
width: calc(100% - var(--offset));
|
|
258
|
+
cursor: text;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
#order-buttons {
|
|
262
|
+
position: absolute;
|
|
263
|
+
right: 0;
|
|
264
|
+
top: 0;
|
|
265
|
+
|
|
266
|
+
& .order-button::part(base) {
|
|
267
|
+
padding: 0;
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
:host([hideorderbuttons]) #order-buttons {
|
|
272
|
+
display: none;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
#handle {
|
|
276
|
+
box-sizing: border-box;
|
|
277
|
+
border-radius: 2px;
|
|
278
|
+
position: absolute;
|
|
279
|
+
left: 0px;
|
|
280
|
+
bottom: 0px;
|
|
281
|
+
width: 20px;
|
|
282
|
+
height: 25px;
|
|
283
|
+
display: inline-block;
|
|
284
|
+
overflow: hidden;
|
|
285
|
+
line-height: 5px;
|
|
286
|
+
padding: 1.5px 1px;
|
|
287
|
+
padding-bottom: 0;
|
|
288
|
+
cursor: move;
|
|
289
|
+
vertical-align: middle;
|
|
290
|
+
font-size: 12px;
|
|
291
|
+
font-family: sans-serif;
|
|
292
|
+
letter-spacing: 2px;
|
|
293
|
+
color: #cccccc;
|
|
294
|
+
text-shadow: 1px 0 1px black;
|
|
295
|
+
font-weight: 600;
|
|
296
|
+
opacity: 0.95;
|
|
297
|
+
transform: rotate(135deg);
|
|
298
|
+
}
|
|
299
|
+
#handle::after {
|
|
300
|
+
content: '.. .. ..';
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
:host(:not([layout=tiles])) :is(#handle, #count) {
|
|
304
|
+
display: none;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
:host(:not([layout=list])) :is(#up, #down) {
|
|
308
|
+
display: none;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
:host([layout=tiles]) #main-li {
|
|
312
|
+
display: contents;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
:host([layout=tiles]) slot {
|
|
316
|
+
width: 100%;
|
|
317
|
+
box-sizing: border-box;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
#count {
|
|
322
|
+
display: flex;
|
|
323
|
+
justify-content: center;
|
|
324
|
+
align-items: center;
|
|
325
|
+
display: inline-block;
|
|
326
|
+
width: 3ch;
|
|
327
|
+
position: absolute;
|
|
328
|
+
bottom: -14px;
|
|
329
|
+
left: -14px;
|
|
330
|
+
z-index: 10;
|
|
331
|
+
& li {
|
|
332
|
+
display: list-item;
|
|
333
|
+
width: 4ch;
|
|
334
|
+
height: 4ch;
|
|
335
|
+
font-size: 12px;
|
|
336
|
+
font-weight: bold;
|
|
337
|
+
border-radius: 100%;
|
|
338
|
+
border: 2px solid var(--sl-color-gray-600);
|
|
339
|
+
color: var(--sl-color-gray-600);
|
|
340
|
+
box-sizing: border-box;
|
|
341
|
+
background: white;
|
|
342
|
+
padding-left: 7px;
|
|
343
|
+
padding-top: 4px;
|
|
344
|
+
overflow: hidden;
|
|
345
|
+
|
|
346
|
+
&[data-two-digit] {
|
|
347
|
+
padding-left: 4px;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
}
|
|
352
|
+
`
|
|
353
|
+
|
|
354
|
+
handleClick = (e: PointerEvent, up=false) => {
|
|
355
|
+
if((e.target as HTMLElement).id === "up") {
|
|
356
|
+
this.dispatchEvent(new CustomEvent("ww-moveup", {bubbles: true}))
|
|
357
|
+
}
|
|
358
|
+
else {
|
|
359
|
+
this.dispatchEvent(new CustomEvent("ww-movedown", {bubbles: true}))
|
|
360
|
+
}
|
|
361
|
+
e.stopPropagation()
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
@query("[part=base]")
|
|
365
|
+
accessor baseEl: HTMLElement
|
|
366
|
+
|
|
367
|
+
@query("#content")
|
|
368
|
+
accessor contentSlotEl: HTMLSlotElement
|
|
369
|
+
|
|
370
|
+
observer: MutationObserver
|
|
371
|
+
|
|
372
|
+
protected async updated(_changedProperties: PropertyValues) {
|
|
373
|
+
if(_changedProperties.has("layout") && this.layout === "list") {
|
|
374
|
+
console.log("switched to list")
|
|
375
|
+
this.syncSize(true)
|
|
376
|
+
this.observer?.disconnect()
|
|
377
|
+
this.requestUpdate()
|
|
378
|
+
}
|
|
379
|
+
else if(_changedProperties.has("layout") && this.layout === "tiles") {
|
|
380
|
+
this.syncSize()
|
|
381
|
+
if(!this.observer) {
|
|
382
|
+
this.observer = new MutationObserver(() => this.syncSize())
|
|
383
|
+
this.observer.observe(this.baseEl, {attributeFilter: ["style"], attributes: true})
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
protected firstUpdated(_changedProperties: PropertyValues): void {
|
|
389
|
+
this.requestUpdate()
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
syncSize(clear=false) {
|
|
393
|
+
if(this.baseEl && !clear) {
|
|
394
|
+
this.style.width = this.baseEl.style.width
|
|
395
|
+
this.style.height = this.baseEl.style.height
|
|
396
|
+
}
|
|
397
|
+
else if(this.baseEl && clear) {
|
|
398
|
+
this.style.width = this.baseEl.style.width = null
|
|
399
|
+
this.style.height = this.baseEl.style.height = null
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
disconnectedCallback(): void {
|
|
404
|
+
super.disconnectedCallback()
|
|
405
|
+
this.observer?.disconnect()
|
|
406
|
+
this.observer = undefined
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
get nextElementInOrder() {
|
|
410
|
+
return Array.from(this?.parentElement?.children ?? []).find((el: HTMLElement) => {
|
|
411
|
+
const elOrder = parseInt(getComputedStyle(el).order)
|
|
412
|
+
return elOrder === this.elementIndex + 1
|
|
413
|
+
})
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
get prevElementInOrder() {
|
|
417
|
+
return Array.from(this?.parentElement?.children ?? []).find((el: HTMLElement) => {
|
|
418
|
+
const elOrder = parseInt(getComputedStyle(el).order)
|
|
419
|
+
return elOrder === this.elementIndex - 1
|
|
420
|
+
})
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
get inCorrectPosition() {
|
|
424
|
+
return this.elementIndex === this.validOrder
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
render() {
|
|
428
|
+
const solution = this.validOrder !== undefined? html`<span class="solution" ?data-valid=${this.elementIndex === this.validOrder}>${this.validOrder + 1}</span>`: null
|
|
429
|
+
return html`<ol part="base" start=${this.elementIndex + 1}>
|
|
430
|
+
${this.layout === "list"? solution: null}
|
|
431
|
+
<li id="main-li">
|
|
432
|
+
<slot id="content" style=${styleMap({"--ww-placeholder": `"${this.msg("Option")}"`, "--offset": `${this.contentSlotEl?.offsetLeft + 1}px`})}></slot>
|
|
433
|
+
</li>
|
|
434
|
+
<div id="order-buttons" part="order-buttons" draggable="false">
|
|
435
|
+
<sl-icon-button ?disabled=${!this.previousElementSibling} id="up" class="order-button user-only" src=${IconArrowUp} @click=${this.handleClick} @mouseup=${() => this.draggable = true}></sl-icon-button>
|
|
436
|
+
<sl-icon-button ?disabled=${!this.nextElementSibling} id="down" class="order-button user-only" src=${IconArrowDown} @click=${this.handleClick}></sl-icon-button>
|
|
437
|
+
</div>
|
|
438
|
+
</ol>
|
|
439
|
+
<ol id="count" start=${this.elementIndex + 1}>
|
|
440
|
+
<li ?data-two-digit=${this.elementIndex + 1 >= 10}></li>
|
|
441
|
+
${this.layout === "tiles"? solution: null}
|
|
442
|
+
</ol>
|
|
443
|
+
<div id="handle"></div>`
|
|
444
|
+
}
|
|
445
|
+
}
|
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
import {css, html, PropertyValues} from "lit"
|
|
2
|
+
import {LitElementWw, option} from "@webwriter/lit"
|
|
3
|
+
import {customElement, property, query, queryAssignedElements} from "lit/decorators.js"
|
|
4
|
+
|
|
5
|
+
import SlButton from "@shoelace-style/shoelace/dist/components/button/button.component.js"
|
|
6
|
+
import SlIcon from "@shoelace-style/shoelace/dist/components/icon/icon.component.js"
|
|
7
|
+
import "@shoelace-style/shoelace/dist/themes/light.css"
|
|
8
|
+
import { Sortable } from "@shopify/draggable"
|
|
9
|
+
import IconPlus from "bootstrap-icons/icons/plus.svg"
|
|
10
|
+
|
|
11
|
+
import { WebwriterOrderItem } from "./webwriter-order-item"
|
|
12
|
+
import { ifDefined } from "lit/directives/if-defined.js"
|
|
13
|
+
import { shuffle } from "./webwriter-choice"
|
|
14
|
+
|
|
15
|
+
declare global {interface HTMLElementTagNameMap {
|
|
16
|
+
"webwriter-order": WebwriterOrder;
|
|
17
|
+
}}
|
|
18
|
+
|
|
19
|
+
@customElement("webwriter-order")
|
|
20
|
+
export class WebwriterOrder extends LitElementWw {
|
|
21
|
+
|
|
22
|
+
static scopedElements = {
|
|
23
|
+
"sl-button": SlButton,
|
|
24
|
+
"sl-icon": SlIcon
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
static styles = css`
|
|
28
|
+
:host {
|
|
29
|
+
display: flex !important;
|
|
30
|
+
flex-direction: column;
|
|
31
|
+
align-items: flex-start;
|
|
32
|
+
counter-reset: orderItem;
|
|
33
|
+
gap: 2px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
:host([layout=tiles]) {
|
|
37
|
+
flex-direction: row;
|
|
38
|
+
flex-wrap: wrap;
|
|
39
|
+
gap: 15px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
:host(:is([contenteditable=true], [contenteditable=""])) {
|
|
43
|
+
--text-color: var(--sl-color-success-700);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
:host ::slotted(*::part(counter)) {
|
|
47
|
+
counter-increment: orderItem;
|
|
48
|
+
content: counter(orderItem) '. ';
|
|
49
|
+
cursor: move;
|
|
50
|
+
text-align: right;
|
|
51
|
+
padding-right: 0.5em;
|
|
52
|
+
min-width: 1.5em;
|
|
53
|
+
color: var(--text-color, auto);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
sl-button::part(label) {
|
|
57
|
+
padding: 0;
|
|
58
|
+
display: flex;
|
|
59
|
+
flex-direction: row;
|
|
60
|
+
align-items: center;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
sl-button::part(base) {
|
|
64
|
+
border: none;
|
|
65
|
+
background: transparent;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
sl-icon {
|
|
69
|
+
width: 19px;
|
|
70
|
+
height: 19px;
|
|
71
|
+
padding: var(--sl-spacing-x-small);
|
|
72
|
+
padding-left: 0;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
#add-option {
|
|
76
|
+
order: 2147483647;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
#add-option:not(:hover)::part(base) {
|
|
80
|
+
color: darkgray;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
:host([layout=tiles]) #add-option {
|
|
84
|
+
width: 125px;
|
|
85
|
+
height: 125px;
|
|
86
|
+
overflow: hidden;
|
|
87
|
+
border: 2px solid var(--sl-color-gray-300);
|
|
88
|
+
border-radius: 5px;
|
|
89
|
+
padding: 5px;
|
|
90
|
+
display: flex;
|
|
91
|
+
align-items: center;
|
|
92
|
+
justify-content: center;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
:host(:not([contenteditable=true]):not([contenteditable=""])) .author-only {
|
|
97
|
+
display: none;
|
|
98
|
+
}
|
|
99
|
+
`
|
|
100
|
+
|
|
101
|
+
get layout(): "list" | "tiles" {
|
|
102
|
+
return this.children?.item(0)?.getAttribute("layout") as any ?? "list"
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
@property({type: String, attribute: true, reflect: true}) //@ts-ignore
|
|
106
|
+
@option({
|
|
107
|
+
type: "select",
|
|
108
|
+
options: [
|
|
109
|
+
{value: "list", label: {"en": "List"}},
|
|
110
|
+
{value: "tiles", label: {"en": "Tiles"}}
|
|
111
|
+
]
|
|
112
|
+
})
|
|
113
|
+
set layout(value) {
|
|
114
|
+
this.querySelectorAll("webwriter-order-item").forEach(el => el.setAttribute("layout", value))
|
|
115
|
+
this.requestUpdate("layout")
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
get hideOrderButtons() {
|
|
119
|
+
return !!this.items[0]?.hideOrderButtons
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
@property({type: Boolean, attribute: true, reflect: true}) //@ts-ignore
|
|
123
|
+
@option({type: Boolean, label: {_: "Hide order buttons"}})
|
|
124
|
+
set hideOrderButtons(value: boolean) {
|
|
125
|
+
this.items.forEach(item => item.hideOrderButtons = value)
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
observer: MutationObserver
|
|
130
|
+
|
|
131
|
+
connectedCallback() {
|
|
132
|
+
super.connectedCallback()
|
|
133
|
+
this.addEventListener("ww-moveup", this.handleMove)
|
|
134
|
+
this.addEventListener("ww-movedown", this.handleMove)
|
|
135
|
+
this.addEventListener("ww-moveto", this.handleMove)
|
|
136
|
+
this.observer = new MutationObserver(() => {
|
|
137
|
+
this.items.forEach(item => item.requestUpdate())
|
|
138
|
+
if(this.isContentEditable) {
|
|
139
|
+
this.solution = this.items.map(item => item.id)
|
|
140
|
+
}
|
|
141
|
+
this.clearDropPreviews()
|
|
142
|
+
})
|
|
143
|
+
this.observer.observe(this, {childList: true})
|
|
144
|
+
// this.shadowRoot.adoptedStyleSheets = [...this.shadowRoot.adoptedStyleSheets, this.orderSheet]
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
serializedCallback() {
|
|
148
|
+
this.shuffleItems()
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
disconnectedCallback(): void {
|
|
152
|
+
super.disconnectedCallback()
|
|
153
|
+
this.observer?.disconnect()
|
|
154
|
+
this.observer = undefined
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
orderSheet = new CSSStyleSheet()
|
|
158
|
+
|
|
159
|
+
addItem() {
|
|
160
|
+
const orderItem = this.ownerDocument.createElement("webwriter-order-item")
|
|
161
|
+
const p = this.ownerDocument.createElement("p")
|
|
162
|
+
orderItem.appendChild(p)
|
|
163
|
+
orderItem.setAttribute("layout", this.layout)
|
|
164
|
+
this.append(orderItem)
|
|
165
|
+
this.solution = [...this.#solution, orderItem.id]
|
|
166
|
+
this.ownerDocument.getSelection().setBaseAndExtent(p, 0, p, 0)
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
shuffleItems() {
|
|
170
|
+
const n = this.items.length
|
|
171
|
+
const nums = shuffle([...(new Array(n)).keys()])
|
|
172
|
+
this.innerHTML = nums.map(i => this.children.item(i).outerHTML).join("")
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
clearDropPreviews = () => {
|
|
176
|
+
this.items.forEach(item => item.dropPreview = undefined)
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
@query("#items-slot")
|
|
180
|
+
accessor itemsSlot: HTMLSlotElement
|
|
181
|
+
|
|
182
|
+
@queryAssignedElements()
|
|
183
|
+
accessor items: WebwriterOrderItem[]
|
|
184
|
+
|
|
185
|
+
handleKeyDown(e: KeyboardEvent) {
|
|
186
|
+
if(e.key == "ArrowDown") {
|
|
187
|
+
e.stopPropagation()
|
|
188
|
+
e.preventDefault()
|
|
189
|
+
}
|
|
190
|
+
else if(e.key === "ArrowUp") {
|
|
191
|
+
e.stopPropagation()
|
|
192
|
+
e.preventDefault()
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/*
|
|
197
|
+
If contenteditable: Reorder solution -> Triggers orderSheet change
|
|
198
|
+
If not contenteditable: Reorder value -> Triggers orderSheet change
|
|
199
|
+
*/
|
|
200
|
+
|
|
201
|
+
moveChild(elem: HTMLElement, i: number) {
|
|
202
|
+
/*
|
|
203
|
+
let items = this.items.map(el => el !== elem? el: undefined)
|
|
204
|
+
items.splice(i, 0, elem as WebwriterOrderItem)
|
|
205
|
+
items = items.filter(child => child)
|
|
206
|
+
this.replaceChildren(...items)
|
|
207
|
+
this.items.forEach(item => item.requestUpdate())*/
|
|
208
|
+
if(i === 0) {
|
|
209
|
+
this.insertAdjacentElement("afterbegin", elem)
|
|
210
|
+
}
|
|
211
|
+
else if(i < this.items.length) {
|
|
212
|
+
this.items[i].insertAdjacentElement("beforebegin", elem)
|
|
213
|
+
}
|
|
214
|
+
else {
|
|
215
|
+
this.insertAdjacentElement("beforeend", elem)
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
handleMove = (e: CustomEvent) => {
|
|
220
|
+
const elem = e.target as HTMLElement
|
|
221
|
+
const children = Array.from(this.children)
|
|
222
|
+
const pos = children.indexOf(elem)
|
|
223
|
+
let i: number
|
|
224
|
+
if(e.type === "ww-moveup") {
|
|
225
|
+
i = Math.max(0, pos - 1)
|
|
226
|
+
}
|
|
227
|
+
else if(e.type === "ww-movedown") {
|
|
228
|
+
i = Math.min(children.length, pos + 2)
|
|
229
|
+
|
|
230
|
+
}
|
|
231
|
+
else if(e.type === "ww-moveto") {
|
|
232
|
+
i = e.detail.i
|
|
233
|
+
}
|
|
234
|
+
this.moveChild(elem, i)
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
#solution: string[] = []
|
|
239
|
+
|
|
240
|
+
get solution() {
|
|
241
|
+
return this.#solution?.length? this.#solution: undefined
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
@property({attribute: false})
|
|
245
|
+
set solution(value: string[]) {
|
|
246
|
+
this.#solution = value
|
|
247
|
+
if(value) {
|
|
248
|
+
this.dispatchEvent(new CustomEvent("ww-answer-change", {
|
|
249
|
+
bubbles: true,
|
|
250
|
+
composed: true
|
|
251
|
+
}))
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
reportSolution() {
|
|
257
|
+
this.solution.forEach((id, i) => this.querySelector(`#${id}`).validOrder = i)
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
reset() {
|
|
261
|
+
this.solution = undefined
|
|
262
|
+
this.shuffleItems()
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
render() {
|
|
266
|
+
return html`
|
|
267
|
+
<slot id="items-slot" @webwriter-clear-drop-preview=${this.clearDropPreviews}></slot>
|
|
268
|
+
<sl-button size="small" id="add-option" class="author-only" @click=${() => this.addItem()}>
|
|
269
|
+
<sl-icon src=${IconPlus}></sl-icon><span>Add Option</span>
|
|
270
|
+
</sl-button>
|
|
271
|
+
`
|
|
272
|
+
}
|
|
273
|
+
}
|