mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
89 lines
1.9 KiB
TypeScript
89 lines
1.9 KiB
TypeScript
import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core';
|
|
import {AngularFireDatabase, FirebaseListObservable} from 'angularfire2/database';
|
|
import {MailModel} from '../mail.model';
|
|
|
|
@Component({
|
|
selector : 'fuse-mail-list',
|
|
templateUrl: './mail-list.component.html',
|
|
styleUrls : ['./mail-list.component.scss']
|
|
})
|
|
export class MailListComponent implements OnInit
|
|
{
|
|
mailsDB: FirebaseListObservable<any[]>;
|
|
mails: any;
|
|
@Input('selectedMail') public selectedMail: MailModel;
|
|
@Output() onMailSelect = new EventEmitter<MailModel>();
|
|
|
|
constructor(private db: AngularFireDatabase)
|
|
{
|
|
this.mailsDB = this.db.list('/mail/data', {
|
|
// query: {
|
|
// orderByChild: 'important',
|
|
// equalTo : true
|
|
// }
|
|
});
|
|
}
|
|
|
|
ngOnInit()
|
|
{
|
|
this.mailsDB.subscribe((response) =>
|
|
{
|
|
console.log('mail list component inited');
|
|
console.log(response);
|
|
|
|
this.mails = response;
|
|
});
|
|
|
|
}
|
|
|
|
onSave()
|
|
{
|
|
// this.mailList.push({name: 'Mustafa'});
|
|
this.mails.push({subject: 'deneme'});
|
|
|
|
// this.mails.update({test: 'deneme'});
|
|
// this.mails.set({test: 'deneme'});
|
|
|
|
/*this.mails.set({
|
|
name: 'sercan',
|
|
age : 29
|
|
});*/
|
|
|
|
console.log(this.mails);
|
|
}
|
|
|
|
selectMail(mail)
|
|
{
|
|
console.info('mail selected', mail);
|
|
this.selectedMail = mail;
|
|
this.onMailSelect.emit(mail);
|
|
}
|
|
|
|
onGet()
|
|
{
|
|
this.mails.subscribe((response) =>
|
|
{
|
|
|
|
console.log(response);
|
|
});
|
|
|
|
/*const get = this.http.get('https://fuse2-demo.firebaseio.com/mail.json');
|
|
|
|
get.subscribe((response) =>
|
|
{
|
|
console.log(response);
|
|
});*/
|
|
}
|
|
|
|
onGoOnline()
|
|
{
|
|
this.db.database.goOnline();
|
|
}
|
|
|
|
onGoOffline()
|
|
{
|
|
this.db.database.goOffline();
|
|
}
|
|
|
|
}
|