Skip to content
Snippets Groups Projects
Commit f27458c0 authored by Ruben Bimberg's avatar Ruben Bimberg :computer:
Browse files

Fix filter bug

Filtering did not show all tags.
parent 596a26a6
Branches
Tags
No related merge requests found
......@@ -6,7 +6,7 @@ import { RoomCreatorPageComponent } from '../../../creator/room-creator-page/roo
import { LanguageService } from '../../../../services/util/language.service';
import { EventService } from '../../../../services/util/event.service';
import { Router } from '@angular/router';
import { CommentFilter } from '../../../../utils/filter-options';
import { CommentFilter, Period } from '../../../../utils/filter-options';
import { RoomService } from '../../../../services/http/room.service';
import { Comment } from '../../../../models/comment';
import { CommentListData } from '../../comment-list/comment-list.component';
......@@ -91,7 +91,9 @@ export class TopicCloudFilterComponent implements OnInit {
switch (this.continueFilter) {
case 'continueWithAll':
filter = new CommentFilter(); // all questions allowed
// all questions allowed
filter = new CommentFilter();
filter.periodSet = Period.all;
break;
case 'continueWithAllFromNow':
......
......@@ -300,13 +300,11 @@ export class TagCloudDataService {
}
private fetchData(): void {
console.log('Try to get room data');
this._roomDataService.getRoomData(this._roomId).subscribe((comments: Comment[]) => {
if (comments === null) {
return;
}
this._lastFetchedComments = comments;
console.log('Room data get', comments);
this.rebuildTagData();
});
}
......@@ -327,13 +325,9 @@ export class TagCloudDataService {
return;
}
const currentMeta = this._isDemoActive ? this._lastMetaData : this._currentMetaData;
console.log('Start filtering', this._currentFilter);
const filteredComments = this._lastFetchedComments.filter(comment => this._currentFilter.checkComment(comment));
console.log('End filtering', filteredComments);
currentMeta.commentCount = filteredComments.length;
console.log('start building structure', this._adminData);
const [data, users] = TagCloudDataService.buildDataFromComments(this._adminData, filteredComments);
console.log('end building structure', data);
let minWeight = null;
let maxWeight = null;
for (const value of data.values()) {
......
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