Fix React to work with QtWebKit

We learned that the underlying issue was related to react-dom's 
SyntheticEvent.augmentClass function being undefined.

This seems to be caused by attempted property assignment after the 
SyntheticEvent had been replaced by a Proxy of itself. This works fine in 
Chromium et al, but QtWebKit doesn't deal with Proxy Event objects well.
Moving the augmentClass definition and assignment up above the Proxy stuff 
resolves the issue in a PR to React: 
https://github.com/facebook/react/pull/10011

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=5cfa22cf23d039c5487055248cf5df0fd9168fc2
Author: George Gelashvili <ggelashv...@pivotal.io>

Modified Files
--------------
.../vendor/react-dom/dist/react-dom-server.js      | 45 +++++++++++----------
.../vendor/react-dom/dist/react-dom-server.min.js  | 16 +-------
.../static/vendor/react-dom/dist/react-dom.js      | 45 +++++++++++----------
.../static/vendor/react-dom/dist/react-dom.min.js  | 16 +-------
.../static/vendor/react-dom/lib/SyntheticEvent.js  | 47 +++++++++++-----------
web/yarn.lock                                      | 14 ++-----
6 files changed, 75 insertions(+), 108 deletions(-)

Reply via email to