Re: Chrome Extension Message Passing API no longer working in GWT 2.8...?

2017-05-01 Thread TimOnGmail
So it appears that this is caused by JSNI methods somehow being morphed when the GWT app is compiled. I don't know how, but I do know that calls to Chrome proprietary APIs aren't working correctly. I modified my code to do the following: Java method calls JSNI method JSNI method calls raw Jav

Re: Chrome Extension Message Passing API no longer working in GWT 2.8...?

2017-05-01 Thread TimOnGmail
So it appears that this is caused by JSNI methods somehow being morphed when the GWT app is compiled. I don't know how, but I do know that calls to Chrome proprietary APIs aren't working correctly. I modified my code to do the following: Java method calls JSNI method JSNI method calls raw Jav

Re: GWTReact Release and Roadmap

2017-05-01 Thread Paul Stockley
Yes, I think you would need a good immutable collection library to make Redux work well from Java. In our application we are just using React State. This works fine because we are replacing relatively small isolated parts of our application currently (1 or 2 connected screens at the most). Even

Re: GWTReact Release and Roadmap

2017-05-01 Thread Ivan Markov
Side question: I can imagine that the lack of object spread probably makes Redux a bit annoying to use from Java. Yet, if you are not using neither Redux nor MobX, how are you managing your state? On Monday, May 1, 2017 at 3:48:51 PM UTC+3, Paul Stockley wrote: > > I agree both Redux and MobX a

Re: GWTReact Release and Roadmap

2017-05-01 Thread Paul Stockley
I agree both Redux and MobX are both pretty stable. The decision was more a reflection on the current state of the GTWReact projects. I would say both are really proof of concepts at this stage. Redux in particular would really need interfaces building to the common middleware to be really usef