Git Product home page Git Product logo

Comments (6)

gaearon avatar gaearon commented on August 17, 2024

Please post a complete project that reproduces the issue. React Transform Boilerplate doesn't have it, therefore it's not the expected behavior. It's hard to guess from a few lines of log. 😉

from react-transform-hmr.

gobadiah avatar gobadiah commented on August 17, 2024

Sorry about that, it's not a react-transform-hmr issue, it was a problem with redux-router and the way I implemented it.

My bad !

from react-transform-hmr.

bunkat avatar bunkat commented on August 17, 2024

@gobadiah What was the problem that you had? I'm running into the same thing where HMR says that modules have been updated but it doesn't actually trigger a rerender of the components.

from react-transform-hmr.

nhll avatar nhll commented on August 17, 2024

I'm having the same issue: Code changes trigger a rebuild and HMR, but the actual UI doesn't get updated. A JavaScript file containing the updated module is successfully loaded into my browser's source tree, but without any effect on the UI. See the following screenshot:

HMR Screenshot

The React Transform Boilerplate works properly for me, so there must be something wrong with my project. I copied all the relevant configuration from the boilerplate to my project.

I'm not using stateless functional components and I don't have any routing in place.

Any ideas?

from react-transform-hmr.

gaearon avatar gaearon commented on August 17, 2024

@nhll Give React Hot Loader 3 a try, maybe it will work better for you!

from react-transform-hmr.

bpb27 avatar bpb27 commented on August 17, 2024

Having this problem as well with react 16.2.0 and react-hot-loader 3.1.3. My temporary solution is to pass a random prop into my App component.

  const renderApp = () => {
    ReactDOM.render(
      <Provider store={store}>
        <App random={Math.random()}/>
      </Provider>,
      document.getElementById('app')
    );
  }

  if (module.hot) module.hot.accept('./app', renderApp);

App is a class (class App extends Component) connected to the Redux store (looking for a user), and renders a <Router>.

from react-transform-hmr.

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.