hide subtitles if they're not set

This commit is contained in:
lightling 2024-05-30 19:17:11 -04:00
parent 46b1732c24
commit 695f6a3391

View file

@ -91,22 +91,25 @@ export class LinkEmbed extends HTMLElement {
}
const _subtitle = ownerDocument.createElement('p')
if (!this.getAttribute('subtitle')) {
_subtitle.style.display = 'hidden'
}
this._observers.subtitle = {
element: _subtitle,
observer: (oldVal, newVal) => {
const { element } = this._observers.subtitle
if (!!newVal) {
element!.innerHTML = newVal
} else {
element!.style.display = 'hidden'
if (_subtitle.parentElement !== _textWrapper) {
_textWrapper.append(_subtitle)
}
} else if (_subtitle.parentElement === _textWrapper) {
_textWrapper.removeChild(_subtitle)
}
},
}
_textWrapper.append(
_title,
_subtitle,
)
_textWrapper.append(_title)
}
attributeChangedCallback(name: LinkEmbedAttributes, oldVal: any, newVal: any) {