-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbits-toolbar-customizer-queries.js
435 lines (410 loc) · 13.3 KB
/
bits-toolbar-customizer-queries.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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
((global) => {
'use strict';
/*
* The queries below are used to select DOM nodes and specify a change to be made
* to a string-valued property or sub-property of the selected node. Items are
* specified with a query consisting of one or more arrays of search criteria.
* The search criteria are applied to a target DOM node specified for each query
* (currently either the BITS toolbar or the entire document).
*
* Search criteria are specified as an array of objects, each of which contain
* up to three properties, two mandatory and two optional:
*
* key: A key representing a child property of the target node to match. The key
* key may be a dot-separated path which identifies a sub-property, e.g.
* <someChildNode.someChildNode.someProperty>.
* value: A string value to match against the specified key.
* setter: (Optional) An object which specifies a mutation to apply to the selected
* node. The default mutation applied if this object is not provided is
* <selected node>.style.display='none'
* subquery: (Optional) A sub-query consisting of one or more search objects with required
* properties only (i.e. there are no nested sub-queries). If the sub-query
* property is present, instead of mutating the selected node when found, the
* sub-query will be executed with the selected node as the target node.
*
* The setter object defined above contains three required properties:
*
* path: A dot-separated path represseting the parent node of the property to be mutated
* node: The name of the property to be mutated
* value: The value to be set on the node.
*
* A single query or a collection of queries may be submitted. In the latter case,
* the node(s) selected by each query will be mutated if matched. When more than one
* arrays of search criteria are provided for a query, the node will be mutated if
* exactly all criteria match. If more than one node matches a set of search criteria,
* all of them will be mutated.
*
* Examples:
*
* 1) The following query will search the toolbar for 'paper-icon-button' elements
* with an id of 'gallery'. All such elements found will be hidden.
*
* gallery: {
* query: [
* {key: 'id', value: 'gallery'},
* {key: 'tagName', value: 'paper-icon-button'}
*
* ],
* target: 'toolbar'
* }
*
* 2) The following query will search the entire document for a 'base-host-gallery'
* element whose grandparent's host element is a 'base-gallery-category' element.
* If found, the element's grandparent's host element will be hidden.
*
* homeLink: {
* query: [
* {
* key: 'textContent',
* value: 'Home',
* setter: {
* path: 'parentNode.parentNode.host.style',
* node: 'display',
* value: 'none'
* }
* },
* {
* key: 'parentNode.parentNode.host.tagName',
* value: 'base-gallery-category',
* setter: {
* path: 'parentNode.parentNode.host.style',
* node: 'display',
* value: 'none'
* }
* }
* ],
* target: 'ownerDocument'
* }
*
* 3) The following query will search the entire document for the 'base-home'
* element. If found, that element will be searched for a node whose text node
* has the value 'Dashboard'. If that node is found, its parent node will be hidden.
*
* dashboard: {
* query: [
* {key: 'tagName', value: 'base-home',
* subquery: [
* {
* key: 'textContent',
* value: 'Dashboard',
* setter: {
* path: 'parentNode.style',
* node: 'display',
* value: 'none'
* }
* }
* ]
* }
* ],
* target: 'ownerDocument'
* }
*/
const QUERIES = {
// Entire toolbar
toolbar: {
query: [
{ key: 'id', value: 'toolbar' },
{ key: 'tagName', value: 'base-toolbar'}
],
setters: [
{path: 'style', node: 'display', value: 'none'},
{path: 'parentNode.style', node: 'display', value: 'none'}
],
callers: [
{path: 'parentElement.parentElement', func: 'resetLayout'}
],
target: 'ownerDocument'
},
// Stack icon on left side of toolbar, defined in base-toolbar.html
gallery: {
query: [
{key: 'id', value: 'gallery'},
{key: 'tagName', value: 'paper-icon-button'}
],
target: 'toolbar'
},
// BITS label in toolbar next to gallery, defined in base-toolbar.html
logo: {
query: [
{key: 'textContent', value: 'BITS'},
{key : 'parentNode.parentNode.tagName', value: 'app-toolbar'}
],
target: 'toolbar'
},
// Power menu items, defined in 'base-system-power-control.html'
powerMenu: {
query: [
{key: 'id', value: 'menu'},
{key: 'parentNode.host.tagName', value: 'base-system-power-control'}
],
target: 'toolbar'
},
// Power menu item defined in 'base-system-power-control.html'
powerOff: {
query: [
{key: 'tagName', value: 'paper-item'},
{key: 'textContent', value: 'Power off'}
],
target: 'toolbar'
},
// Power menu item defined in 'base-system-power-control.html'
reboot: {
query: [
{key: 'tagName', value: 'paper-item'},
{key: 'textContent', value: 'Reboot'}
],
target: 'toolbar'
},
// Power menu item defined in 'base-system-power-control.html'
signOut: {
query: [
{key:'tagName', value: 'paper-item'},
{key: 'textContent', value: 'Sign out'}
],
target: 'toolbar'
},
// The Home link in the sidebar. Defined in base-gallery.html.
home: {
query: [
{key: 'textContent',value: 'Home'},
{key: 'parentNode.parentNode.host.tagName', value: 'base-gallery-category'}
],
setters: [
{path: 'parentNode.parentNode.host.style', node: 'display', value: 'none'}
],
// The Home sidebar (displayed at server route /home). Defined in base-home.html.
subquery: {
query: [
{key: 'tagName', value: 'base-home'}
],
setters: [
{path: 'style', node: 'display', value: 'none'}
],
target: 'ownerDocument',
noPreemptMain: true
},
target: 'ownerDocument'
},
/* The following queries select individual items displayed in the home sidebar.
Select one or more of these as an alternative to hiding the entire home
sidebar (queries homeSidebar and homeLink). See computeSidebar(user) in base-home.html
If more than one of these queries is used, a single query will be made with base-home
as the initial query and the home items contained in the array at path
query[0].subquery.query. Thus for these individual queries there must be exactly one
search object in the query and subquery.query arrays. The queries are combined in
function getOptimizedHomeItemsQuery. See line 333 for handling of the carindality
explained above.
NB: This is currently not working properly. The hidden items will still appear
after clicking the "Home" link in the gallery, but will be hidden if you refresh the page.
*/
dashboard: {
query: [
{key: 'tagName', value: 'base-home'}
],
subquery: {
query: [
{key: 'textContent', value: 'Dashboard'}
],
setters: [
{path: 'parentNode.style', node: 'display', value: 'none'}
]
},
target: 'ownerDocument'
},
activity: {
query: [
{key: 'tagName', value: 'base-home'}
],
subquery: {
query: [
{key: 'textContent', value: 'Activity'}
],
setters: [
{path: 'parentNode.style', node: 'display', value: 'none'}
]
},
target: 'ownerDocument'
},
users: {
query: [
{key: 'tagName', value: 'base-home'}
],
subquery: {
query: [
{key: 'textContent', value: 'Users'}
],
setters: [
{path: 'parentNode.style', node: 'display', value: 'none'}
]
},
target: 'ownerDocument'
},
omgs: {
query: [
{key: 'tagName', value: 'base-home'}
],
subquery: {
query: [
{key: 'textContent', value: 'OMGs'}
],
setters: [
{path: 'parentNode.style', node: 'display', value: 'none'}
]
},
target: 'ownerDocument'
},
modules: {
query: [
{key: 'tagName', value: 'base-home'}
],
subquery: {
query: [
{key: 'textContent', value: 'Modules'}
],
setters: [
{path: 'parentNode.style', node: 'display', value: 'none'}
]
},
target: 'ownerDocument'
},
logs: {
query: [
{key: 'tagName', value: 'base-home'}
],
subquery: {
query: [
{key: 'textContent', value: 'Logs'}
],
setters: [
{path: 'parentNode.style', node: 'display', value: 'none'}
]
},
target: 'ownerDocument'
},
/**
* When hiding multile home sidebar items, there will be multiple queries with
* <base-home> as the target, each with a different subquery for the item to
* be hidden. This function combines them into a single query with <base-home>
* as the target and an array of subqueries for the items to be hidden.
*/
getOptimizedHomeItemsQuery: function(queries) {
const query = queries.shift();
return queries.reduce( (accum, val, idx, arr) => {
accum.subquery.query.push(val.subquery.query[0]);
return accum;
}, query);
}
};
const PREFIX = "bits-toolbar-customizer# ";
const REQUESTS = {
SET_CUSTOMIZATIONS: PREFIX + 'set customizations',
GET_CUSTOMIZATIONS: PREFIX + 'get customizations'
}
const EVENTS = {
UPDATE_CUSTOMIZATIONS: PREFIX + "update customizations"
}
/**
* The "show" and "hide" wrapper functions mutate the queries to be "show" or
* "hide" queries, respectively. We clone them to avoid mutating the base instance
* of each query.
*/
const cloneQuery = function(query) {
const query_copy = {query: [], target: query.target};
query.query.forEach( (search) => {
query_copy.query.push(Object.assign({}, search));
});
if (query.setters) {
query_copy.setters = [];
query.setters.forEach( (setter) => {
query_copy.setters.push(Object.assign({}, setter));
});
}
if (query.callers) {
query_copy.callers = [];
query.callers.forEach( (caller) => {
query_copy.callers.push(Object.assign({}, caller));
});
}
if (query.subquery) {
query_copy.subquery = {};
query_copy.subquery.query = [];
query.subquery.query.forEach( (search) => {
query_copy.subquery.query.push(Object.assign({}, search))
});
if (query.subquery.setters) {
query_copy.subquery.setters = [];
query.subquery.setters.forEach( (setter) => {
query_copy.subquery.setters.push(Object.assign({}, setter));
});
}
if (query.subquery.target) {
query_copy.subquery.target = query.subquery.target;
}
if (query.subquery.noPreemptMain) {
query_copy.subquery.noPreemptMain = query.subquery.noPreemptMain;
}
}
return query_copy;
}
/**
* A wrapper function which mutates a query to be a "show" query. "Show" queries
* enable us to immediately un-hide an item without refreshing the page.
*/
const show = function(query) {
query = cloneQuery(query);
if (query.subquery) {
if (query.subquery.setters) {
query.subquery.setters.forEach( (setter) => {
if (setter.node === 'display') {
setter.value = "inline";
}
});
} else {
query.subquery.setters = [{path: 'style', node: 'display', value: 'inline'}]
}
}
if (query.setters) {
query.setters.forEach( (setter) => {
if (setter.node === 'display') {
setter.value = 'inline';
}
})
} else {
query.setters = [{path: 'style', node: 'display', value: 'inline'}];
}
return query;
}
/**
* A wrapper function which mutates a query to be a "hide" query.
*/
const hide = function(query) {
query = cloneQuery(query);
if (query.subquery) {
if (query.subquery.setters) {
query.subquery.setters.forEach( (setter) => {
if (setter.node === 'display') {
setter.value = "none";
}
});
}
}
if (query.setters) {
query.setters.forEach( (setter) => {
if (setter.node === 'display') {
setter.value = 'none';
}
});
}
return query;
}
//Use from uncompiled browser or node.js context
if (typeof(module) != 'undefined') {
module.exports = {QUERIES, REQUESTS, EVENTS};
}
global.TOOLBAR_CUSTOMIZER = global.TOOLBAR_CUSTOMIZER || {};
global.TOOLBAR_CUSTOMIZER.QUERIES = QUERIES;
global.TOOLBAR_CUSTOMIZER.REQUESTS = REQUESTS;
global.TOOLBAR_CUSTOMIZER.EVENTS = EVENTS;
global.TOOLBAR_CUSTOMIZER.show = show;
global.TOOLBAR_CUSTOMIZER.hide = hide;
})(this);