前提
Tuyano SYODA氏のAngular超入門P375でGoogleアカウントにログインして、firebaseに登録されているコレクションを表示させる機能を作る箇所があります。
その中でログインユーザーの情報を取得する部分があるのですが、以下のエラーが出力されます。
error TS2339: Property 'displayName' does not exist on type 'Promise<User>'.
以下のソースの「this.afAuth.currentUser.displayName」が問題となってます。
get currentUser() { return this.afAuth != null ? this.afAuth.currentUser != null ? this.afAuth.currentUser.displayName : '(not logined.)' : '(not logined.)' }
ログインユーザーの情報を取得するには、どうすればよろしいでしょうか。
よろしくお願いいたします。
該当のソースコード
ts
1import { Component, OnInit } from '@angular/core'; 2import { AngularFirestore } from '@angular/fire/firestore'; 3import * as firebase from "firebase"; 4import { AngularFireAuth } from '@angular/fire/auth'; 5 6@Component({ 7 selector: 'app-fire', 8 templateUrl: './fire.component.html', 9 styleUrls: ['./fire.component.css'] 10}) 11export class FireComponent implements OnInit { 12 message: string = 'people data.'; 13 data: any; 14 15 constructor(private db: AngularFirestore, public afAuth: AngularFireAuth) { } 16 17 ngOnInit() { 18 this.access(); 19 } 20 21 access() { 22 this.db.collection('people') 23 .valueChanges() 24 .subscribe(value=>{ 25 this.data = value; 26 }, 27 error => { 28 this.message = "(can't get data...)"; 29 this.data = null; 30 }); 31 } 32 33 login() { 34 let provider = new firebase.default.auth.GoogleAuthProvider(); 35 this.afAuth.signInWithRedirect(provider) 36 .then((result)=>{ 37 this.access; 38 }); 39 } 40 41 logout() { 42 this.afAuth.signOut(); 43 this.access; 44 } 45 46 get currentUser() { 47 return this.afAuth != null ? 48 this.afAuth.currentUser != null ? 49 this.afAuth.currentUser.displayName : 50 '(not logined.)' : 51 '(not logined.)' 52 } 53 54} 55
HTML
1<div class="container"> 2 <h1>Firebase works!</h1> 3 <div> 4 <p>{{message}}</p> 5 <button mat-raised-button (click)="login()">login</button> 6 <button mat-raised-button (click)="logout()">logout</button> 7 <p>USER: {{currentUser}}</p> 8 <table> 9 <tr> 10 <th>Name</th> 11 <th>Mail</th> 12 <th>Age</th> 13 </tr> 14 <tr *ngFor="let item of data"> 15 <td>{{item['name']}}</td> 16 <td>{{item['mail']}}</td> 17 <td>{{item['age']}}</td> 18 </tr> 19 </table> 20 </div> 21</div>
試したこと
当初書籍通りに記述していたのですが
Property 'auth' does not exist on type 'AngularFireAuth'.
とエラーが出力されました。
このエラーは以下の記事からAngularFireAuthの仕様変更によるものだと分かったため、記事を参考に修正しました。
https://qiita.com/kokogento/items/e4114ace674b31cbd7bd
しかし、currentUserにdisplayNameが存在しないのか、以下のエラーで詰まっている状態です。
補足情報(FW/ツールのバージョンなど)
_ _ ____ _ ___ / \ _ __ __ _ _ _| | __ _ _ __ / ___| | |_ _| / △ \ | '_ \ / _` | | | | |/ _` | '__| | | | | | | / ___ \| | | | (_| | |_| | | (_| | | | |___| |___ | | /_/ \_\_| |_|\__, |\__,_|_|\__,_|_| \____|_____|___| |___/ Angular CLI: 10.1.7 Node: 14.17.0 OS: win32 x64 Angular: 10.1.6 ... animations, common, compiler, compiler-cli, core, forms ... platform-browser, platform-browser-dynamic, router Ivy Workspace: Yes Package Version --------------------------------------------------------- @angular-devkit/architect 0.1001.7 @angular-devkit/build-angular 0.1001.7 @angular-devkit/core 10.1.7 @angular-devkit/schematics 10.1.7 @angular/cdk 10.2.7 @angular/cli 10.1.7 @angular/fire 6.1.5 @angular/material 10.2.7 @schematics/angular 10.1.7 @schematics/update 0.1001.7 rxjs 6.6.7 typescript 4.0.7
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。