File tree 2 files changed +25
-2
lines changed
2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ function moveChildren(source, target) {
33
33
*/
34
34
export function createElementClass ( api ) {
35
35
const { css, exports, template } = api
36
-
36
+ const originalOnMounted = exports ?. onMounted ?? ( ( ) => { } )
37
37
const tagImplementation = exports || { }
38
38
39
39
return class extends HTMLElement {
@@ -43,7 +43,7 @@ export function createElementClass(api) {
43
43
// create the shadow DOM
44
44
this . shadow = this . attachShadow ( { mode : 'open' } )
45
45
this . componentFactory = component ( {
46
- exports : tagImplementation ,
46
+ exports : { ... tagImplementation , onMounted : undefined } ,
47
47
template,
48
48
} )
49
49
@@ -57,6 +57,12 @@ export function createElementClass(api) {
57
57
58
58
// move the tag root html into the shadow DOM
59
59
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
+ ] )
60
66
}
61
67
62
68
// on attribute changed
Original file line number Diff line number Diff line change @@ -153,4 +153,21 @@ describe('@riotjs/custom-elements', function () {
153
153
'10px' ,
154
154
)
155
155
} )
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
+ } )
156
173
} )
You can’t perform that action at this time.
0 commit comments