feat(runtime-dom): hmr for custom elements
This commit is contained in:
parent
a7fa4ac28a
commit
7a7e1d8e9f
@ -130,6 +130,7 @@ export function defineCustomElement(
|
|||||||
const propKeys = rawKeys.map(camelize)
|
const propKeys = rawKeys.map(camelize)
|
||||||
|
|
||||||
class VueCustomElement extends VueElement {
|
class VueCustomElement extends VueElement {
|
||||||
|
static def = Comp
|
||||||
static get observedAttributes() {
|
static get observedAttributes() {
|
||||||
return attrKeys
|
return attrKeys
|
||||||
}
|
}
|
||||||
@ -192,13 +193,7 @@ export class VueElement extends BaseClass {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
this.attachShadow({ mode: 'open' })
|
this.attachShadow({ mode: 'open' })
|
||||||
if (_def.styles) {
|
this._applyStyles()
|
||||||
_def.styles.forEach(css => {
|
|
||||||
const s = document.createElement('style')
|
|
||||||
s.textContent = css
|
|
||||||
this.shadowRoot!.appendChild(s)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -268,6 +263,16 @@ export class VueElement extends BaseClass {
|
|||||||
vnode.ce = instance => {
|
vnode.ce = instance => {
|
||||||
this._instance = instance
|
this._instance = instance
|
||||||
instance.isCE = true
|
instance.isCE = true
|
||||||
|
// HMR
|
||||||
|
if (__DEV__) {
|
||||||
|
instance.appContext.reload = () => {
|
||||||
|
render(this._createVNode(), this.shadowRoot!)
|
||||||
|
this.shadowRoot!.querySelectorAll('style').forEach(s => {
|
||||||
|
this.shadowRoot!.removeChild(s)
|
||||||
|
})
|
||||||
|
this._applyStyles()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// intercept emit
|
// intercept emit
|
||||||
instance.emit = (event: string, ...args: any[]) => {
|
instance.emit = (event: string, ...args: any[]) => {
|
||||||
@ -293,4 +298,14 @@ export class VueElement extends BaseClass {
|
|||||||
}
|
}
|
||||||
return vnode
|
return vnode
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private _applyStyles() {
|
||||||
|
if (this._def.styles) {
|
||||||
|
this._def.styles.forEach(css => {
|
||||||
|
const s = document.createElement('style')
|
||||||
|
s.textContent = css
|
||||||
|
this.shadowRoot!.appendChild(s)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user