2018-05-25 07:29:06 +00:00
|
|
|
import { Component, OnInit, Output, EventEmitter, Input } from '@angular/core';
|
2018-05-25 03:31:08 +00:00
|
|
|
import { AfterContentInit, OnDestroy } from '@angular/core/src/metadata/lifecycle_hooks';
|
|
|
|
import { Store, select } from '@ngrx/store';
|
|
|
|
import { Observable } from 'rxjs/Observable';
|
2018-05-27 09:12:20 +00:00
|
|
|
import * as NotificationEntityStore from '../../store/entity/notification';
|
|
|
|
import { NotificationEntitySelector } from '../../store/';
|
2018-05-28 10:35:06 +00:00
|
|
|
import { AuthContainerSelector } from '@overflow/shared/auth/store';
|
2018-05-25 03:31:08 +00:00
|
|
|
import { Member } from '@overflow/commons-typescript/model/member';
|
|
|
|
import { PageParams } from '@overflow/commons-typescript/model/commons/PageParams';
|
2018-05-25 03:51:42 +00:00
|
|
|
import { Page } from '@overflow/commons-typescript/model/commons/Page';
|
|
|
|
import { Notification } from '@overflow/commons-typescript/model/notification';
|
2018-05-25 07:29:06 +00:00
|
|
|
import { ActivatedRoute } from '@angular/router';
|
2018-05-28 10:35:06 +00:00
|
|
|
import { DomainMember } from '@overflow/commons-typescript/model/domain';
|
2018-05-25 03:31:08 +00:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'of-notification-container',
|
|
|
|
templateUrl: './list-container.component.html',
|
|
|
|
})
|
|
|
|
export class NotificationListContainerComponent implements OnInit {
|
2018-05-25 03:51:42 +00:00
|
|
|
notificationPage$: Observable<Page<Notification>>;
|
2018-05-25 07:29:06 +00:00
|
|
|
@Output() pageChange = new EventEmitter<number>();
|
|
|
|
pageNo: number;
|
2018-05-25 03:31:08 +00:00
|
|
|
|
|
|
|
constructor(
|
2018-05-27 09:12:20 +00:00
|
|
|
private store: Store<NotificationEntityStore.State>,
|
2018-05-25 07:29:06 +00:00
|
|
|
private route: ActivatedRoute
|
2018-05-25 03:31:08 +00:00
|
|
|
) {
|
2018-05-27 09:12:20 +00:00
|
|
|
// this.notificationPage$ = store.pipe(select(NotificationEntitySelector.selectAll));
|
2018-05-25 03:31:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ngOnInit() {
|
2018-05-25 07:29:06 +00:00
|
|
|
this.route.queryParams.subscribe(queryParams => {
|
|
|
|
this.pageNo = queryParams['page'] || 0;
|
|
|
|
this.getNotifications();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
onPageChange(pageNo: number) {
|
|
|
|
this.pageChange.emit(pageNo);
|
|
|
|
}
|
|
|
|
|
|
|
|
getNotifications() {
|
2018-05-28 10:35:06 +00:00
|
|
|
this.store.select(AuthContainerSelector.selectDomainMember).subscribe(
|
|
|
|
(domainMember: DomainMember) => {
|
2018-05-25 03:31:08 +00:00
|
|
|
const pageParams: PageParams = {
|
2018-05-25 07:29:06 +00:00
|
|
|
pageNo: this.pageNo,
|
2018-05-25 03:31:08 +00:00
|
|
|
countPerPage: 10,
|
|
|
|
sortCol: 'id',
|
|
|
|
sortDirection: 'descending',
|
|
|
|
};
|
2018-05-28 10:35:06 +00:00
|
|
|
this.store.dispatch(new NotificationEntityStore.ReadAllByMember({ member: domainMember.member, pageParams }));
|
2018-05-25 07:29:06 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
markAllasRead() {
|
2018-05-28 10:35:06 +00:00
|
|
|
this.store.select(AuthContainerSelector.selectDomainMember).subscribe(
|
|
|
|
(domainMember: DomainMember) => {
|
2018-05-25 07:29:06 +00:00
|
|
|
const pageParams: PageParams = {
|
|
|
|
pageNo: this.pageNo,
|
|
|
|
countPerPage: 10,
|
|
|
|
sortCol: 'id',
|
2018-05-28 10:35:06 +00:00
|
|
|
sortDirection: 'descending',
|
2018-05-25 07:29:06 +00:00
|
|
|
};
|
2018-05-28 10:35:06 +00:00
|
|
|
this.store.dispatch(new NotificationEntityStore.MarkAllAsRead({ member: domainMember.member, pageParams }));
|
2018-05-25 03:31:08 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-05-25 07:29:06 +00:00
|
|
|
notificationSelected(notification: Notification) {
|
|
|
|
// this.router.navigate([notification.url]);
|
|
|
|
alert('redirect to ' + notification.url);
|
|
|
|
}
|
2018-05-25 03:31:08 +00:00
|
|
|
}
|