-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
384 lines (312 loc) · 9.38 KB
/
Copy pathindex.js
File metadata and controls
384 lines (312 loc) · 9.38 KB
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
function countLetters(s) {
const counter = {};
for (const c of s) {
if (!(c in counter)) {
counter[c] = 0;
}
counter[c]++;
}
return counter;
}
function subtractCounter(counter1, counter2) {
const newCounter = {};
for (const e1 in counter1) {
const newCount = counter1[e1] - (counter2[e1] || 0);
if (newCount < 0) {
const s1 = JSON.stringify(counter1);
const s2 = JSON.stringify(counter2);
throw new Error(
`Invalid new count for ${e1}: ${newCount}. Subtracting: ${s1} - ${s2}`
);
}
newCounter[e1] = newCount;
}
return newCounter;
}
function isEmpty(counter) {
for (const letter in counter) {
if (counter[letter] > 0) {
return false;
}
}
return true;
}
/** `true` if all letters of s2 contained in s1; `false` otherwise */
function contains(s1, s2) {
const counter1 = countLetters(s1);
const counter2 = countLetters(s2);
for (const letter in counter2) {
if ((counter1[letter] || 0) < counter2[letter]) {
return false;
}
}
return true;
}
const LETTER_REGEX = /^[a-zA-Z\u00C0-\u017F]$/;
function isLetter(c) {
return LETTER_REGEX.test(c);
}
function isPrintable(c) {
return c.length === 1;
}
function stringSubtract(s1, s2) {
let lettersOnlyS1 = "";
for (const c of s1) {
if (isLetter(c)) {
lettersOnlyS1 += c;
}
}
for (const char of s2) {
const i = lettersOnlyS1.indexOf(char);
if (i === -1) {
continue;
}
lettersOnlyS1 = lettersOnlyS1.slice(0, i) + lettersOnlyS1.slice(i + 1);
}
return lettersOnlyS1;
}
// Capitalize all input in original
function keepCapitalized(id) {
document.querySelector(id).addEventListener("input", function (event) {
const selectionStart = event.target.selectionStart;
const selectionEnd = event.target.selectionEnd;
const input = event.target;
input.value = input.value.toUpperCase();
input.selectionStart = selectionStart;
input.selectionEnd = selectionEnd;
});
}
keepCapitalized("#original");
keepCapitalized("#anagram");
/**
* `inputs` should be an array of html textarea/input elements from which the removal of character `c`
* should be attempted. First tries from the first member of `inputs` etc, then second, etc.
* Stops trying on successful removal.
*/
function removeFrom(inputs, c) {
if (c.length === 0) {
return;
}
for (const input of inputs) {
const removableIndex = input.value.indexOf(c);
if (removableIndex !== -1) {
const newVal =
input.value.slice(0, removableIndex) +
input.value.slice(removableIndex + 1);
input.value = newVal;
break;
}
}
}
function receiveIfLetter(input, c) {
if (isLetter(c)) {
input.value += c;
}
}
/**
* Get removable chars from `s` starting at position `pos`,
* depending on `command` and `ctrlKey` pressed.
*/
function getDeletable(s, pos, command, ctrlKey) {
const deletable = [];
if (command === "Backspace") {
if (ctrlKey) {
// find first non-whitespace char
let i = pos - 1;
for (; /\s/.test(s.charAt(i)); --i);
for (; i >= 0 && /\S/.test(s.charAt(i)); --i) {
deletable.push(s.charAt(i));
}
} else {
deletable.push(s.charAt(pos - 1));
}
} else if (command === "Delete") {
if (ctrlKey) {
// find first non-whitespace char
let i = pos;
for (; /\s/.test(s.charAt(i)); ++i);
for (; i < s.length && /\S/.test(s.charAt(i)); ++i) {
deletable.push(s.charAt(i));
}
} else {
deletable.push(s.charAt(pos));
}
}
return deletable;
}
function removesContent(key) {
return key === "Backspace" || key === "Delete";
}
document.querySelector("#original").addEventListener("cut", function (event) {
const input = event.target;
const selectionStart = input.selectionStart;
const selectionEnd = input.selectionEnd;
const material = document.querySelector("#material");
const anagram = document.querySelector("#anagram");
const targetInputs = [material, anagram];
for (let i = selectionStart; i < selectionEnd; i++) {
removeFrom(targetInputs, input.value.charAt(i));
}
});
document.querySelector("#original").addEventListener("paste", function (event) {
const input = event.target;
const selectionStart = input.selectionStart;
const selectionEnd = input.selectionEnd;
const material = document.querySelector("#material");
const anagram = document.querySelector("#anagram");
const targetInputs = [material, anagram];
for (let i = selectionStart; i < selectionEnd; i++) {
removeFrom(targetInputs, input.value.charAt(i));
}
for (const char of event.clipboardData.getData("text")) {
if (isLetter(char)) {
material.value += char.toUpperCase();
}
}
});
document
.querySelector("#original")
.addEventListener("keydown", function (event) {
const input = event.target;
const selectionStart = input.selectionStart;
const selectionEnd = input.selectionEnd;
const material = document.querySelector("#material");
const anagram = document.querySelector("#anagram");
const targetInputs = [material, anagram];
if (selectionStart === selectionEnd) {
const deletable = getDeletable(
input.value,
selectionStart,
event.key,
event.ctrlKey
);
if (deletable.length) {
for (const letter of deletable) {
removeFrom(targetInputs, letter);
}
return;
} else if (!isLetter(event.key)) {
return;
}
}
if (
removesContent(event.key) ||
(isPrintable(event.key) && !event.ctrlKey)
) {
for (let i = selectionStart; i < selectionEnd; i++) {
removeFrom(targetInputs, input.value.charAt(i));
}
} else {
return;
}
if (isLetter(event.key) && !event.ctrlKey) {
material.value += event.key.toUpperCase();
}
});
document.querySelector("#anagram").addEventListener("cut", function (event) {
const input = event.target;
const selectionStart = input.selectionStart;
const selectionEnd = input.selectionEnd;
const material = document.querySelector("#material");
for (let i = selectionStart; i < selectionEnd; i++) {
receiveIfLetter(material, input.value.charAt(i));
}
});
document.querySelector("#anagram").addEventListener("paste", function (event) {
handlePaste(event);
});
function handlePaste(event) {
event.preventDefault();
alert("Pasting in the anagram field not yet supported!");
return;
const input = document.querySelector(intoSelector);
const selectionStart = input.selectionStart;
const selectionEnd = input.selectionEnd;
const deleted = input.value.slice(selectionStart, selectionEnd);
// if (pasted - deleted) all in material: ok
const diffLetters = stringSubtract(pasted, deleted);
const material = document.querySelector(fromSelector);
if (contains(material.value + pasted, deleted)) {
for (const pastedLetter of pasted) {
removeFrom([material], pastedLetter);
}
for (const deletedLetter of deleted) {
receiveIfLetter(material, deletedLetter);
}
input.value =
input.value.slice(0, selectionStart) +
pasted +
input.value.slice(selectionEnd);
}
}
document
.querySelector("#anagram")
.addEventListener("keydown", function (event) {
const input = event.target;
const selectionStart = input.selectionStart;
const selectionEnd = input.selectionEnd;
const material = document.querySelector("#material");
if (selectionStart === selectionEnd) {
const deletable = getDeletable(
input.value,
selectionStart,
event.key,
event.ctrlKey
);
if (deletable.length) {
for (const letter of deletable) {
receiveIfLetter(material, letter);
}
return;
} else if (!isLetter(event.key)) {
return;
}
}
if (event.ctrlKey) {
if (removesContent(event.key)) {
for (let i = selectionStart; i < selectionEnd; i++) {
receiveIfLetter(material, input.value.charAt(i));
}
} else if (event.key.toUpperCase() === "V") {
handlePaste(event);
}
return;
}
if (removesContent(event.key)) {
for (let i = selectionStart; i < selectionEnd; i++) {
receiveIfLetter(material, input.value.charAt(i));
}
return;
} else if (!isPrintable(event.key)) {
return;
}
const insertable = event.key.toUpperCase();
if (isLetter(insertable) && material.value.indexOf(insertable) === -1) {
event.preventDefault();
return;
}
for (let i = selectionStart; i < selectionEnd; i++) {
receiveIfLetter(material, input.value.charAt(i));
}
// insert from material into anagram if char available
if (material.value.indexOf(insertable) === -1 || !isLetter(event.key)) {
// prevent insertion in the anagram field
event.preventDefault();
return;
}
// the default action will insert this in the anagram field
if (isLetter(event.key) && !event.ctrlKey) {
removeFrom([material], insertable);
}
});
document.querySelector("#shuffle").addEventListener("click", () => {
const material = document.querySelector("#material");
const letters = material.value.split("");
for (let i = 0; i < letters.length; i++) {
const randIndex = Math.floor(Math.random() * i);
const tmp = letters[i];
letters[i] = letters[randIndex];
letters[randIndex] = tmp;
}
material.value = letters.join("");
});