-
Notifications
You must be signed in to change notification settings - Fork 12k
AOT broken when using loadChildren and a function : Replace modules import by modules factories ? #4192
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
Comments
I have been involved in attempts to get something like this working. The core team guys suggest it's a tough nut to crack. It's something I imagine the compiler-cli should be doing, changing the output of the compilation, it is compilation (translation) when you think about it. For now, the workaround is to change the Like:
Check the https://github.com/meligy/routing-angular-cli Specifically: |
@hansl can you weigh in? |
@Meligy I never thought that keeping an unused import would work for AOT ! I just tried what you proposed in my (large) app and it worked on the first try 👍 ! Thanks a lot, this is a super news while the discussion is going on 😄 ! |
I'm attempting to use AOT with my app, which is quite large and lazy loads many modules. I'm following the official AOT cookbook by using The issue is that At runtime, Angular correctly requests the Factory for the module instead of the Module itself, but the module doesn't exist so the routing fails. Is this the expected behavior of |
@noamichael AOT and lazy loading should work just fine with the build system coming builtin with the CLI. This issue is about non-lazy-loading, and as I mentioned in previous comment, a workaround is to trick AoT to think that it's lazy-loading the module (because again, lazy-loading does work), while also having a dummy use of the module so that it still gets included in the main bundle. |
@Meligy I was having this issue as well and with the recommended workaround of yours my app started to work again. Could you kindly explain if we still get the benefits of lazy loading when using this workaround? How is my app being optimised when using update |
@borislemke Because this way your feature module doesn't need to know what path is being used to access it. For example, suppose you have a const routes: Routes = [
{
path: 'contact',
children: [
{ path: '', component: ContactComponent },
{ Path: ':id', component: ContactDetailComponent }
]
}
];
export const routing = RouterModule.forChild(routes); This way your contact module itself defines that the URL is const routes: Routes = [
{ path: '', component: ContactComponent },
{ Path: ':id', component: ContactDetailComponent }
];
export const routing = RouterModule.forChild(routes); And in your app routing, you then load the contact module as child export const routes: Routes = [
{ path: 'contact': loadChildren: () => ContactModule }
];
export const routing = RouterModule.forChild(routes); This way, you contact module itself defines the routes where the contact and contact details are accessible, but your app itself defines what part comes in front of that. You contact module doesn't need to know whether it is |
@SamVerschueren okay so based on your explanation, this has no performance benefit beside that the |
Yes, exactly! |
so, any updates here? Does this means there is no way to use AOT with router lazy loading(loadChildren) together? |
This has nothing to do with lazy loading. From @Meligy
|
@steve3d AOT works well with lazy loading. The problem is when you want to load a module like that :
|
Hello, |
I don't think we'll be able to correctly analyze in a static way what such a function would return. |
why the issue was closed? workaround from @Meligy is not working now. does anyone know how to use function with loadChildren and AOT (official way)? |
@robounohito , use |
@steve3d it's not an answer i'm using ngtools/webpack and eagerly loaded modules
won't compile with AOT i can import module.ngfactory only for AOT and so on, but it's a mess and should be done by plugin |
To add to this conversation, a problem that I'm currently working on directly ties into this thread, and I can't find a solution that works with AOT. I have an application that fetches a configuration JSON from the backend at runtime, and uses that configuration to determine how to sort feature modules into a route hierarchy. I have a demo app here: https://github.com/colinjlacy/angular-dynamic-module-loading. The problem is that I'm running analysis on module routes to add @filipesilva's comment above is a bit disheartening:
So I want to follow up to be completely clear. Is there any way to run analysis functions on route declarations before sending them to EDIT: I'm following this guy as a reference: https://github.com/rangle/angular-2-aot-sandbox#func-in-routes-top and I'm not sure what the difference is. Even with exported functions defined in the same file it won't work. |
Sorry what's the solution? |
This reverts commit caa0752. Indeed, it's there are some problems with AOT and loadchildren. See this issue for more: angular/angular-cli#4192
I think what @SamVerschueren mentioned is fully justified the need of loadChildren, and of course it should be AOT-compatible. An eager loaded routed feature module must be imported by another module so that the compiler learns about its components. In this way, feature-specified routes should define up to root path. However, the feature module routing shouldn't have knowledge from the 'upper-stream', which can
Please kindly reopen this issue. |
Any news on this ? I can switch to lazy loading by path but the my startup performance will decrease. Would be very cool if you can fix this. |
Also curious of status. Having to disable AoT in nativescript builds with lazy-loading children. Would be nice to get the performance boost of AoT in mobile app. |
Error: Runtime compiler is not loaded I still see, this is broken when you run the app with aot enabled @filipesilva any idea if this would be supported anytime sooner ? |
Function with loadChildren is still not working with AOT as of 9/6/2018, CLI version 6.1.1 - have to switch to lazy loaded path to enable AOT and bypass error of 'Runtime compiler is not loaded'. |
Angular 7.2 still actual, no way to use AOT with |
I'm wondering WHY do guys develop/add new features while having such an |
The CLI with What the heck ? I undo the changes to use the string syntax and to make it works once again. |
@C0ZEN lazy loading with loadChildren and functions is working for me in 8:
|
but this doesn't |
@devbenzy Yeah, actually I was premature, the only syntax that's supported is exactly what I had in the first part of my post, (single quotes only, no template literals), see this conversation here: |
Thanks for the help @chriszrc. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
When I try to build my app with AOT since I'm using
loadChildren
with a function it breaks (not at compilation but when running the app in the browser, complaining that r.create is not a function).According to angular/angular#13909 it seems that instead of having
we should rather import the factory (which is not available when coding, only when building) :
SamVerschueren asked if it could be replaced at build time (and opened an issue angular/angular#14005 for that).
mhevery explained why it can't be handled at build time by angular angular/angular#13909 (comment).
I'm wondering if this can be done by angular-cli ? Or as soon as we use
loadChildren
with a function (don't want AOT or AOT is broken due to some other bugs for example) we have to manually do that ?The text was updated successfully, but these errors were encountered: