Making transition from ionic 1 to ionic 2 and was curious about how to set up something like firebase import * as Firebase from 'somewhere/foo/';
using their typescript example.
Is bower the standard way of installing js dependencies in in ionic 2 or should I be using some other build chain/tool for adding something like Firebase?
Should I use bower install to install the firebase libraries or should point directly to a firebase cdn script source?
Should I using typings to install firebase typescript definitions?
This is the old code from the firebase tutorial https://www.firebase.com/docs/web/libraries/ionic/guide.html
index.html
<!-- AngularFire -->
<script src="https://cdn.firebase.com/libs/angularfire/1.2.0/angularfire.min.js"></script>
app.js
angular.module("starter", ["ionic", "firebase"])
which just includes cdn references to the Firebase library. How would we do this in ionic 2 and typescript
There is no bootstrap in ionic2 apps...
angularfire2
and firebase
app.ts
import 'es6-shim';
import {App, Platform} from 'ionic-angular';
import {StatusBar} from 'ionic-native';
import {HomePage} from './pages/home/home';
import {FIREBASE_PROVIDERS, defaultFirebase, AngularFire} from 'angularfire2';
@App({
template: '<ion-nav [root]="rootPage"></ion-nav>',
providers: [
FIREBASE_PROVIDERS,
defaultFirebase('https://[YOUR-APP].firebaseio.com/')
],
config: {} // http://ionicframework.com/docs/v2/api/config/Config/
})
export class MyApp {
rootPage: any = HomePage;
constructor(platform: Platform) {
platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
StatusBar.styleDefault();
});
}
}
home.ts
import {Page} from 'ionic-angular';
import {Component} from 'angular2/core';
import {AngularFire} from 'angularfire2';
import {Observable} from 'rxjs/Observable';
@Page({
template: `
<ion-navbar *navbar>
<ion-title>
Home
</ion-title>
</ion-navbar>
<ion-content class="home">
<ion-card *ngFor="#item of bookItems | async">
<ion-card-header>
{{item.volumeInfo.title}}
</ion-card-header>
<ion-card-content>
{{item.volumeInfo.description}}
</ion-card-content>
</ion-card>
</ion-content>`
})
export class HomePage {
bookItems: Observable<any[]>;
constructor(af: AngularFire) {
this.bookItems = af.list('/bookItems');
}
}
full source in git repo - aaronksaunders/ionic2-angularfire-sample
You can listen for authentication events like this
ngOnInit() {
// subscribe to the auth object to check for the login status
// of the user, if logged in, save some user information and
// execute the firebase query...
// .. otherwise
// show the login modal page
this.auth.subscribe((data) => {
console.log("in auth subscribe", data)
if (data) {
this.authInfo = data.password
this.bookItems = this.af.list('/bookItems');
} else {
this.authInfo = null
this.displayLoginModal()
}
})
}
See Code Here
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With