-
Notifications
You must be signed in to change notification settings - Fork 0
/
word-count.js
381 lines (321 loc) · 11 KB
/
word-count.js
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
// to use: <word-count parent=".markdown-body"></word-count>
// /$$ /$$ /$$
// | $$ | $$ | $$
// /$$$$$$$ /$$$$$$ /$$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$ | $$$$$$$ | $$ /$$$$$$
// /$$_____/ /$$__ $$| $$ | $$| $$__ $$|_ $$_/ |____ $$| $$__ $$| $$ /$$__ $$
// | $$ | $$ \ $$| $$ | $$| $$ \ $$ | $$ /$$$$$$$| $$ \ $$| $$| $$$$$$$$
// | $$ | $$ | $$| $$ | $$| $$ | $$ | $$ /$$ /$$__ $$| $$ | $$| $$| $$_____/
// | $$$$$$$| $$$$$$/| $$$$$$/| $$ | $$ | $$$$/| $$$$$$$| $$$$$$$/| $$| $$$$$$$
// \_______/ \______/ \______/ |__/ |__/ \___/ \_______/|_______/ |__/ \_______/
// the following code is from countable.js
// source: https://sacha.me/Countable/
/**
* Countable is a script to allow for live paragraph-, word- and character-
* counting on an HTML element.
*
* @author Sacha Schmid (<https://github.com/RadLikeWhoa>)
* @version 3.0.1
* @license MIT
* @see <http://radlikewhoa.github.io/Countable/>
*/
/**
* Note: For the purpose of this internal documentation, arguments of the type
* {Nodes} are to be interpreted as either {NodeList} or {Element}.
*/
/**
* @private
*
* `liveElements` holds all elements that have the live-counting
* functionality bound to them.
*/
let liveElements = [];
const each = Array.prototype.forEach;
/**
* `ucs2decode` function from the punycode.js library.
*
* Creates an array containing the decimal code points of each Unicode
* character in the string. While JavaScript uses UCS-2 internally, this
* function will convert a pair of surrogate halves (each of which UCS-2
* exposes as separate characters) into a single code point, matching
* UTF-16.
*
* @see <http://goo.gl/8M09r>
* @see <http://goo.gl/u4UUC>
*
* @param {String} string The Unicode input string (UCS-2).
*
* @return {Array} The new array of code points.
*/
function decode(string) {
const output = [];
let counter = 0;
const length = string.length;
while (counter < length) {
const value = string.charCodeAt(counter++);
if (value >= 0xd800 && value <= 0xdbff && counter < length) {
// It's a high surrogate, and there is a next character.
const extra = string.charCodeAt(counter++);
if ((extra & 0xfc00) == 0xdc00) {
// Low surrogate.
output.push(((value & 0x3ff) << 10) + (extra & 0x3ff) + 0x10000);
} else {
// It's an unmatched surrogate; only append this code unit, in case the
// next code unit is the high surrogate of a surrogate pair.
output.push(value);
counter--;
}
} else {
output.push(value);
}
}
return output;
}
/**
* `validateArguments` validates the arguments given to each function call.
* Errors are logged to the console as warnings, but Countable fails
* silently.
*
* @private
*
* @param {Nodes|String} targets A (collection of) element(s) or a single
* string to validate.
*
* @param {Function} callback The callback function to validate.
*
* @return {Boolean} Returns whether all arguments are valid.
*/
function validateArguments(targets, callback) {
const nodes = Object.prototype.toString.call(targets);
const targetsValid =
typeof targets === "string" ||
nodes === "[object NodeList]" ||
nodes === "[object HTMLCollection]" ||
targets.nodeType === 1;
const callbackValid = typeof callback === "function";
if (!targetsValid) console.error("Countable: Not a valid target");
if (!callbackValid) console.error("Countable: Not a valid callback function");
return targetsValid && callbackValid;
}
/**
* `count` trims an element's value, optionally strips HTML tags and counts
* paragraphs, sentences, words, characters and characters plus spaces.
*
* @private
*
* @param {Node|String} target The target for the count.
*
* @param {Object} options The options to use for the counting.
*
* @return {Object} The object containing the number of paragraphs,
* sentences, words, characters and characters
* plus spaces.
*/
function count(target, options) {
let original =
"" +
(typeof target === "string"
? target
: "value" in target
? target.value
: target.textContent);
options = options || {};
/**
* The initial implementation to allow for HTML tags stripping was created
* @craniumslows while the current one was created by @Rob--W.
*
* @see <http://goo.gl/Exmlr>
* @see <http://goo.gl/gFQQh>
*/
if (options.stripTags) original = original.replace(/<\/?[a-z][^>]*>/gi, "");
if (options.ignore) {
each.call(options.ignore, function (i) {
original = original.replace(i, "");
});
}
const trimmed = original.trim();
/**
* Most of the performance improvements are based on the works of @epmatsw.
*
* @see <http://goo.gl/SWOLB>
*/
return {
paragraphs: trimmed
? (trimmed.match(options.hardReturns ? /\n{2,}/g : /\n+/g) || []).length +
1
: 0,
sentences: trimmed ? (trimmed.match(/[.?!…]+./g) || []).length + 1 : 0,
words: trimmed
? (trimmed.replace(/['";:,.?¿\-!¡]+/g, "").match(/\S+/g) || []).length
: 0,
characters: trimmed ? decode(trimmed.replace(/\s/g, "")).length : 0,
all: decode(original).length,
};
}
/**
* This is the main object that will later be exposed to other scripts. It
* holds all the public methods that can be used to enable the Countable
* functionality.
*
* Some methods accept an optional options parameter. This includes the
* following options.
*
* {Boolean} hardReturns Use two returns to seperate a paragraph
* instead of one. (default: false)
* {Boolean} stripTags Strip HTML tags before counting the values.
* (default: false)
* {Array<Char>} ignore A list of characters that should be removed
* ignored when calculating the counters.
* (default: )
*/
const Countable = {
/**
* The `on` method binds the counting handler to all given elements. The
* event is either `oninput` or `onkeydown`, based on the capabilities of
* the browser.
*
* @param {Nodes} elements All elements that should receive the
* Countable functionality.
*
* @param {Function} callback The callback to fire whenever the
* element's value changes. The callback is
* called with the relevant element bound
* to `this` and the counted values as the
* single parameter.
*
* @param {Object} [options] An object to modify Countable's
* behaviour.
*
* @return {Object} Returns the Countable object to allow for chaining.
*/
on: function (elements, callback, options) {
if (!validateArguments(elements, callback)) return;
if (!Array.isArray(elements)) {
elements = [elements];
}
each.call(elements, function (e) {
const handler = function () {
callback.call(e, count(e, options));
};
liveElements.push({ element: e, handler: handler });
handler();
e.addEventListener("input", handler);
});
return this;
},
/**
* The `off` method removes the Countable functionality from all given
* elements.
*
* @param {Nodes} elements All elements whose Countable functionality
* should be unbound.
*
* @return {Object} Returns the Countable object to allow for chaining.
*/
off: function (elements) {
if (!validateArguments(elements, function () {})) return;
if (!Array.isArray(elements)) {
elements = [elements];
}
liveElements
.filter(function (e) {
return elements.indexOf(e.element) !== -1;
})
.forEach(function (e) {
e.element.removeEventListener("input", e.handler);
});
liveElements = liveElements.filter(function (e) {
return elements.indexOf(e.element) === -1;
});
return this;
},
/**
* The `count` method works mostly like the `live` method, but no events are
* bound, the functionality is only executed once.
*
* @param {Nodes|String} targets All elements that should be counted.
*
* @param {Function} callback The callback to fire whenever the
* element's value changes. The callback
* is called with the relevant element
* bound to `this` and the counted values
* as the single parameter.
*
* @param {Object} [options] An object to modify Countable's
* behaviour.
*
* @return {Object} Returns the Countable object to allow for chaining.
*/
count: function (targets, callback, options) {
if (!validateArguments(targets, callback)) return;
if (!Array.isArray(targets)) {
targets = [targets];
}
each.call(targets, function (e) {
callback.call(e, count(e, options));
});
return this;
},
/**
* The `enabled` method checks if the live-counting functionality is bound
* to an element.
*
* @param {Node} element All elements that should be checked for the
* Countable functionality.
*
* @return {Boolean} A boolean value representing whether Countable
* functionality is bound to all given elements.
*/
enabled: function (elements) {
if (elements.length === undefined) {
elements = [elements];
}
return (
liveElements.filter(function (e) {
return elements.indexOf(e.element) !== -1;
}).length === elements.length
);
},
};
//
//
// Countable content ends
//
//
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
const wordsPerMinute = 200;
class WordCount extends HTMLElement {
constructor() {
super();
this.parent = "body";
}
connectedCallback() {
if (this.hasAttribute("parent")) this.parent = this.getAttribute("parent");
this.render();
}
update() {
const parent = document.querySelector(this.parent);
var count = 0;
Countable.count(parent, function (counter) {
count = counter;
});
const words = count.words;
const minutes = words / wordsPerMinute;
const template = `
<figcaption>
${numberWithCommas(words)} words, ${Math.ceil(
minutes
)} mins @ ${wordsPerMinute} wpm
</figcaption>
`;
this.innerHTML = template;
}
render() {
this.update();
document.addEventListener("DOMContentLoaded", () => {
this.update();
});
}
}
customElements.define("word-count", WordCount);