Skip to content

Commit 192dcb6

Browse files
authoredNov 11, 2022
fix(custom-elements): ensure custom elements can inherit provides from ancestors (#5098)
fix #5096
1 parent 4798a9f commit 192dcb6

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed
 

‎packages/runtime-dom/__tests__/customElement.spec.ts

+46
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,52 @@ describe('defineCustomElement', () => {
337337
await nextTick()
338338
expect(consumer.shadowRoot!.innerHTML).toBe(`<div>changed!</div>`)
339339
})
340+
341+
test('inherited from ancestors', async () => {
342+
const fooA = ref('FooA!')
343+
const fooB = ref('FooB!')
344+
const ProviderA = defineCustomElement({
345+
provide: {
346+
fooA
347+
},
348+
render() {
349+
return h('provider-b')
350+
}
351+
})
352+
const ProviderB = defineCustomElement({
353+
provide: {
354+
fooB
355+
},
356+
render() {
357+
return h('my-multi-consumer')
358+
}
359+
})
360+
361+
const Consumer = defineCustomElement({
362+
setup() {
363+
const fooA = inject<Ref>('fooA')!
364+
const fooB = inject<Ref>('fooB')!
365+
return () => h('div', `${fooA.value} ${fooB.value}`)
366+
}
367+
})
368+
369+
customElements.define('provider-a', ProviderA)
370+
customElements.define('provider-b', ProviderB)
371+
customElements.define('my-multi-consumer', Consumer)
372+
container.innerHTML = `<provider-a><provider-a>`
373+
const providerA = container.childNodes[0] as VueElement
374+
const providerB = providerA.shadowRoot!.childNodes[0] as VueElement
375+
const consumer = providerB.shadowRoot!.childNodes[0] as VueElement
376+
377+
expect(consumer.shadowRoot!.innerHTML).toBe(`<div>FooA! FooB!</div>`)
378+
379+
fooA.value = 'changedA!'
380+
fooB.value = 'changedB!'
381+
await nextTick()
382+
expect(consumer.shadowRoot!.innerHTML).toBe(
383+
`<div>changedA! changedB!</div>`
384+
)
385+
})
340386
})
341387

342388
describe('styles', () => {

‎packages/runtime-dom/src/apiCustomElement.ts

+1
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,7 @@ export class VueElement extends BaseClass {
368368
) {
369369
if (parent instanceof VueElement) {
370370
instance.parent = parent._instance
371+
instance.provides = parent._instance!.provides
371372
break
372373
}
373374
}

0 commit comments

Comments
 (0)
Please sign in to comment.