-
Notifications
You must be signed in to change notification settings - Fork 0
/
rwt-reading-summary.js
355 lines (301 loc) · 11.4 KB
/
rwt-reading-summary.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
//=============================================================================
//
// File: /node_modules/rwt-reading-summary/rwt-reading-summary.js
// Language: ECMAScript 2015
// Copyright: Read Write Tools © 2020
// License: MIT
// Initial date: Jan 15, 2020
// Contents: Display reader's experience points and reading history
//
//=============================================================================
import ReadersData from './readers-data.class.js';
import ReadersItem from './readers-item.class.js';
const Static = {
componentName: 'rwt-reading-summary',
elementInstance: 1,
htmlURL: '/node_modules/rwt-reading-summary/rwt-reading-summary.blue',
cssURL: '/node_modules/rwt-reading-summary/rwt-reading-summary.css',
htmlText: null,
cssText: null
};
Object.seal(Static);
export default class RwtReadingSummary extends HTMLElement {
constructor() {
super();
// guardrails
this.instance = Static.elementInstance++;
this.isComponentLoaded = false;
// properties
this.collapseSender = `${Static.componentName} ${this.instance}`;
this.shortcutKey = null;
this.urlPrefix = `${document.location.protocol}//${document.location.hostname}`;
// child elements
this.dialog = null;
this.closeButton = null;
this.itemRows = null;
this.itemTotals = null;
this.messageText = null;
Object.seal(this);
}
//-------------------------------------------------------------------------
// customElement life cycle callback
//-------------------------------------------------------------------------
async connectedCallback() {
if (!this.isConnected)
return;
try {
var htmlFragment = await this.getHtmlFragment();
var styleElement = await this.getCssStyleElement();
this.attachShadow({mode: 'open'});
this.shadowRoot.appendChild(htmlFragment);
this.shadowRoot.appendChild(styleElement);
this.identifyChildren();
this.registerEventListeners();
this.initializeShortcutKey();
this.loadReadersData();
this.sendComponentLoaded();
}
catch (err) {
console.log(err.message);
}
}
//-------------------------------------------------------------------------
// initialization
//-------------------------------------------------------------------------
// Only the first instance of this component fetches the HTML text from the server.
// All other instances wait for it to issue an 'html-template-ready' event.
// If this function is called when the first instance is still pending,
// it must wait upon receipt of the 'html-template-ready' event.
// If this function is called after the first instance has already fetched the HTML text,
// it will immediately issue its own 'html-template-ready' event.
// When the event is received, create an HTMLTemplateElement from the fetched HTML text,
// and resolve the promise with a DocumentFragment.
getHtmlFragment() {
return new Promise(async (resolve, reject) => {
var htmlTemplateReady = `${Static.componentName}-html-template-ready`;
document.addEventListener(htmlTemplateReady, () => {
var template = document.createElement('template');
template.innerHTML = Static.htmlText;
resolve(template.content);
});
if (this.instance == 1) {
var response = await fetch(Static.htmlURL, {cache: "no-cache", referrerPolicy: 'no-referrer'});
if (response.status != 200 && response.status != 304) {
reject(new Error(`Request for ${Static.htmlURL} returned with ${response.status}`));
return;
}
Static.htmlText = await response.text();
document.dispatchEvent(new Event(htmlTemplateReady));
}
else if (Static.htmlText != null) {
document.dispatchEvent(new Event(htmlTemplateReady));
}
});
}
// Use the same pattern to fetch the CSS text from the server
// When the 'css-text-ready' event is received, create an HTMLStyleElement from the fetched CSS text,
// and resolve the promise with that element.
getCssStyleElement() {
return new Promise(async (resolve, reject) => {
var cssTextReady = `${Static.componentName}-css-text-ready`;
document.addEventListener(cssTextReady, () => {
var styleElement = document.createElement('style');
styleElement.innerHTML = Static.cssText;
resolve(styleElement);
});
if (this.instance == 1) {
var response = await fetch(Static.cssURL, {cache: "no-cache", referrerPolicy: 'no-referrer'});
if (response.status != 200 && response.status != 304) {
reject(new Error(`Request for ${Static.cssURL} returned with ${response.status}`));
return;
}
Static.cssText = await response.text();
document.dispatchEvent(new Event(cssTextReady));
}
else if (Static.cssText != null) {
document.dispatchEvent(new Event(cssTextReady));
}
});
}
//^ Identify this component's children
identifyChildren() {
this.dialog = this.shadowRoot.getElementById('dialog');
this.closeButton = this.shadowRoot.getElementById('close-button');
this.itemRows = this.shadowRoot.getElementById('item-rows');
this.itemTotals = this.shadowRoot.getElementById('item-totals');
this.messageText = this.shadowRoot.getElementById('message-text');
}
registerEventListeners() {
// document events
document.addEventListener('click', this.onClickDocument.bind(this));
document.addEventListener('keydown', this.onKeydownDocument.bind(this));
document.addEventListener('collapse-popup', this.onCollapsePopup.bind(this));
document.addEventListener('toggle-reading-summary', this.onToggleEvent.bind(this));
// component events
this.dialog.addEventListener('click', this.onClickDialog.bind(this));
this.closeButton.addEventListener('click', this.onClickClose.bind(this));
}
//^ Get the user-specified shortcut key. This will be used to open the dialog.
// Valid values are "F1", "F2", etc., specified with the *shortcut attribute on the custom element
initializeShortcutKey() {
if (this.hasAttribute('shortcut'))
this.shortcutKey = this.getAttribute('shortcut');
}
// Get the reader's data from browser localStorage
// show most recent items first
loadReadersData() {
var readersData = new ReadersData();
var rc = readersData.readFromStorage();
var html = [];
for (let [filePath, readersItem] of readersData.itemsMap.entries()) {
html.push(this.formatTableRow(filePath, readersItem));
}
html.reverse();
this.itemRows.innerHTML = html.join('');
this.itemTotals.innerHTML = this.formatTableFooter(readersData);
// broadcast data to the outside
var detail = {
readingTime: this.formatTime(readersData.readingTime),
pointsObtained: readersData.pointsObtained,
pagesRead: readersData.pagesRead,
shortcutKey: this.shortcutKey
};
var customEvent = new CustomEvent('rwt-reading-summary-data', {detail: detail});
document.dispatchEvent(customEvent);
}
//^ Inform the document's custom element that it is ready for programmatic use
sendComponentLoaded() {
this.isComponentLoaded = true;
this.dispatchEvent(new Event('component-loaded', {bubbles: true}));
}
//^ A Promise that resolves when the component is loaded
waitOnLoading() {
return new Promise((resolve) => {
if (this.isComponentLoaded == true)
resolve();
else
this.addEventListener('component-loaded', resolve);
});
}
//-------------------------------------------------------------------------
// document events
//-------------------------------------------------------------------------
// close the dialog when user clicks on the document
onClickDocument(event) {
event.stopPropagation();
this.hideDialog();
}
// close the dialog when user presses the ESC key
// toggle the dialog when user presses the assigned shortcutKey
onKeydownDocument(event) {
if (event.key == "Escape") {
this.hideDialog();
event.stopPropagation();
}
// like 'F1', 'F2', etc
if (event.key == this.shortcutKey) {
this.toggleDialog();
event.stopPropagation();
event.preventDefault();
}
}
//^ Send an event to close/hide all other registered popups
collapseOtherPopups() {
var collapseEvent = new CustomEvent('collapse-popup', {detail: this.collapseSender});
document.dispatchEvent(collapseEvent);
}
//^ Listen for an event on the document instructing this dialog to close/hide
// But don't collapse this dialog, if it was the one that generated it
onCollapsePopup(event) {
if (event.detail == this.collapseSender)
return;
else
this.hideDialog();
}
//^ Anybody can use: document.dispatchEvent(new Event('toggle-reading-summary'));
// to open/close this component.
onToggleEvent(event) {
event.stopPropagation();
this.toggleDialog();
}
//-------------------------------------------------------------------------
// component events
//-------------------------------------------------------------------------
// Necessary because clicking anywhere on the dialog will bubble up
// to onClickDocument which will close the dialog
onClickDialog(event) {
event.stopPropagation();
}
// User has clicked on the dialog box's Close button
onClickClose(event) {
this.hideDialog();
event.stopPropagation();
}
//-------------------------------------------------------------------------
// component methods
//-------------------------------------------------------------------------
toggleDialog() {
if (this.dialog.style.display == 'none')
this.showDialog();
else
this.hideDialog();
}
// retrieve and show
showDialog() {
this.collapseOtherPopups();
this.dialog.style.display = 'block';
}
// hide
hideDialog() {
this.dialog.style.display = 'none';
}
//^ Format one reader's item as a row in the table
formatTableRow(filePath, readersItem) {
var item = readersItem;
var percent = (item.percentRead * 100).toFixed(0);
var page = `<a href='${filePath}'>${item.title}</a>`;
var time = this.formatTime(item.readingTime);
var pointsPossible = item.skillPoints;
var pointsObtained = Math.round(item.skillPoints * item.percentRead);
return `<tr><td>${page}</td><td>${time}</td><td class='center'>${percent}%</td><td class='center'>${pointsObtained} of ${pointsPossible}</td><td>${item.skillLevel}</td><td>${item.skillCategory}</td></tr>`;
}
formatTableFooter(readersData) {
var pagesRead = readersData.pagesRead;
var pagesVisited = readersData.pagesVisited;
var pointsPossible = readersData.pointsPossible;
var pointsObtained = readersData.pointsObtained;
var readingTime = this.formatTime(readersData.readingTime);
return `<tr><th>${pagesRead} read / ${pagesVisited} visited</th><th>${readingTime}</th><th></th><th>${pointsObtained} of ${pointsPossible}</th><th></th><th></th></tr>`;
}
formatTime(seconds) {
if (seconds == 0)
return '';
// < 1.5 minutes
if (seconds <= 90) {
var round5 = Math.round(seconds/5) * 5;
return `${round5} seconds`;
}
// < 5 minutes
if (seconds <= 5*60) {
var minutes = Math.floor(seconds / 60);
var remainder = (seconds % 60);
var round15 = Math.round(remainder/15) * 15;
return `${minutes} min ${round15} sec`;
}
// < 60 minutes
if (seconds <= 60*60) {
var minutes = Math.floor(seconds / 60);
return `${minutes} minutes`;
}
// > 1 hour
var hours = Math.floor(seconds / 3600);
var remainder = (seconds % 3600);
var minutes = remainder/60;
var round5 = Math.round(minutes/5) * 5;
if (seconds <= 2*60*60)
return `${hours} hour ${round5} min`;
else
return `${hours} hours ${round5} min`;
}
}
window.customElements.define(Static.componentName, RwtReadingSummary);