Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Angular Bootstrap UI library for firebase authentication powered by@ng-bootstrap and@angularfire2

License

NotificationsYou must be signed in to change notification settings

firebaseui/ng-bootstrap

Repository files navigation

@firebaseui/ng-bootstrap - Angular Bootstrap UI library for firebase authentication powered by @ng-bootstrap

npm versionnpm demoJoin the chat at https://gitter.im/firebaseui/LobbyCircleCI branchBuild StatusCoverage Statusdependency StatusdevDependency StatusGreenkeeper Badgelicense

firebaseui/ng-bootstrap - sign in, sign up demo imagefirebaseui/ng-bootstrap - reset password demo image

Built by and for developers ❤️

Do you have any question or suggestion ? Please do not hesitate to contact us!Alternatively, provide a PR | open an appropriate issuehere

If did you like this project, support@firebaseui/ng-bootstrapby starring ⭐ and sharing it 📢

If you prefer to develop with material design rather than with bootstrap, please check this projectngx-auth-firebaseui

Table of Contents

Features@firebaseui/ng-bootstrapngx-auth-firebaseuifirebaseui
Sign Up✔️✔️✔️
Sign In✔️✔️✔️
Sign In Anonymously✔️✔️
Sign In with Google✔️✔️✔️
Sign In with Facebook✔️✔️✔️
Sign In with Twitter✔️✔️✔️
Sign In with Github✔️✔️✔️
Sign In with PhoneNumber🔜✔️
Sign out✔️✔️
Sign in/up progress indicator✔️✔️
Password Strength indicator🔜✔️
Forgot/Reset Password✔️✔️
Delete account🔜✔️
User Profile🔜✔️
Check whether user's email is verified🔜✔️
Edit user's display name (incl. validation)🔜✔️
Edit user's email (incl. validation)🔜✔️
Edit user's phone number (incl. validation)🔜✔️
Configure your favorite auth provider in runtime✔️✔️
Sync user'auth with Firestoreread more✔️✔️
Angular v2-6 friendly✔️✔️
Internationalization (i18n)🔜 @angular v7🔜 @angular v7✔️
Ionic/cordova support🔜 @firebaseui/ionic-auth🔜 @firebaseui/ionic-auth
Real time form validation✔️✔️
Easy to integrate✔️✔️
Support Server Side Rendering✔️✔️
Support SPA without further config✔️✔️
Support Safari private browsing✔️✔️
AWESOME🔜✔️⁉️
  • 💝 it uses a responsive and accessible web design UX/UI from twitter bootstrap concepts and components (supporting desktop and mobile view).
  • 💄 pick up your own theme! change the primary, secondary and danger colors whenever you need (e.g to support light and dark themes) via scss - bootstrap
  • 🚢 super easy to use with an angular based project (project that is created with theangular-cli)
  • 🔜 optional configuration
  • 🔜 configure your authentication providers in runtime
  • ♻️ reusable components for every project that needs an authentication with a firebase project/app.
  • 🔜 built in feedback mechanism in form of aalert when an error or any important event occurred.
  • 🔜 ability to sign out or even to delete totally the account
  • 👻 your client does not want to create an account in your project? Let him to sign in anonymously!
  • 🔜 user profile component to display user's data using viangb-auth-firebaseui-user
  • ⚡ update user profile as feature
  • 🔥Sync user's authentication with FIRESTOREAUTOMATICALLY
  • 💪 Forgot Password feature! Go and let your users to recover their passwords easily
  • 🎉 Supports SSR - Server Side Rendering
  • <ngb-auth-firebaseui> used for the authentication process
  • 🔜<ngb-auth-firebaseui-providers> used to display only buttons for providers like googe, facebook, twitter and github
  • 🔜<ngb-auth-firebaseui-user> used to display/edit the data of the current authenticated user
  • anonymously
  • email and password (traditional)
  • google
  • facebook
  • twitter
  • github
  • phone number 🔜
  • sign up
  • sign in
  • sign in Anonymously | with google, facebook, twitter, github
  • sign out
  • validation of password's strength while creating a new account usingngb-material-password-strength 🔜
  • forgot/reset password 🔜
  • sending email verifications
  • delete user's account 🔜
  • edit user's profile like email, name, (profile picture 🔜) and phone number 🔜
  • firestore auto sync 🔥
  • Try it out
