Skip to content

Commit 9d38df7

Browse files
fixed #20
1 parent 1f54abf commit 9d38df7

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

src/index.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function moveChildren(source, target) {
3333
*/
3434
export function createElementClass(api) {
3535
const { css, exports, template } = api
36-
36+
const originalOnMounted = exports?.onMounted ?? (() => {})
3737
const tagImplementation = exports || {}
3838

3939
return class extends HTMLElement {
@@ -43,7 +43,7 @@ export function createElementClass(api) {
4343
// create the shadow DOM
4444
this.shadow = this.attachShadow({ mode: 'open' })
4545
this.componentFactory = component({
46-
exports: tagImplementation,
46+
exports: { ...tagImplementation, onMounted: undefined },
4747
template,
4848
})
4949

@@ -57,6 +57,12 @@ export function createElementClass(api) {
5757

5858
// move the tag root html into the shadow DOM
5959
moveChildren(this.component.root, this.shadow)
60+
61+
// call the onmounted only when the DOM has been moved
62+
originalOnMounted.apply(this.component, [
63+
this.component.props,
64+
this.component.state,
65+
])
6066
}
6167

6268
// on attribute changed

test.js

+17
Original file line numberDiff line numberDiff line change
@@ -153,4 +153,21 @@ describe('@riotjs/custom-elements', function () {
153153
'10px',
154154
)
155155
})
156+
157+
it('the shadow root is accessible on the onmounted event (issue https://github.com/riot/custom-elements/issues/20)', () => {
158+
const name = tmpTagName()
159+
define(name, {
160+
template: (t) => t('<p><!----></p>', []),
161+
exports: {
162+
onMounted() {
163+
console.log(this)
164+
this.root.shadowRoot.querySelector('p').textContent = 'foo'
165+
},
166+
},
167+
})
168+
169+
const el = document.createElement(name)
170+
document.body.appendChild(el)
171+
expect(el.shadowRoot.querySelector('p').textContent).to.be.equal('foo')
172+
})
156173
})

0 commit comments

Comments
 (0)