forked from maykar/compact-custom-header
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompact-custom-header-editor.js
868 lines (818 loc) · 23.1 KB
/
compact-custom-header-editor.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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
const LitElement = Object.getPrototypeOf(
customElements.get("ha-panel-lovelace")
);
const html = LitElement.prototype.html;
const fireEvent = (node, type, detail, options) => {
options = options || {};
detail = detail === null || detail === undefined ? {} : detail;
const event = new Event(type, {
bubbles: options.bubbles === undefined ? true : options.bubbles,
cancelable: Boolean(options.cancelable),
composed: options.composed === undefined ? true : options.composed
});
event.detail = detail;
node.dispatchEvent(event);
return event;
};
const buttonOptions = ["show", "hide", "clock", "overflow"];
const overflowOptions = ["show", "hide", "clock"];
const defaultConfig = {
header: true,
menu: "show",
notifications: "show",
voice: "show",
options: "show",
clock_format: 12,
clock_am_pm: true,
clock_date: false,
disable: false,
background_image: false,
main_config: false,
hide_tabs: [],
show_tabs: []
};
export class CompactCustomHeaderEditor extends LitElement {
setConfig(config) {
this._config = config;
this.requestUpdate();
}
static get properties() {
return {
_config: {}
};
}
firstUpdated() {
this.parentElement.parentElement.querySelector(
"hui-card-preview"
).style.display = "none";
this.parentElement.parentElement.parentElement
.parentElement.style.maxWidth = "650px";
}
render() {
const mwc_button = customElements.get("mwc-button") ? true : false;
const clear_cache_button = mwc_button
? html`
<mwc-button
style="margin-left:-15px"
class="toggle-button"
@click="${localStorage.removeItem("cchCache")}"
>Clear CCH Cache</mwc-button
>
`
: html`
<paper-button
class="toggle-button"
@click="${localStorage.removeItem("cchCache")}"
>Clear CCH Cache</paper-button
>
`;
return html`
${this.renderStyle()}
<cch-config-editor
.defaultConfig="${defaultConfig}"
.config="${this._config}"
@cch-config-changed="${this._configChanged}"
>
</cch-config-editor>
<h3>Exceptions:</h3>
${this._config.exceptions
? this._config.exceptions.map((exception, index) => {
return html`
<cch-exception-editor
.config="${this._config}"
.exception="${exception}"
.index="${index}"
@cch-exception-changed="${this._exceptionChanged}"
@cch-exception-delete="${this._exceptionDelete}"
>
</cch-exception-editor>
`;
})
: ""}
<br />
${mwc_button
? html`
<mwc-button raised @click="${this._addException}"
>Add Exception
</mwc-button>
`
: html`
<paper-button raised @click="${this._addException}"
>Add Exception
</paper-button>
`}
<br />
<br />
<hr />
<h3>Current User:</h3>
${this.hass.user.name}
<br />
<h3>Current User Agent:</h3>
${navigator.userAgent}
<br />
${!this.exception
? html`
<br />
${clear_cache_button}
`
: ""}
`;
}
_addException() {
let newExceptions;
if (this._config.exceptions) {
newExceptions = this._config.exceptions.slice(0);
newExceptions.push({
conditions: {},
config: {}
});
} else {
newExceptions = [
{
conditions: {},
config: {}
}
];
}
this._config = {
...this._config,
exceptions: newExceptions
};
fireEvent(this, "config-changed", {
config: this._config
});
}
_configChanged(ev) {
if (!this._config) {
return;
}
this._config = {
...this._config,
...ev.detail.config
};
fireEvent(this, "config-changed", {
config: this._config
});
}
_exceptionChanged(ev) {
if (!this._config) {
return;
}
const target = ev.target.index;
const newExceptions = this._config.exceptions.slice(0);
newExceptions[target] = ev.detail.exception;
this._config = {
...this._config,
exceptions: newExceptions
};
fireEvent(this, "config-changed", {
config: this._config
});
}
_exceptionDelete(ev) {
if (!this._config) {
return;
}
const target = ev.target;
const newExceptions = this._config.exceptions.slice(0);
newExceptions.splice(target.index, 1);
this._config = {
...this._config,
exceptions: newExceptions
};
fireEvent(this, "config-changed", {
config: this._config
});
this.requestUpdate();
}
renderStyle() {
return html`
<style>
h3,
h4 {
margin-bottom: 0;
text-decoration: underline;
}
paper-button {
margin: 0;
background-color: var(--primary-color);
color: var(--text-primary-color, #fff);
}
.toggle-button {
margin: 4px;
background-color: transparent;
color: var(--primary-color);
}
.user_agent {
display: block;
margin-left: auto;
margin-right: auto;
padding: 5px;
border: 0;
resize: none;
width: 100%;
}
</style>
`;
}
}
customElements.define(
"compact-custom-header-editor",
CompactCustomHeaderEditor
);
export class CchConfigEditor extends LitElement {
static get properties() {
return {
defaultConfig: {},
config: {},
exception: {}
};
}
get _hide_tabs() {
return this.config.hide_tabs || this.defaultConfig.hide_tabs || "";
}
get _show_tabs() {
return this.config.show_tabs || this.defaultConfig.show_tabs || "";
}
get _clock() {
return (
this._menu == "clock" ||
this._voice == "clock" ||
this._notifications == "clock" ||
this._options == "clock"
);
}
get _clock_format() {
return this.config.clock_format || this.defaultConfig.clock_format;
}
get _clock_am_pm() {
return this.config.clock_am_pm !== undefined
? this.config.clock_am_pm
: this.defaultConfig.clock_am_pm;
}
get _clock_date() {
return this.config.clock_date !== undefined
? this.config.clock_date
: this.defaultConfig.clock_date;
}
get _main_config() {
return this.config.main_config !== undefined
? this.config.main_config
: this.defaultConfig.main_config;
}
get _disable() {
return this.config.disable !== undefined
? this.config.disable
: this.defaultConfig.disable;
}
get _header() {
return this.config.header !== undefined
? this.config.header
: this.defaultConfig.header;
}
get _background_image() {
return this.config.background_image !== undefined
? this.config.background_image
: this.defaultConfig.background_image;
}
get _menu() {
return this.config.menu || this.defaultConfig.menu;
}
get _voice() {
return this.config.voice !== undefined
? this.config.voice
: this.defaultConfig.voice;
}
get _notifications() {
return this.config.notifications !== undefined
? this.config.notifications
: this.defaultConfig.notifications;
}
get _options() {
return this.config.options !== undefined
? this.config.options
: this.defaultConfig.options;
}
render() {
this.exception = this.exception !== undefined && this.exception !== false;
return html`
${!this.exception
? html`
<div class="warning">
<iron-icon icon="hass:alert"></iron-icon>
Hiding the header or options button will remove your ability to
edit from the UI.
</div>
`
: ""}
${!this.exception &&
!this._main_config
? html`
<div class="alert">
<iron-icon icon="hass:alert"></iron-icon>
This card is not the main configuration card. Edits made here will
not have an effect.
</div>
`
: ""}
${this.renderStyle()}
<div class="side-by-side">
<paper-toggle-button
class="${this.exception && this.config.disable === undefined
? "inherited"
: ""}"
?checked="${this._disable !== false}"
.configValue="${"disable"}"
@change="${this._valueChanged}"
>
Disable CCH
</paper-toggle-button>
<paper-toggle-button
class="${this.exception && this.config.header === undefined
? "inherited"
: ""}"
?checked="${this._header !== false}"
.configValue="${"header"}"
@change="${this._valueChanged}"
>
Display Header
</paper-toggle-button>
${!this.exception
? html`
<paper-toggle-button
?checked="${this._main_config !== false}"
.configValue="${"main_config"}"
@change="${this._valueChanged}"
>
Main Config
</paper-toggle-button>
<paper-toggle-button
?checked="${this._background_image !== false}"
.configValue="${"background_image"}"
@change="${this._valueChanged}"
>
Background Fix
</paper-toggle-button>
`
: ""}
</div>
<h4>Button Visibility:</h4>
<div class="buttons side-by-side">
<div
class="${this.exception && this.config.menu === undefined
? "inherited"
: ""}"
>
<iron-icon icon="hass:menu"></iron-icon>
<paper-dropdown-menu
@value-changed="${this._valueChanged}"
label="Menu Button:"
.configValue="${"menu"}"
>
<paper-listbox
slot="dropdown-content"
.selected="${buttonOptions.indexOf(this._menu)}"
>
${buttonOptions.map(option => {
return html`
<paper-item>${option}</paper-item>
`;
})}
</paper-listbox>
</paper-dropdown-menu>
</div>
<div
class="${this.exception && this.config.notifications === undefined
? "inherited"
: ""}"
>
<iron-icon icon="hass:bell"></iron-icon>
<paper-dropdown-menu
@value-changed="${this._valueChanged}"
label="Notifications Button:"
.configValue="${"notifications"}"
>
<paper-listbox
slot="dropdown-content"
.selected="${buttonOptions.indexOf(this._notifications)}"
>
${buttonOptions.map(option => {
return html`
<paper-item>${option}</paper-item>
`;
})}
</paper-listbox>
</paper-dropdown-menu>
</div>
<div
class="${this.exception && this.config.voice === undefined
? "inherited"
: ""}"
>
<iron-icon icon="hass:microphone"></iron-icon>
<paper-dropdown-menu
@value-changed="${this._valueChanged}"
label="Voice Button:"
.configValue="${"voice"}"
>
<paper-listbox
slot="dropdown-content"
.selected="${buttonOptions.indexOf(this._voice)}"
>
${buttonOptions.map(option => {
return html`
<paper-item>${option}</paper-item>
`;
})}
</paper-listbox>
</paper-dropdown-menu>
</div>
<div
class="${this.exception && this.config.options === undefined
? "inherited"
: ""}"
>
<iron-icon icon="hass:dots-vertical"></iron-icon>
<paper-dropdown-menu
@value-changed="${this._valueChanged}"
label="Options Button:"
.configValue="${"options"}"
>
<paper-listbox
slot="dropdown-content"
.selected="${overflowOptions.indexOf(this._options)}"
>
${overflowOptions.map(option => {
return html`
<paper-item>${option}</paper-item>
`;
})}
</paper-listbox>
</paper-dropdown-menu>
</div>
</div>
${this._clock
? html`
<h4>Clock Options:</h4>
<div class="side-by-side">
<paper-dropdown-menu
class="${this.exception &&
this.config.clock_format === undefined
? "inherited"
: ""}"
label="Clock format"
@value-changed="${this._valueChanged}"
.configValue="${"clock_format"}"
>
<paper-listbox
slot="dropdown-content"
.selected="${this._clock_format === "24" ? 1 : 0}"
>
<paper-item>12</paper-item>
<paper-item>24</paper-item>
</paper-listbox>
</paper-dropdown-menu>
<div class="side-by-side">
<paper-toggle-button
class="${this.exception && this.config.clock_am_pm === undefined
? "inherited"
: ""}"
?checked="${this._clock_am_pm !== false}"
.configValue="${"clock_am_pm"}"
@change="${this._valueChanged}"
>
AM / PM</paper-toggle-button
>
<paper-toggle-button
class="${this.exception && this.config.clock_date === undefined
? "inherited"
: ""}"
?checked="${this._clock_date !== false}"
.configValue="${"clock_date"}"
@change="${this._valueChanged}"
>
Date</paper-toggle-button
>
</div>
</div>
`
: ""}
<h4>Tab Visibility:</h4>
<paper-dropdown-menu id="tabs" @value-changed="${this._tabVisibility}">
<paper-listbox
slot="dropdown-content"
.selected="${this._show_tabs.length > 0 ? "1" : "0"}"
>
<paper-item>Hide Tabs</paper-item>
<paper-item>Show Tabs</paper-item>
</paper-listbox>
</paper-dropdown-menu>
<div
id="show"
style="display:${this._show_tabs.length > 0 ? "initial" : "none"}"
>
<paper-input
class="${this.exception && this.config.show_tabs === undefined
? "inherited"
: ""}"
label="Comma-separated list of tab numbers to show:"
.value="${this._show_tabs}"
.configValue="${"show_tabs"}"
@value-changed="${this._valueChanged}"
>
</paper-input>
</div>
<div
id="hide"
style="display:${this._show_tabs.length > 0 ? "none" : "initial"}"
>
<paper-input
class="${this.exception && this.config.hide_tabs === undefined
? "inherited"
: ""}"
label="Comma-separated list of tab numbers to hide:"
.value="${this._hide_tabs}"
.configValue="${"hide_tabs"}"
@value-changed="${this._valueChanged}"
>
</paper-input>
</div>
`;
}
_tabVisibility() {
let show = this.shadowRoot.querySelector('[id="show"]');
let hide = this.shadowRoot.querySelector('[id="hide"]');
if (this.shadowRoot.querySelector('[id="tabs"]').value == "Hide Tabs") {
show.style.display = "none";
hide.style.display = "initial";
} else {
hide.style.display = "none";
show.style.display = "initial";
}
}
_valueChanged(ev) {
if (!this.config) {
return;
}
const target = ev.target;
if (this[`_${target.configValue}`] === target.value) {
return;
}
if (target.configValue) {
if (target.value === "") {
delete this.config[target.configValue];
} else {
this.config = {
...this.config,
[target.configValue]:
target.checked !== undefined ? target.checked : target.value
};
}
}
fireEvent(this, "cch-config-changed", {
config: this.config
});
}
renderStyle() {
return html`
<style>
h3,
h4 {
margin-bottom: 0;
text-decoration: underline;
}
paper-toggle-button {
padding-top: 16px;
}
iron-icon {
padding-right: 5px;
}
iron-input {
max-width: 115px;
}
.inherited {
opacity: 0.4;
}
.inherited:hover {
opacity: 1;
}
.side-by-side {
display: flex;
flex-wrap: wrap;
}
.side-by-side > * {
flex: 1;
padding-right: 4px;
flex-basis: 33%;
}
.buttons > div {
display: flex;
align-items: center;
}
.buttons > div paper-dropdown-menu {
flex-grow: 1;
}
.buttons > div iron-icon {
padding-right: 15px;
padding-top: 20px;
margin-left: -3px;
}
.buttons > div:nth-of-type(2n) iron-icon {
padding-left: 20px;
}
.warning {
background-color: #455a64;
padding: 10px;
color: #ffcd4c;
border-radius: 5px;
}
.alert {
margin-top: 5px;
background-color: #eb5f59;
padding: 10px;
color: #fff;
border-radius: 5px;
}
</style>
`;
}
}
customElements.define("cch-config-editor", CchConfigEditor);
export class CchExceptionEditor extends LitElement {
static get properties() {
return {
config: {},
exception: {},
_closed: {}
};
}
constructor() {
super();
this._closed = true;
}
render() {
if (!this.exception) {
return html``;
}
return html`
${this.renderStyle()}
<custom-style>
<style is="custom-style">
.card-header {
margin-top: -5px;
@apply --paper-font-headline;
}
.card-header paper-icon-button {
margin-top: -5px;
float: right;
}
</style>
</custom-style>
<paper-card ?closed=${this._closed}>
<div class="card-content">
<div class="card-header">
${Object.values(this.exception.conditions).join(", ") ||
"New Exception"}
<paper-icon-button
icon="${this._closed ? "mdi:chevron-down" : "mdi:chevron-up"}"
@click="${this._toggleCard}"
>
</paper-icon-button>
<paper-icon-button
?hidden=${this._closed}
icon="mdi:delete"
@click="${this._deleteException}"
>
</paper-icon-button>
</div>
<h4>Conditions</h4>
<cch-conditions-editor
.conditions="${this.exception.conditions}"
@cch-conditions-changed="${this._conditionsChanged}"
>
</cch-conditions-editor>
<h4>Config</h4>
<cch-config-editor
exception
.defaultConfig="${{ ...defaultConfig, ...this.config }}"
.config="${this.exception.config}"
@cch-config-changed="${this._configChanged}"
>
</cch-config-editor>
</div>
</paper-card>
`;
}
renderStyle() {
return html`
<style>
[closed] {
overflow: hidden;
height: 52px;
}
paper-card {
margin-top: 10px;
width: 100%;
transition: all 0.5s ease;
}
</style>
`;
}
_toggleCard() {
this._closed = !this._closed;
fireEvent(this, "iron-resize");
}
_deleteException() {
fireEvent(this, "cch-exception-delete");
}
_conditionsChanged(ev) {
if (!this.exception) {
return;
}
const newException = {
...this.exception,
conditions: ev.detail.conditions
};
fireEvent(this, "cch-exception-changed", {
exception: newException
});
}
_configChanged(ev) {
ev.stopPropagation();
if (!this.exception) {
return;
}
const newException = { ...this.exception, config: ev.detail.config };
fireEvent(this, "cch-exception-changed", {
exception: newException
});
}
}
customElements.define("cch-exception-editor", CchExceptionEditor);
export class CchConditionsEditor extends LitElement {
static get properties() {
return {
conditions: {}
};
}
get _user() {
return this.conditions.user || "";
}
get _user_agent() {
return this.conditions.user_agent || "";
}
get _media_query() {
return this.conditions.media_query || "";
}
render() {
if (!this.conditions) {
return html``;
}
return html`
<paper-input
label="User"
.value="${this._user}"
.configValue="${"user"}"
@value-changed="${this._valueChanged}"
>
</paper-input>
<paper-input
label="User agent"
.value="${this._user_agent}"
.configValue="${"user_agent"}"
@value-changed="${this._valueChanged}"
>
</paper-input>
<paper-input
label="Media query"
.value="${this._media_query}"
.configValue="${"media_query"}"
@value-changed="${this._valueChanged}"
>
</paper-input>
`;
}
_valueChanged(ev) {
if (!this.conditions) {
return;
}
const target = ev.target;
if (this[`_${target.configValue}`] === target.value) {
return;
}
if (target.configValue) {
if (target.value === "") {
delete this.conditions[target.configValue];
} else {
this.conditions = {
...this.conditions,
[target.configValue]: target.value
};
}
}
fireEvent(this, "cch-conditions-changed", {
conditions: this.conditions
});
}
}
customElements.define("cch-conditions-editor", CchConditionsEditor);