Code Monkey home page Code Monkey logo

react-bug's Introduction

Possible Bug

This repo contains a simple demo app to show a bug happening in ie11 and edge with react-dom v16.9.0 due some change introduced, might be in scheduler v0.15.0.

Notes

  • The above mentioned problem appears in this new version, and just in mode production (development is ok) and in ie11 and edge (while chrome does not show any problem in both modes).

  • The app includes, first, a polyfill core-js/stable.

  • This demo app mimic a more complex application react-styleguidist whith a similar code construction.

  • Downgrading to v16.8.6 "resolves" the problem.

  • Webpack config constains devtool: 'eval' (other might work or not).

  • I have manually modified the scheduler.production.min.js to bind the methods used from windows (e.g., requestAnimationFrame, setTimeout) and this change works for ie/edge and any other.

// minified code for production

// from
v=window.setTimeout,w=window.clearTimeout,x=window.requestAnimationFrame,y=window.cancelAnimationFrame

// to
v=window.setTimeout.bind(window),w=window.clearTimeout.bind(window),x=window.requestAnimationFrame.bind(window),y=window.cancelAnimationFrame.bind(window)

Run

Start the dev-server in production mode and you should see works! printed on screen, if it is not the case, check the console for the error.

# dev server mode production
yarn start:production

# dev server mode development
yarn start:development

# build mode production
yarn build

react-bug's People

Contributors

artola avatar

Stargazers

Roman avatar

Watchers

 avatar

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.