Install firebaseui-angular
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Only firebaseui-angular | |
npm install firebaseui-angular | |
# Install with all dependent packages | |
npm install firebase firebaseui @angular/fire firebaseui-angular |
Add the FirebaseUIModule with the config to your imports.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
import {AngularFireModule} from '@angular/fire'; | |
import {AngularFireAuthModule} from '@angular/fire/auth'; | |
import {FirebaseUIModule, firebase, firebaseui} from 'firebaseui-angular'; | |
... | |
const firebaseUiAuthConfig: firebaseui.auth.Config = { | |
signInFlow: 'popup', | |
signInOptions: [ | |
firebase.auth.GoogleAuthProvider.PROVIDER_ID, | |
{ | |
scopes: [ | |
'public_profile', | |
'email', | |
'user_likes', | |
'user_friends' | |
], | |
customParameters: { | |
'auth_type': 'reauthenticate' | |
}, | |
provider: firebase.auth.FacebookAuthProvider.PROVIDER_ID | |
}, | |
firebase.auth.TwitterAuthProvider.PROVIDER_ID, | |
firebase.auth.GithubAuthProvider.PROVIDER_ID, | |
{ | |
requireDisplayName: false, | |
provider: firebase.auth.EmailAuthProvider.PROVIDER_ID | |
}, | |
firebase.auth.PhoneAuthProvider.PROVIDER_ID, | |
firebaseui.auth.AnonymousAuthProvider.PROVIDER_ID | |
], | |
tosUrl: '<your-tos-link>', | |
privacyPolicyUrl: '<your-privacyPolicyUrl-link>', | |
credentialHelper: firebaseui.auth.CredentialHelper.ACCOUNT_CHOOSER_COM | |
}; | |
... | |
@NgModule({ | |
... | |
imports: [ | |
... | |
AngularFireModule.initializeApp(environment.firebaseConfig), | |
AngularFireAuthModule, | |
FirebaseUIModule.forRoot(firebaseUiAuthConfig) | |
], | |
providers: [], | |
bootstrap: [AppComponent] | |
}) | |
export class AppModule { | |
} |
CSS Import
Import the firebaseui css to your src/styles.css file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import '~firebaseui/dist/firebaseui.css'; |
Use tag
Use below tag where login select div is needed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<firebase-ui></firebase-ui> |
ref : https://www.npmjs.com/package/firebaseui-angular
댓글
댓글 쓰기