Skip to content
Snippets Groups Projects
Commit e52c1bd4 authored by Franck Brondon Mezatio Felefack's avatar Franck Brondon Mezatio Felefack
Browse files

Added count of questions

parent 4962bb8f
No related merge requests found
......@@ -4,13 +4,11 @@
<mat-divider></mat-divider>
<mat-radio-group [(ngModel)]="continueFilter" aria-label="Select an option">
<mat-radio-button value="continueWithAll">{{'content.continue-with-all-questions' | translate}}</mat-radio-button>
<mat-radio-button value="continueWithAll">{{allCommentCount}} {{'content.continue-with-all-questions' | translate}}</mat-radio-button>
<mat-radio-button checked="true" value="continueWithCurr">{{'content.continue-with-current-questions' | translate}}</mat-radio-button>
<mat-radio-button value="continueWithAllFromNow">{{'content.continue-with-all-questions-from-now' | translate}}</mat-radio-button>
</mat-radio-group>
<app-dialog-action-buttons
<app-dialog-action-buttons
buttonsLabelSection="content"
confirmButtonLabel="continue"
buttonIcon="cloud"
......
......@@ -7,6 +7,9 @@ import { LanguageService } from '../../../../services/util/language.service';
import { EventService } from '../../../../services/util/event.service';
import { ActivatedRoute, Router } from '@angular/router';
import { CommentFilterOptions } from '../../../../utils/filter-options';
import { CommentService } from '../../../../services/http/comment.service';
import { RoomService } from '../../../../services/http/room.service';
import { Comment } from '../../../../models/comment';
@Component({
selector: 'app-topic-cloud-filter',
......@@ -21,7 +24,11 @@ export class TopicCloudFilterComponent implements OnInit {
continueFilter = 'continueWithCurr';
tmpFilter : CommentFilterOptions;
allCommentCount:number;
comments: Comment[] = [];
roomId: string;
constructor(public dialogRef: MatDialogRef<RoomCreatorPageComponent>,
public dialog: MatDialog,
public notificationService: NotificationService,
......@@ -29,6 +36,8 @@ export class TopicCloudFilterComponent implements OnInit {
protected langService: LanguageService,
private route: ActivatedRoute,
private router: Router,
protected roomService: RoomService,
private commentService: CommentService,
@Inject(MAT_DIALOG_DATA) public data: any,
public eventService: EventService) {
langService.langEmitter.subscribe(lang => translationService.use(lang));
......@@ -38,6 +47,16 @@ export class TopicCloudFilterComponent implements OnInit {
this.translationService.use(localStorage.getItem('currentLang'));
this.tmpFilter = CommentFilterOptions.readFilter();
localStorage.setItem("filtertmp", JSON.stringify(this.tmpFilter));
this.roomService.getRoomByShortId(this.shortId).subscribe(room => {
this.roomId = room.id;
});
this.commentService.getAckComments(this.roomId)
.subscribe(comments => {
this.comments = comments;
});
this.allCommentCount =this.comments.length;
}
closeDialog(): void {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment