-
Notifications
You must be signed in to change notification settings - Fork 8
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
Element scope when $compileProvider.debugInfoEnabled(false);
#1
Comments
Hi! This one is not easy... There are multiple ways it could be solved, and they all have issues. These are the ones I've thought about:
I've had some success with a composite approach:
I need to think about this a little more before releasing this, to make sure this is not too dirty and because it needs serious documentation; for anybody who would not use react-angular with ngReact, obviously, but also for the others, as the little hack requires that ngReact is loaded before react-angular. It may also be nice to have a sensible default, such as using the root scope when the scope is not found. I also want to somehow warn the users of the danger before they switch to production, because all these magical hacks will cause some serious headaches if anything goes wrong. I've pushed the current state of what I have, with debug info disabled in testing and all tests green. Can you check and see if it looks OK for you ? |
@fmauquie can you push your changes? :) I currently have the same issue and this will help me a lot |
Thanks @fmauquie for getting back to me! I currently don't use @Kepro I'm not sure which changes you are referring to exactly! |
sorry, updated my comment |
@fmauquie but can you push to npm? if I use your commit in package.json then there is missing lib folder and there is only sources... edited: omg sorry two times wrong person :D |
That is @fmauquie 's commit, and you only talked about pushing (not npm), so I was pointing you in the right direction. 😉 |
@Kepro I'll do this ASAP, I just need to add a little thingy to help @mathieumg :) @mathieumg are you using ReactDOM.render() directly in a directive linking function then ? I think I can help you, I'll add a HOC to provide the scope as the component context (this may be useful to others anyways). |
Yep, it's what I'm doing! Thanks! :) |
I just pushed (and released to NPM @Kepro :) ) version 0.3.0 that should fix this issue. It ships with automatic handling for I also updated the doc. @Kepro , @mathieumg can you test this new version and tell me if this works for you? |
@fmauquie This line errors since I don't load React through Angular: react-angular/src/angularTemplate.js Line 18 in 1afdb9a
You will also need to change https://github.com/fmauquie/react-angular/blob/1afdb9a612f2760b9a328cbdf3b01008293ec23b/src/index.js if we want to import different functions/classes directly from the module. I commented out the first problem, included the file directly for the second problem, used the |
Right, and right... Published v0.3.1 to patch these. |
I still getting with 0.3.1
|
@Kepro I need more information in order to help you: are you using If you are not using |
yep ngReact and it's loaded in core of app in angular template i have
and then in PropertiesListItem -> PropertiesEditor -> ... -> ComponentWithReact and there is
|
I think you're loading ngReact after react-angular in the loading order in your app. You can try to change this (make sure your files are loaded in the correct order, or if you're using Webpack make sure the Do you have/make an example repo that shows the bug so I can take a look ? |
I'll add a warning in development mode if I can detect an inconsistency in the module loading order (when I get time 😄) |
we are using webpack, I tried to add import react-angular before ngreact but same result |
@Kepro You need to swap these two lines, the order should be the opposite.
…On Thu, Jul 13, 2017, 6:56 AM Kepro ***@***.***> wrote:
we are using webpack, I tried to add import react-angular before ngreact
but same result
import 'react-angular';
import 'ngreact';
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABjK7HiGuwgW1F8VL2zkMdswmqPBnHSLks5sNiIcgaJpZM4OPnoy>
.
|
same result after i swap it |
The idea is that you should be able to use your Angular code as if there was no React in between. In particular, if you're in a route manages by Using I'm going to change the way I define the patches on |
I released a new version that is not subject to loading order. @Kepro can you try? You need to add a module dependency to your Angular app, It is explained at the beginning of the docs. If it does not work, I'll also add an option to use (explicitly) the root scope, and I'll be interested in a demo repo 🤔 @mathieumg this version should not change anything for you if you use the HOC. Did you get a chance to try? |
@fmauquie Yeah, see my theory in the last paragraph of #1 (comment) Thanks for being super responsive in this matter, by the way! 😁 👍 |
@mathieumg you should try using the HOC, it will work better with a custom ReactDOM call. The scope should not be different, at least not from what I read in the AngularJS code, which does exactly what No problem, I like it when people use my stuff ! |
Hi @Kepro, Sorry for the long time without answer, I do not have a lot of time currently. This si very strange that you get this error. It means that current tests are inadequate (since they show no problem), could you try to provide a test in the test suite that shows it? I'm thinking about completely removing automatic parent scope finding, and forcing users to use the HOC, as it would normalize usage and prevent any error in production (since errors would fire in development). With appropriate documentation and examples, this should be very easy to use. Also, I could use this HOC to provide React -> Angular -> React communication (see comments on your PR). What do you think about this approach ? |
Hi!
First, thanks for the nice project! It occurred to me that when setting
$compileProvider.debugInfoEnabled(false);
(such as when in production), this module breaks because it relies on the fact that DOM elements have a.scope
property attached to them. I'm currently investigating workarounds (see angular/angular.js#9515), posting here because you may have a better idea on how to do this! :)The text was updated successfully, but these errors were encountered: