Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

React 16 #439

Closed
wub opened this issue Sep 27, 2017 · 11 comments
Closed

React 16 #439

wub opened this issue Sep 27, 2017 · 11 comments

Comments

@wub
Copy link

wub commented Sep 27, 2017

Now that React 16's out, will there be any way to use it with React.NET?

I've tried loading it myself, with SetLoadReact(false) & AddScriptWithoutTransform("react+react-dom"), but it says that React isn't exposed properly (so I can't begin to debug issues).

Is there some way to tell React.NET which major version of React to work with? Or will the project only ever support one at a time? I understand the maintenance and complexity implications! Cheers.

@Daniel15
Copy link
Member

I've tried loading it myself, with SetLoadReact(false) & AddScriptWithoutTransform("react+react-dom"), but it says that React isn't exposed properly (so I can't begin to debug issues).

When using your own version of React, it expects React, ReactDOM and ReactDOMServer globals, or global.React, global.ReactDOM and global.ReactDOMServer to be set correctly:

if (
typeof React !== 'undefined' &&
typeof ReactDOM !== 'undefined' &&
typeof ReactDOMServer !== 'undefined'
) {
// React is already a global, woohoo
return true;
}
if (global.React && global.ReactDOM && global.ReactDOMServer) {
React = global.React;
ReactDOM = global.ReactDOM;
ReactDOMServer = global.ReactDOMServer;
return true;
}
// :'(
return false;

var result = engine.CallFunction<bool>("ReactNET_initReact");
if (!result)
{
throw new ReactNotInitialisedException(
"React has not been loaded correctly. Please expose your version of React as global " +
"variables named 'React', 'ReactDOM' and 'ReactDOMServer', or enable the " +
"'LoadReact' configuration option to use the built-in version of React. See " +
"http://reactjs.net/guides/byo-react.html for more information."
);
}

You can see how ReactJS.NET builds the built-in React version:

https://github.com/reactjs/React.NET/blob/5d1bd9d73d32d07f42abbc0060f90cb38b988070/src/React.Core/gulpfile.js

https://github.com/reactjs/React.NET/blob/5d1bd9d73d32d07f42abbc0060f90cb38b988070/src/React.Core/Resources/react.js

Is there some way to tell React.NET which major version of React to work with? Or will the project only ever support one at a time?

Not supported at the moment, but it's a good idea. I don't have time to build it myself, but I'd be happy to review a pull request adding this functionality.

@dustinsoftware
Copy link
Member

Hey @wub you can use React.NET with React 16 by bundling it ahead of time along with your components, and then passing the component bundle to the engine. As long as the globals are exposed correctly, it should just work.

React.NET does not currently handle componentDidCatch very well.. going to investigate if that can be easily added. Right now if a component throws, the server render gives up immediately.

@wub
Copy link
Author

wub commented Oct 8, 2017

Thanks @dustinsoftware and @Daniel15 - it works!

@wub wub closed this as completed Oct 8, 2017
@Daniel15 Daniel15 reopened this Oct 8, 2017
@Daniel15
Copy link
Member

Daniel15 commented Oct 8, 2017

Let's keep this issue open as ReactJS.NET still needs to be updated to ship with React 16 😃

@svashisth07
Copy link

@dustinsoftware , I want to use React 16 error boundary feature to log javascript error but it's not working with ReactJS.NET. do you have any fix?

@dustinsoftware
Copy link
Member

dustinsoftware commented Nov 4, 2017 via email

@svashisth07
Copy link

svashisth07 commented Nov 6, 2017

@dustinsoftware Thanks. 👍

Awaiting your PR merge :)

@Daniel15
Copy link
Member

Daniel15 commented Nov 6, 2017

I didn't get around to publishing a new version of ReactJS.NET this weekend (had too many other things to get done) but I'll try to release one tomorrow night. In the meantime, you can get a build from the build server. Instructions are on the site :)

@wub
Copy link
Author

wub commented Nov 13, 2017

#445 🍾

Thanks @dustinsoftware and @Daniel15.

@wub wub closed this as completed Nov 13, 2017
@Daniel15
Copy link
Member

Daniel15 commented Nov 13, 2017

@dustinsoftware did all the work, I just pushed the NuGet packages 😛 Thanks Dustin!

@dustinsoftware
Copy link
Member

dustinsoftware commented Dec 19, 2017 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants