import { $ } from 'mdui/jq' customElements.define('chat-video', class extends HTMLElement { constructor() { super() } connectedCallback() { this.style.display = 'block' const e = new DOMParser().parseFromString(``, 'text/html').body.firstChild as HTMLVideoElement e.style.width = "100%" e.style.height = "100%" e.style.borderRadius = "var(--mdui-shape-corner-medium)" e.src = $(this).attr('src') as string e.onclick = (e) => e.stopPropagation() this.appendChild(e) } })