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

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

Closed
wants to merge 2 commits into from

Conversation

NathanWalker
Copy link
Contributor

Because it's nice to be on the bleeding edge.

@PatrickJS
Copy link
Contributor

such bleeding

@lBilali
Copy link

lBilali commented Jul 15, 2015

@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).

@NathanWalker
Copy link
Contributor Author

If you could help update the changes for RouterOutlet would be appreciated. :)

@lBilali
Copy link

lBilali commented Jul 15, 2015

I tried last night but failed on overriding commit method. somehow it complained that super does not have commit method.
you can try by changing activate method with the one below. Maybe you will have better luck :)

commit(instruction) {
var url = this._parentRouter.lastNavigationAttempt;
if (!this.publicRoutes[url] && !localStorage.getItem('jwt')) {
instruction.component = Login;
}
return super.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

@lBilali
Copy link

lBilali commented Jul 15, 2015

Making the change should work. The complain I got is because of the typings which is on alpha-26 :(

@NathanWalker
Copy link
Contributor Author

Thanks for trying I'll see what I can do.
The typings thing is one gripe I have with TypeScript and Angular 2 right now. It seems every sample project out there right now has different ways of including or referencing typings and/or different sets with different names. There should be one and only one way to include and update the typings to avoid this confusion.

@NathanWalker
Copy link
Contributor Author

So it is related to type definitions, of which, I don't see alpha.31 posted here yet:
https://github.com/borisyankov/DefinitelyTyped/tree/master/angular2

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
@NathanWalker
Copy link
Contributor Author

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:

WARNING in ./src/app/LoggedInOutlet.ts
(13,7): Supplied parameters do not match any signature of call target.

... because the latest router.d.ts typings do not include the RouterOutlet constructor signature.
Investigating a clean way to extend distributed/installed typings with custom modifications to deal with this.

@NathanWalker NathanWalker changed the title Update to Angular 2.0.0-alpha.31...Swapped out fetch with Http. Update to Angular 2.0.0-alpha.31...Swapped out fetch with Http. Also updated typings to be easier to work with and update Jul 20, 2015
@NathanWalker
Copy link
Contributor Author

Extending existing TypeScript definitions is something that has currently been proposed but is not yet supported for classes:

microsoft/TypeScript#819

If you agree, as I do, that this should be supported in TypeScript, add a +1 there. 👍

@NathanWalker
Copy link
Contributor Author

I've added this issue to see if the RouterOutlet constructor signature could be included in the generated type definitions to solve this (cleanly)...
angular/angular#3291

@ctindel
Copy link

ctindel commented Jul 29, 2015

@NathanWalker :

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
(13,7): Supplied parameters do not match any signature of call target. (2346)"

This is regarding the call to:
super(_elementRef, _loader, _parentRouter, nameAttr);

Any ideas? Are you seeing these on your side?

@NathanWalker
Copy link
Contributor Author

@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:
angular/angular#3282
It needs to include the construction signature.
I haven't seen the response.json error and will have a look next time I get a chance.

Hopefully the router typings will be updated on DefinitelyTyped soon.

@ctindel
Copy link

ctindel commented Aug 3, 2015

@NathanWalker

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.

@valorkin valorkin mentioned this pull request Oct 19, 2015
@NathanWalker
Copy link
Contributor Author

n/a

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

Successfully merging this pull request may close these issues.

4 participants