-
Notifications
You must be signed in to change notification settings - Fork 334
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
Update to Angular 2.0.0-alpha.31...Swapped out fetch with Http. Also updated typings to be easier to work with and update #26
Conversation
such bleeding |
@NathanWalker Did you test if everything works with 2.0.0-alpha.31? RouterOutlet is changed by commit angular/angular@a9a552c renaming activate method to commit, so LoggedInRouterOutlet does not work (every route can be accessed without a jwt). |
If you could help update the changes for RouterOutlet would be appreciated. :) |
I tried last night but failed on overriding commit method. somehow it complained that super does not have commit method. commit(instruction) { For more I was thinking maybe authentication can be implemented differently with the newly introduced hooks. P.S. I'm not in front of my computer to make a proper pull request |
Making the change should work. The complain I got is because of the typings which is on alpha-26 :( |
Thanks for trying I'll see what I can do. |
So it is related to type definitions, of which, I don't see alpha.31 posted here yet: I cannot find type definitions on angular's repo either. I find this confusing. It seems that when they make api changes, new typings would be generated in their source to reflect those api changes? At this point, I believe we need to wait until alpha.31 shows up on DefinitelyTyped repo... ? |
…ted by @gdi2290 here: auth0-blog#27 ... Fixed Http api to match latest change in alpha.31 closes auth0-blog#27
Typings have now been updated on this PR to follow a suggestion by @gdi2290 for the https://github.com/angular-class/angular2-webpack-starter repo... which is very smart. It allows easy updating of the tsd installed typings and management of custom typings without them intermingling. 👍 Everything appears to work as intended with the exception of one TypeScript Warning I still see in the output:
... because the latest router.d.ts typings do not include the |
Extending existing TypeScript definitions is something that has currently been proposed but is not yet supported for classes: If you agree, as I do, that this should be supported in TypeScript, add a +1 there. 👍 |
I've added this issue to see if the RouterOutlet constructor signature could be included in the generated type definitions to solve this (cleanly)... |
I updated my code to match what was in the PR. For some reason now I am getting an alert window popping up saying "response.json is not a function" when I try to login. I'm also getting a warning message saying "./app/LoggedInOutlet.ts This is regarding the call to: Any ideas? Are you seeing these on your side? |
@ctindel I have seen the typescript warning around LoggedInOutlet due to fact that the router.d.ts file is not accurate and they are working on correcting that here: Hopefully the router typings will be updated on DefinitelyTyped soon. |
It has something to do with the new http.post call. I switched my code back to window.fetch and it works fine. Is there documentation anywhere describing how to use window.post? I don't see any examples online written like yours with the .map(status), .map(json), etc. I saw one example using .map(res => res.json()) but then nothing after that. |
n/a |
Because it's nice to be on the bleeding edge.