Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
frag.jetzt SWTP 2022
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Marc Tröll
frag.jetzt SWTP 2022
Commits
f27458c0
Commit
f27458c0
authored
3 years ago
by
Ruben Bimberg
Browse files
Options
Downloads
Patches
Plain Diff
Fix filter bug
Filtering did not show all tags.
parent
596a26a6
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/components/shared/_dialogs/topic-cloud-filter/topic-cloud-filter.component.ts
+4
-2
4 additions, 2 deletions
...ialogs/topic-cloud-filter/topic-cloud-filter.component.ts
src/app/services/util/tag-cloud-data.service.ts
+0
-6
0 additions, 6 deletions
src/app/services/util/tag-cloud-data.service.ts
with
4 additions
and
8 deletions
src/app/components/shared/_dialogs/topic-cloud-filter/topic-cloud-filter.component.ts
+
4
−
2
View file @
f27458c0
...
...
@@ -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
'
:
...
...
This diff is collapsed.
Click to expand it.
src/app/services/util/tag-cloud-data.service.ts
+
0
−
6
View file @
f27458c0
...
...
@@ -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
())
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment