#631 main menu image path update changes

This commit is contained in:
agriyadev5
2021-09-21 15:50:08 +05:30
parent f5cf062f21
commit 2f75dcb3e3
4 changed files with 25 additions and 4 deletions

View File

@@ -29,6 +29,18 @@ export class SeMenuItem extends HTMLElement {
this.$menuitem = this._shadowRoot.querySelector('elix-menu-item');
this.$svg = this.$menuitem.shadowRoot.querySelector('#checkmark');
this.$svg.setAttribute('style', 'display: none;');
this.editor = null;
}
/**
* @function init
* @param {any} name
* @returns {void}
*/
init (editor) {
this.editor = editor;
if (this.hasAttribute("src")) {
this.setAttribute('src', this.getAttribute("src"));
}
}
/**
* @function observedAttributes
@@ -46,11 +58,14 @@ export class SeMenuItem extends HTMLElement {
*/
attributeChangedCallback (name, oldValue, newValue) {
let shortcut = '';
if (oldValue === newValue) return;
if (oldValue === newValue && name !== 'src') return;
switch (name) {
case 'src':
this.$img.setAttribute('src', './images/'+newValue);
this.$img.style.display = 'inline-block';
if(this.editor !== null) {
const { imgPath } = this.editor.configObj.curConfig;
this.$img.style.display = 'inline-block';
this.$img.setAttribute('src', imgPath + '/' + newValue);
}
break;
case 'label':
shortcut = this.getAttribute('shortcut');