-
Notifications
You must be signed in to change notification settings - Fork 0
/
rwt-corner-pocket.js
351 lines (300 loc) · 11.4 KB
/
rwt-corner-pocket.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
//=============================================================================
//
// File: /node_modules/rwt-corner-pocket/rwt-corner-pocket.js
// Language: ECMAScript 2015
// Copyright: Read Write Tools © 2020
// License: MIT
// Initial date: Jan 7, 2020
// Purpose: Corner-pocket popup menu
//
//=============================================================================
const Static = {
componentName: 'rwt-corner-pocket',
elementInstance: 1,
htmlURL: '/node_modules/rwt-corner-pocket/rwt-corner-pocket.blue',
cssURL: '/node_modules/rwt-corner-pocket/rwt-corner-pocket.css',
htmlText: null,
cssText: null
};
Object.seal(Static);
export default class RwtCornerPocket extends HTMLElement {
constructor() {
super();
// guardrails
this.instance = Static.elementInstance++;
this.isComponentLoaded = false;
// properties
this.collapseSender = `${Static.componentName} ${this.instance}`;
this.shortcutKey = null;
this.corner = null;
// child elements
this.panel = null;
this.caption = null;
this.container = null;
// select and scroll to this document's menu item
this.activeElement = null;
this.thisURL = '';
Object.seal(this);
}
//-------------------------------------------------------------------------
// customElement life cycle callback
//-------------------------------------------------------------------------
async connectedCallback() {
if (!this.isConnected)
return;
try {
var htmlFragment = await this.getHtmlFragment();
var styleElement = await this.getCssStyleElement();
var menuElement = await this.fetchMenu();
if (menuElement != null) {
var elContainer = htmlFragment.getElementById('container');
elContainer.appendChild(menuElement);
}
this.attachShadow({mode: 'open'});
this.shadowRoot.appendChild(htmlFragment);
this.shadowRoot.appendChild(styleElement);
this.identifyChildren();
this.registerEventListeners();
this.initializeCaption();
this.initializeShortcutKey();
this.highlightActiveElement();
this.determineCorner();
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));
}
});
}
//^ Fetch the user-specified menu items from the file specified in
// the custom element's sourceref attribute, which is a URL.
//
// That file should contain HTML with <a> and <img> items like this:
// a `https://readwritetools.com` *tabindex=301 *title='Smart tech for people who type' {
// p <<.thin READ WRITE>> <<.heavy TOOLS>>
// img `/corner-pocket/img/rwtools.png`
// }
//
//< returns a document-fragment suitable for appending to the container element
//< returns null if the user has not specified a sourceref attribute or
// if the server does not respond with 200 or 304
async fetchMenu() {
if (this.hasAttribute('sourceref') == false)
return null;
var sourceref = this.getAttribute('sourceref');
var response = await fetch(sourceref, {cache: "no-cache", referrerPolicy: 'no-referrer'}); // send conditional request to server with ETag and If-None-Match
if (response.status != 200 && response.status != 304)
return null;
var templateText = await response.text();
// create a template and turn its content into a document fragment
var template = document.createElement('template');
template.innerHTML = templateText;
return template.content;
}
//^ Identify this component's children
identifyChildren() {
this.panel = this.shadowRoot.getElementById('panel');
this.caption = this.shadowRoot.getElementById('caption');
this.container = this.shadowRoot.getElementById('container');
}
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-corner-pocket', this.onToggleEvent.bind(this));
// component events
this.panel.addEventListener('click', this.onClickPanel.bind(this));
}
initializeCaption() {
if (this.hasAttribute('titlebar'))
this.caption.innerText = this.getAttribute('titlebar');
else
this.caption.innerText = "Corner Pocket";
}
//^ 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');
}
//^ Highlight the anchor element corresponding to this document
//
// For this to work, the document should have a tag like this in its <head>
// <meta name='corner-pocket:this-url' content='https://example.com' />
//
highlightActiveElement() {
// the document must self-identify its own URL
var meta = document.querySelector('meta[name="corner-pocket:this-url"]')
if (meta != null) {
this.thisURL = meta.getAttribute('content');
if (this.thisURL == null)
this.thisURL = '';
}
// find the corresponding anchor tag
if (this.thisURL != '') {
var selector = `a[href='${this.thisURL}']`;
this.activeElement = this.container.querySelector(selector); // for elements added to shadow DOM
if (this.activeElement == null)
this.activeElement = this.querySelector(selector); // for elements added as slot
}
if (this.activeElement) {
this.activeElement.scrollIntoView({block:'center'});
this.activeElement.classList.add('activename'); // use CSS to highlight the element
}
}
determineCorner() {
this.corner = 'bottom-left';
if (this.hasAttribute('corner')) {
var attr = this.getAttribute('corner');
if (attr.indexOf('bottom') != -1 && attr.indexOf('left') != -1)
this.corner = 'bottom-left';
else if (attr.indexOf('bottom') != -1 && attr.indexOf('right') != -1)
this.corner = 'bottom-right';
else if (attr.indexOf('top') != -1 && attr.indexOf('left') != -1)
this.corner = 'top-left';
else if (attr.indexOf('top') != -1 && attr.indexOf('right') != -1)
this.corner = 'top-right';
}
}
//^ 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
//-------------------------------------------------------------------------
// User has clicked on the document
onClickDocument(event) {
this.hideMenu();
event.stopPropagation();
}
// 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.hideMenu();
event.stopPropagation();
}
// like 'F1', 'F2', etc
if (event.key == this.shortcutKey && this.shortcutKey != null) {
this.toggleMenu(event);
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 component to close/hide
// But don't collapse this component, if it was the one that generated it
onCollapsePopup(event) {
if (event.detail == this.collapseSender)
return;
else
this.hideMenu();
}
//^ Anybody can use: document.dispatchEvent(new Event('toggle-corner-pocket'));
// to open/close this component.
onToggleEvent(event) {
event.stopPropagation();
this.toggleMenu(event);
}
//-------------------------------------------------------------------------
// component events
//-------------------------------------------------------------------------
// User has clicked in the panel, but not on a hyperlink
onClickPanel(event) {
event.stopPropagation();
}
//-------------------------------------------------------------------------
// component methods
//-------------------------------------------------------------------------
// open/close
toggleMenu(event) {
if (this.panel.className == 'hide-menu')
this.showMenu();
else
this.hideMenu();
event.stopPropagation();
}
showMenu() {
this.collapseOtherPopups();
this.panel.className = this.corner; // bottom-left, bottom-right, top-left, top-right
if (this.activeElement != null)
this.activeElement.focus();
}
hideMenu() {
this.panel.className = 'hide-menu';
}
}
window.customElements.define(Static.componentName, RwtCornerPocket);