2.0
Juraj Nyíri 3 years ago
parent 97cafbdf7b
commit 3db57baba3

@ -19457,6 +19457,7 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
this.sort = document.createElement('paper-dropdown-menu'); this.sort = document.createElement('paper-dropdown-menu');
this.sortOrder = document.createElement('paper-dropdown-menu'); this.sortOrder = document.createElement('paper-dropdown-menu');
this.playTrailer = document.createElement('paper-dropdown-menu'); this.playTrailer = document.createElement('paper-dropdown-menu');
this.showExtras = document.createElement('paper-dropdown-menu');
this.devicesTabs = 0; this.devicesTabs = 0;
this.entities = []; this.entities = [];
this.sections = []; this.sections = [];
@ -19475,7 +19476,6 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
return event; return event;
}; };
this.valueUpdated = () => { this.valueUpdated = () => {
console.log('valueUpdated');
const originalConfig = lodash.clone(this.config); const originalConfig = lodash.clone(this.config);
this.config.protocol = this.protocol.value; this.config.protocol = this.protocol.value;
this.config.ip = this.ip.value; this.config.ip = this.ip.value;
@ -19514,10 +19514,14 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
else if (lodash.isEqual(this.playTrailer.value, 'Muted')) { else if (lodash.isEqual(this.playTrailer.value, 'Muted')) {
this.config.playTrailer = 'muted'; this.config.playTrailer = 'muted';
} }
if (lodash.isEqual(this.showExtras.value, 'Yes')) {
this.config.showExtras = true;
}
else if (lodash.isEqual(this.showExtras.value, 'No')) {
this.config.showExtras = false;
}
} }
if (!lodash.isEqual(this.config, originalConfig)) { if (!lodash.isEqual(this.config, originalConfig)) {
console.log(this.config);
console.log(originalConfig);
this.fireEvent(this, 'config-changed', { config: this.config }); this.fireEvent(this, 'config-changed', { config: this.config });
} }
}; };
@ -19608,7 +19612,6 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
this.appendChild(this.content); this.appendChild(this.content);
// todo: do verify better, do not query plex every time // todo: do verify better, do not query plex every time
this.sections = []; this.sections = [];
console.log(this.plexPort);
this.plex = new Plex(this.config.ip, this.plexPort, this.config.token, this.plexProtocol, this.config.sort); this.plex = new Plex(this.config.ip, this.plexPort, this.config.token, this.plexProtocol, this.config.sort);
this.sections = await this.plex.getSections(); this.sections = await this.plex.getSections();
this.plexValidSection.style.display = 'none'; this.plexValidSection.style.display = 'none';
@ -19695,6 +19698,21 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
} }
this.playTrailer.value = playTrailerValue; this.playTrailer.value = playTrailerValue;
this.plexValidSection.appendChild(this.playTrailer); this.plexValidSection.appendChild(this.playTrailer);
this.showExtras.innerHTML = '';
const showExtrasItems = document.createElement('paper-listbox');
showExtrasItems.appendChild(addDropdownItem('Yes'));
showExtrasItems.appendChild(addDropdownItem('No'));
showExtrasItems.slot = 'dropdown-content';
this.showExtras.label = 'Show Extras';
this.showExtras.appendChild(showExtrasItems);
this.showExtras.style.width = '100%';
this.showExtras.addEventListener('value-changed', this.valueUpdated);
let showExtrasValue = 'Yes';
if (!this.config.showExtras) {
showExtrasValue = 'No';
}
this.showExtras.value = showExtrasValue;
this.plexValidSection.appendChild(this.showExtras);
let hasUIConfig = true; let hasUIConfig = true;
if (lodash.isArray(this.config.entity)) { if (lodash.isArray(this.config.entity)) {
// eslint-disable-next-line consistent-return // eslint-disable-next-line consistent-return
@ -19774,6 +19792,14 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
else { else {
this.config.playTrailer = true; this.config.playTrailer = true;
} }
if (!lodash.isNil(config.showExtras)) {
console.log('A');
this.config.showExtras = config.showExtras;
}
else {
console.log('B');
this.config.showExtras = true;
}
this.render(); this.render();
}; };
this.configChanged = (newConfig) => { this.configChanged = (newConfig) => {

@ -36,6 +36,8 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
playTrailer: any = document.createElement('paper-dropdown-menu'); playTrailer: any = document.createElement('paper-dropdown-menu');
showExtras: any = document.createElement('paper-dropdown-menu');
devicesTabs = 0; devicesTabs = 0;
hassObj: HomeAssistant | undefined; hassObj: HomeAssistant | undefined;
@ -67,7 +69,6 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
}; };
valueUpdated = (): void => { valueUpdated = (): void => {
console.log('valueUpdated');
const originalConfig = _.clone(this.config); const originalConfig = _.clone(this.config);
this.config.protocol = this.protocol.value; this.config.protocol = this.protocol.value;
this.config.ip = this.ip.value; this.config.ip = this.ip.value;
@ -105,10 +106,13 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
} else if (_.isEqual(this.playTrailer.value, 'Muted')) { } else if (_.isEqual(this.playTrailer.value, 'Muted')) {
this.config.playTrailer = 'muted'; this.config.playTrailer = 'muted';
} }
if (_.isEqual(this.showExtras.value, 'Yes')) {
this.config.showExtras = true;
} else if (_.isEqual(this.showExtras.value, 'No')) {
this.config.showExtras = false;
}
} }
if (!_.isEqual(this.config, originalConfig)) { if (!_.isEqual(this.config, originalConfig)) {
console.log(this.config);
console.log(originalConfig);
this.fireEvent(this, 'config-changed', { config: this.config }); this.fireEvent(this, 'config-changed', { config: this.config });
} }
}; };
@ -211,7 +215,6 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
// todo: do verify better, do not query plex every time // todo: do verify better, do not query plex every time
this.sections = []; this.sections = [];
console.log(this.plexPort);
this.plex = new Plex(this.config.ip, this.plexPort, this.config.token, this.plexProtocol, this.config.sort); this.plex = new Plex(this.config.ip, this.plexPort, this.config.token, this.plexProtocol, this.config.sort);
this.sections = await this.plex.getSections(); this.sections = await this.plex.getSections();
@ -300,6 +303,22 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
this.playTrailer.value = playTrailerValue; this.playTrailer.value = playTrailerValue;
this.plexValidSection.appendChild(this.playTrailer); this.plexValidSection.appendChild(this.playTrailer);
this.showExtras.innerHTML = '';
const showExtrasItems: any = document.createElement('paper-listbox');
showExtrasItems.appendChild(addDropdownItem('Yes'));
showExtrasItems.appendChild(addDropdownItem('No'));
showExtrasItems.slot = 'dropdown-content';
this.showExtras.label = 'Show Extras';
this.showExtras.appendChild(showExtrasItems);
this.showExtras.style.width = '100%';
this.showExtras.addEventListener('value-changed', this.valueUpdated);
let showExtrasValue = 'Yes';
if (!this.config.showExtras) {
showExtrasValue = 'No';
}
this.showExtras.value = showExtrasValue;
this.plexValidSection.appendChild(this.showExtras);
let hasUIConfig = true; let hasUIConfig = true;
if (_.isArray(this.config.entity)) { if (_.isArray(this.config.entity)) {
// eslint-disable-next-line consistent-return // eslint-disable-next-line consistent-return
@ -385,6 +404,14 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
this.config.playTrailer = true; this.config.playTrailer = true;
} }
if (!_.isNil(config.showExtras)) {
console.log('A');
this.config.showExtras = config.showExtras;
} else {
console.log('B');
this.config.showExtras = true;
}
this.render(); this.render();
}; };

Loading…
Cancel
Save