Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

Commit 0a3ea6c

Browse files
author
Matthias Devlamynck
committed
Fix elm 0.18 init when used with shadow dom, Clean code
1 parent 2da25b7 commit 0a3ea6c

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

src/index.js

+3-8
Original file line numberDiff line numberDiff line change
@@ -71,19 +71,14 @@ const elmWebComponents = {
7171
const flags = mapFlags(props)
7272
context.flags = flags
7373

74-
var elmDiv = this;
75-
var parentDiv = this;
76-
77-
if (useShadowDom) {
78-
parentDiv = this.attachShadow({mode: 'open'});
79-
}
74+
const parentDiv = useShadowDom ? this.attachShadow({mode: 'open'}) : this;
8075

8176
if (elmVersion === '0.19') {
8277
/* a change in Elm 0.19 means that ElmComponent.init now replaces the node you give it
8378
* whereas in 0.18 it rendered into it. To avoid Elm therefore destroying our custom element
8479
* we create a div that we let Elm render into, and manually clear any pre-rendered contents.
8580
*/
86-
elmDiv = document.createElement('div')
81+
const elmDiv = document.createElement('div')
8782

8883
parentDiv.innerHTML = ''
8984
parentDiv.appendChild(elmDiv)
@@ -94,7 +89,7 @@ const elmWebComponents = {
9489
})
9590
setupPorts(elmElement.ports)
9691
} else if (elmVersion === '0.18') {
97-
const elmElement = ElmComponent.embed(elmDiv, flags)
92+
const elmElement = ElmComponent.embed(parentDiv, flags)
9893
setupPorts(elmElement.ports)
9994
}
10095
} catch (error) {

0 commit comments

Comments
 (0)