GithubHelp home page GithubHelp logo

Comments (4)

markerikson avatar markerikson commented on April 20, 2024 1

That's the actual point here, yes.

The React DevTools add window.__REACT_DEVTOOLS_GLOBAL_HOOK__ to the main window, but not to iframes.

So, you have to copy that reference into each iframe in order for the DevTools to talk to React inside that iframe.

from react.

markerikson avatar markerikson commented on April 20, 2024

See #18945 for the main discussion around iframe handling.

Most likely you'll need to do something like this:

if (window.parent) {
  window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__REACT_DEVTOOLS_GLOBAL_HOOK__;
}

from react.

IDrissAitHafid avatar IDrissAitHafid commented on April 20, 2024

Thanks for sharing @markerikson. I didn't knew there was an already open discussion about it, I should close this issue then 😅

Actually, for me it's the other way around, something like:

const iframeWindow = ocument.getElementById("iframe").contentWindow;
if(iframeWindow){
  window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = iframeWindow.__REACT_DEVTOOLS_GLOBAL_HOOK__ 
}

but iframeWindow.__REACT_DEVTOOLS_GLOBAL_HOOK__ is undefined so I guess the React Devtools doesn't inject __REACT_DEVTOOLS_GLOBAL_HOOK__ into iframes.

from react.

IDrissAitHafid avatar IDrissAitHafid commented on April 20, 2024

Ah I see!

I just tested it but in my case the Iframe runs on different domains (I inject the Iframe from an extension) I get a cross-origin error.

Thanks for your help!

from react.

Related Issues (20)

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.