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
2213b9a0
There was an error fetching the commit references. Please try again later.
Commit
2213b9a0
authored
7 years ago
by
Hagen Dreßler
Browse files
Options
Downloads
Patches
Plain Diff
Fix missing imports
parent
f268874b
1 merge request
!54
Resolve "comment creation - creator component logic"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/comment.service.ts
+2
-0
2 additions, 0 deletions
src/app/comment.service.ts
src/app/create-comment/create-comment.component.ts
+10
-3
10 additions, 3 deletions
src/app/create-comment/create-comment.component.ts
with
12 additions
and
3 deletions
src/app/comment.service.ts
+
2
−
0
View file @
2213b9a0
...
@@ -3,6 +3,8 @@ import { HttpClient, HttpHeaders } from '@angular/common/http';
...
@@ -3,6 +3,8 @@ import { HttpClient, HttpHeaders } from '@angular/common/http';
import
{
Observable
}
from
'
rxjs/Observable
'
;
import
{
Observable
}
from
'
rxjs/Observable
'
;
import
{
Comment
}
from
'
./comment
'
;
const
httpOptions
=
{
const
httpOptions
=
{
headers
:
new
HttpHeaders
({
'
Content-Type
'
:
'
application/json
'
})
headers
:
new
HttpHeaders
({
'
Content-Type
'
:
'
application/json
'
})
...
...
This diff is collapsed.
Click to expand it.
src/app/create-comment/create-comment.component.ts
+
10
−
3
View file @
2213b9a0
...
@@ -3,6 +3,7 @@ import { ActivatedRoute } from '@angular/router';
...
@@ -3,6 +3,7 @@ import { ActivatedRoute } from '@angular/router';
import
{
Location
}
from
'
@angular/common
'
;
import
{
Location
}
from
'
@angular/common
'
;
import
{
Room
}
from
'
../room
'
;
import
{
Room
}
from
'
../room
'
;
import
{
Comment
}
from
'
../comment
'
;
import
{
RoomService
}
from
'
../room.service
'
;
import
{
RoomService
}
from
'
../room.service
'
;
import
{
CommentService
}
from
'
../comment.service
'
;
import
{
CommentService
}
from
'
../comment.service
'
;
...
@@ -34,9 +35,15 @@ export class CreateCommentComponent implements OnInit {
...
@@ -34,9 +35,15 @@ export class CreateCommentComponent implements OnInit {
send
(
subject
:
string
,
body
:
string
):
void
{
send
(
subject
:
string
,
body
:
string
):
void
{
subject
=
subject
.
trim
();
subject
=
subject
.
trim
();
body
=
body
.
trim
();
body
=
body
.
trim
();
if
(
!
subject
||
!
body
)
{
return
;
}
if
(
!
subject
||
!
body
)
{
this
.
commentService
.
addComment
(
{
roomId
:
this
.
room
.
id
,
subject
:
subject
,
return
;
body
:
body
,
creationTimestamp
:
Date
.
now
()
}
as
Comment
).
subscribe
();
}
this
.
commentService
.
addComment
({
roomId
:
this
.
room
.
id
,
subject
:
subject
,
body
:
body
,
creationTimestamp
:
Date
.
now
()
}
as
Comment
).
subscribe
();
}
}
goBack
():
void
{
goBack
():
void
{
...
...
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