mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.7 KiB
106 lines
2.7 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, OnInit } from '@angular/core';
|
|
import { timer } from 'rxjs';
|
|
import { onErrorResumeNext, switchMap, tap } from 'rxjs/operators';
|
|
|
|
import {
|
|
AuthService,
|
|
CommentDto,
|
|
CommentsService,
|
|
CommentsState,
|
|
DialogService,
|
|
fadeAnimation,
|
|
LocalStoreService,
|
|
ModalModel,
|
|
ResourceOwner
|
|
} from '@app/shared';
|
|
|
|
const CONFIG_KEY = 'notifications.version';
|
|
|
|
@Component({
|
|
selector: 'sqx-notifications-menu',
|
|
styleUrls: ['./notifications-menu.component.scss'],
|
|
templateUrl: './notifications-menu.component.html',
|
|
animations: [
|
|
fadeAnimation
|
|
],
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class NotificationsMenuComponent extends ResourceOwner implements OnInit {
|
|
private isOpen: boolean;
|
|
|
|
public modalMenu = new ModalModel();
|
|
|
|
public commentsState: CommentsState;
|
|
|
|
public versionRead = -1;
|
|
public versionReceived = -1;
|
|
|
|
public userToken: string;
|
|
|
|
public get unread() {
|
|
return Math.max(0, this.versionReceived - this.versionRead);
|
|
}
|
|
|
|
constructor(authService: AuthService, commentsService: CommentsService, dialogs: DialogService,
|
|
private readonly changeDetector: ChangeDetectorRef,
|
|
private readonly localStore: LocalStoreService
|
|
) {
|
|
super();
|
|
|
|
this.userToken = authService.user!.token;
|
|
|
|
this.versionRead = localStore.getInt(CONFIG_KEY, -1);
|
|
this.versionReceived = this.versionRead;
|
|
|
|
const commentsUrl = `users/${authService.user!.id}/notifications`;
|
|
|
|
this.commentsState =
|
|
new CommentsState(
|
|
commentsUrl,
|
|
commentsService,
|
|
dialogs,
|
|
this.versionRead);
|
|
}
|
|
|
|
public ngOnInit() {
|
|
this.own(
|
|
this.modalMenu.isOpen.pipe(
|
|
tap(isOpen => {
|
|
this.isOpen = isOpen;
|
|
|
|
this.updateVersion();
|
|
})
|
|
));
|
|
|
|
this.own(
|
|
this.commentsState.versionNumber.pipe(
|
|
tap(version => {
|
|
this.versionReceived = version;
|
|
|
|
this.updateVersion();
|
|
|
|
this.changeDetector.detectChanges();
|
|
})));
|
|
|
|
this.own(timer(0, 4000).pipe(switchMap(() => this.commentsState.load(true).pipe(onErrorResumeNext()))));
|
|
}
|
|
|
|
public trackByComment(comment: CommentDto) {
|
|
return comment.id;
|
|
}
|
|
|
|
private updateVersion() {
|
|
if (this.isOpen) {
|
|
this.versionRead = this.versionReceived;
|
|
|
|
this.localStore.setInt(CONFIG_KEY, this.versionRead);
|
|
}
|
|
}
|
|
}
|