Coder Social home page Coder Social logo

Comments (3)

mfreed7 avatar mfreed7 commented on July 21, 2024

Thanks for the issue and the example! It would seem that the reason for this issue is that React/Babel transforms <template shadowroot="open"> into this:

}, _react.default.createElement("template", {
    shadowroot: "open",
    __source: {
      fileName: _jsxFileName,
      lineNumber: 22
    }

And React's createElement will first create a <template> element, and then add a "shadowroot" attribute. And as-proposed, that just results in a "normal" template with a "shadowroot" attribute.

I think to support this use case, React will have to be made "declarative Shadow DOM aware" by parsing this more directly into native HTML as <template shadowroot="open">, or more likely by converting it to a call to attachShadow().

from declarative-shadow-dom.

steobrien avatar steobrien commented on July 21, 2024

Got it. Thanks for explaining. I’ll look into this a little more.

from declarative-shadow-dom.

steobrien avatar steobrien commented on July 21, 2024

Closing: this is as per the proposed spec. The part I missed:

The entire motivation for this feature is no-JS environments; therefore, to simplify the implementation, only parser-generated templates will create shadow roots, and adding the shadowroot attribute to a <template> after the fact will have no effect. To create a shadowroot using JS, the existing element.attachShadow() API should be used.

For posterity, I note that direct addition of HTML through JavaScript works (in the current implementation):

document.body.innerHTML = "<div><template shadowroot=open>displayed in shadow dom</template></div>"

from declarative-shadow-dom.

Related Issues (18)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.