if(issues||feedback||you_need_more_features){// send me an email -> to: anthony.na@hotmail.de}

Dependencies

npm install --save @ng-bootstrap/ng-bootstrap bootstrap @angular/fire firebase font-awesome @angular/forms @angular/animations

Installation

Install above dependencies vianpm.

Now install@firebaseui/ng-bootstrap via:

npm install --save @firebaseui/ng-bootstrap

SystemJS

Note:If you are usingSystemJS, you should adjust your configuration to point to the UMD bundle.In your systemjs config file,map needs to tell the System loader where to look for@firebaseui/ng-bootstrap:

map:{'@firebaseui/ng-bootstrap':'node_modules/@firebaseui/ng-bootstrap/bundles/@firebaseui/ng-bootstrap.umd.js',}

Once installed you need to import the main module:

import{NgbAuthFirebaseUIModule}from'@firebaseui/ng-bootstrap';

The only remaining part is to list the imported module in your application module. The exact method will be slightlydifferent for the root (top-level) module for which you should end up with the code similar to (notice NgbAuthFirebaseUIModule.forRoot()):

import{NgbAuthFirebaseUIModule}from'@firebaseui/ng-bootstrap';@NgModule({declarations:[AppComponent, ...],imports:[NgbAuthFirebaseUIModule.forRoot({apiKey:'your-firebase-apiKey',authDomain:'your-firebase-authDomain',databaseURL:'your-firebase-databaseURL',projectId:'your-firebase-projectId',storageBucket:'your-firebase-storageBucket',messagingSenderId:'your-firebase-messagingSenderId'}), ...],bootstrap:[AppComponent]})exportclassAppModule{}

Other modules in your application can simply importNgbAuthFirebaseUIModule:

import{NgbAuthFirebaseUIModule}from'@firebaseui/ng-bootstrap';@NgModule({declarations:[OtherComponent, ...],imports:[NgbAuthFirebaseUIModule, ...],})exportclassOtherModule{}

<ngb-auth-firebaseui></ngb-auth-firebaseui>

<!-- You can now use the library component in app.component.html  --><ngb-auth-firebaseui(onSuccess)="printUser($event)"(onError)="printError()"></ngb-auth-firebaseui>

or

<!-- or simply in the app.component.ts -->@Component({selector:'app',template:`        <ngb-auth-firebaseui (onSuccess)="printUser($event)" (onError)="printError()"></ngb-auth-firebaseui>`})classAppComponent{printUser(event){console.log(event);}printError(event){console.error(event);}}

<ngb-auth-firebaseui-providers></ngb-auth-firebaseui-providers>

<!-- You can now use the library component in app.component.html  --><ngb-auth-firebaseui-providerslayout="column"></ngb-auth-firebaseui-providers>

<ngb-auth-firebaseui></ngb-auth-firebaseui>

optionbindtypedefaultdescription
guestEnabledInput()booleantruewhether the user can sign in and continue as guest
providersInput()string[]['all'] or [AuthProvider.All]choose your favorite authentication provider: google
onSuccessOutput()any-this will be fired when an authentication process was success. The authenticated user is emitted!
onErrorOutput()any-this event will be fired when an error occurred during the authentication process! An error message is emitted!

How to disable users to sign in and continue as guest, use theguestEnabled input

<ngb-auth-firebaseui[guestEnabled]="false"(onSuccess)="printUser($event)"(onError)="printError($event)"></ngb-auth-firebaseui>

How to configure your input providers ?see the examples

e.g:in your component, import the AuthProvider enum to pick up your favorite provider:

import{OnInit}from'@angular/core';import{AuthProvider}from'@firebaseui/ng-bootstrap';exportclassExampleComponentimplementsOnInit{providers=AuthProvider;ngOnInit(){}}

in your template -->

<ngb-auth-firebaseui[providers]="[providers.Google, providers.Facebook, providers.Twitter]"(onSuccess)="printUser($event)"(onError)="printError()"></ngb-auth-firebaseui>

or

<ngb-auth-firebaseui[providers]="['google', 'facebook', 'twitter']"(onSuccess)="printUser($event)"(onError)="printError()"></ngb-auth-firebaseui>
$ git clone https://github.com/firebaseui/ng-bootstrap.git
  • link the ngb-auth-firebaseui packageuse gulp globally
$ gulp link
  • navigate to the demo app directory
$cd demo
  • install the dependencies
$ npm i
  • run/start/serve the app
$ npm run start

or

$ ng serve --open
  • the app is now hosted byhttp://localhost:4200/

To generate all*.js,*.d.ts and*.metadata.json files:

$ npm run build


Support

Built by and for developers ❤️ we will help you 👊


jetbrains logo

This project is supported byjetbrains with 1 ALL PRODUCTS PACK OS LICENSE incl.webstorm


Copyright (c) 2018Anthony Nahas. Licensed under the MIT License (MIT)


[8]ページ先頭

©2009-2025 Movatter.jp