Skip to content

Commit

Permalink
Step 17.6: Create a test login method and bind it to the user interface
Browse files Browse the repository at this point in the history
  • Loading branch information
darkbasic committed Jun 15, 2017
1 parent 166799f commit c23940d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/pages/login/login.html
Expand Up @@ -22,4 +22,10 @@
<ion-item>
<ion-input [(ngModel)]="phone" (keypress)="onInputKeypress($event)" type="tel" placeholder="Your phone number"></ion-input>
</ion-item>

<ion-item>
<ion-buttons>
<button ion-button (click)="loginFacebook()">Login with Facebook</button>
</ion-buttons>
</ion-item>
</ion-content>
15 changes: 15 additions & 0 deletions src/pages/login/login.ts
Expand Up @@ -50,6 +50,21 @@ export class LoginPage implements AfterContentInit {
alert.present();
}

loginFacebook(): void {
const options = {
requestPermissions: ['public_profile', 'user_friends', 'email']
};

(<any>Meteor).loginWithFacebook(options, (error: Error) => {
if (error) {
this.handleError(error);
} else {
console.log("Logged in with Facebook succesfully.");
console.log(Meteor.user());
}
});
}

handleLogin(alert: Alert): void {
alert.dismiss().then(() => {
return this.phoneService.verify(this.phone);
Expand Down

0 comments on commit c23940d

Please sign in to comment.