Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arsnova-lite
Manage
Activity
Members
Labels
Plan
Issues
24
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
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
Show more breadcrumbs
ARSnova
arsnova-lite
Commits
3b10b106
There was an error fetching the commit references. Please try again later.
Commit
3b10b106
authored
6 years ago
by
Lukas Mauß
Browse files
Options
Downloads
Patches
Plain Diff
Fix comment updating in comment-list
parent
f9b5003b
4 merge requests
!171
SWTP Comment Project
,
!170
Fix linter in pipe
,
!169
WebSocket Connector
,
!168
Filter comment list
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/components/shared/comment-list/comment-list.component.ts
+17
-0
17 additions, 0 deletions
.../components/shared/comment-list/comment-list.component.ts
src/app/components/shared/comment/comment.component.ts
+3
-9
3 additions, 9 deletions
src/app/components/shared/comment/comment.component.ts
with
20 additions
and
9 deletions
src/app/components/shared/comment-list/comment-list.component.ts
+
17
−
0
View file @
3b10b106
...
...
@@ -58,7 +58,24 @@ export class CommentListComponent implements OnInit {
c
.
id
=
payload
.
id
;
c
.
creationTimestamp
=
payload
.
timestamp
;
this
.
comments
=
this
.
comments
.
concat
(
c
);
}
else
if
(
msg
.
type
===
'
CommentPatched
'
)
{
for
(
let
i
=
0
;
i
<
this
.
comments
.
length
;
i
++
)
{
if
(
payload
.
id
===
this
.
comments
[
i
].
id
)
{
for
(
const
[
key
,
value
]
of
Object
.
entries
(
payload
.
changes
))
{
console
.
log
(
value
);
switch
(
key
)
{
case
'
read
'
:
this
.
comments
[
i
].
read
=
value
;
break
;
case
'
correct
'
:
this
.
comments
[
i
].
correct
=
value
;
break
;
case
'
favorite
'
:
this
.
comments
[
i
].
favorite
=
value
;
break
;
}
}
}
}
}
}
}
This diff is collapsed.
Click to expand it.
src/app/components/shared/comment/comment.component.ts
+
3
−
9
View file @
3b10b106
...
...
@@ -8,8 +8,6 @@ import { NotificationService } from '../../../services/util/notification.service
import
{
TranslateService
}
from
'
@ngx-translate/core
'
;
import
{
LanguageService
}
from
'
../../../services/util/language.service
'
;
import
{
WsCommentServiceService
}
from
'
../../../services/websockets/ws-comment-service.service
'
;
import
{
RxStompService
}
from
'
@stomp/ng2-stompjs
'
;
import
{
Message
}
from
'
@stomp/stompjs
'
;
@
Component
({
selector
:
'
app-comment
'
,
...
...
@@ -28,8 +26,7 @@ export class CommentComponent implements OnInit {
private
notification
:
NotificationService
,
private
translateService
:
TranslateService
,
protected
langService
:
LanguageService
,
private
wsCommentService
:
WsCommentServiceService
,
private
rxStompService
:
RxStompService
)
{
private
wsCommentService
:
WsCommentServiceService
)
{
langService
.
langEmitter
.
subscribe
(
lang
=>
translateService
.
use
(
lang
));
}
ngOnInit
()
{
...
...
@@ -37,9 +34,6 @@ export class CommentComponent implements OnInit {
this
.
isCreator
=
true
;
}
this
.
translateService
.
use
(
localStorage
.
getItem
(
'
currentLang
'
));
this
.
rxStompService
.
watch
(
`/topic/
${
this
.
comment
.
roomId
}
.comment.stream`
).
subscribe
((
message
:
Message
)
=>
{
this
.
parseIncomingMessage
(
message
);
});
}
setRead
(
comment
:
Comment
):
void
{
...
...
@@ -62,7 +56,7 @@ export class CommentComponent implements OnInit {
this
.
notification
.
show
(
`Comment '
${
comment
.
body
}
' successfully deleted.`
);
});
}
/*
parseIncomingMessage(message: Message) {
const msg = JSON.parse(message.body);
const payload = msg.payload;
...
...
@@ -78,5 +72,5 @@ export class CommentComponent implements OnInit {
}
}
}
}
}
*/
}
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