2020-02-25 21:11:36 +01:00
< template >
< div class = "content details has-top-border" >
< h1 >
< span class = "icon is-grey" >
< icon : icon = "['far', 'comments']" / >
< / span >
Comments
< / h1 >
< div class = "comments" >
< progress class = "progress is-small is-info" max = "100" v-if = "taskCommentService.loading" > Loading comments... < / progress >
< div class = "media comment" v-for = "c in comments" :key="c.id" >
< figure class = "media-left" >
2020-03-01 21:58:58 +01:00
< img class = "image is-avatar" :src = "c.author.getAvatarUrl(48)" alt = "" width = "48" height = "48" / >
2020-02-25 21:11:36 +01:00
< / figure >
< div class = "media-content" >
< div class = "form" v-if = "isCommentEdit && commentEdit.id === c.id" >
< div class = "field" >
< textarea class = "textarea" : class = "{'is-loading': taskCommentService.loading}" placeholder = "Add your comment..." v-model = "commentEdit.comment" @keyup.ctrl.enter="editComment()" > < / textarea >
< / div >
< div class = "field" >
< button class = "button is-primary" : class = "{'is-loading': taskCommentService.loading}" @click ="editComment()" : disabled = "commentEdit.comment === ''" > Comment < / button >
< a @ click = "() => isCommentEdit = false" > Cancel < / a >
< / div >
< / div >
< div class = "content" v-else >
< strong > { { c . author . username } } < / strong > & nbsp ;
< small v-tooltip = "formatDate(c.created)" > {{ formatDateSince ( c.created ) }} < / small >
< small v-if = "+new Date(c.created) !== +new Date(c.updated)" v-tooltip="formatDate(c.updated)" > · edited {{ formatDateSince ( c.updated ) }} < / small >
< br / >
< p >
{ { c . comment } }
< / p >
< div class = "comment-actions" >
< a @click ="toggleEdit(c)" > Edit < / a > & nbsp ; · & nbsp ;
< a @click ="toggleDelete(c.id)" > Remove < / a >
< / div >
< / div >
< / div >
< / div >
< div class = "media comment" >
< figure class = "media-left" >
2020-03-01 21:58:58 +01:00
< img class = "image is-avatar" :src = "user.infos.getAvatarUrl(48)" alt = "" width = "48" height = "48" / >
2020-02-25 21:11:36 +01:00
< / figure >
< div class = "media-content" >
< div class = "form" >
< div class = "field" >
< textarea class = "textarea" : class = "{'is-loading': taskCommentService.loading && !isCommentEdit}" placeholder = "Add your comment..." v-model = "newComment.comment" @keyup.ctrl.enter="addComment()" > < / textarea >
< / div >
< div class = "field" >
< button class = "button is-primary" : class = "{'is-loading': taskCommentService.loading && !isCommentEdit}" @click ="addComment()" : disabled = "newComment.comment === ''" > Comment < / button >
< / div >
< / div >
< / div >
< / div >
< / div >
< modal
v - if = "showDeleteModal"
@ close = "showDeleteModal = false"
@ submit = "deleteComment()" >
< span slot = "header" > Delete this comment < / span >
< p slot = "text" > Are you sure you want to delete this comment ?
< br / > This < b > CANNOT BE UNDONE ! < / b > < / p >
< / modal >
< / div >
< / template >
< script >
import TaskCommentService from '../../../services/taskComment'
import TaskCommentModel from '../../../models/taskComment'
import auth from '../../../auth'
export default {
name : 'comments' ,
props : {
taskID : {
type : Number ,
required : true ,
}
} ,
data ( ) {
return {
comments : [ ] ,
user : auth . user ,
showDeleteModal : false ,
commentToDelete : TaskCommentModel ,
isCommentEdit : false ,
commentEdit : TaskCommentModel ,
taskCommentService : TaskCommentService ,
newComment : TaskCommentModel ,
}
} ,
created ( ) {
this . taskCommentService = new TaskCommentService ( )
2020-04-12 23:54:46 +02:00
this . newComment = new TaskCommentModel ( { taskId : this . taskID } )
this . commentEdit = new TaskCommentModel ( { taskId : this . taskID } )
this . commentToDelete = new TaskCommentModel ( { taskId : this . taskID } )
2020-02-25 21:11:36 +01:00
this . comments = [ ]
} ,
mounted ( ) {
this . loadComments ( )
} ,
2020-03-23 18:29:25 +01:00
watch : {
taskID ( ) {
this . loadComments ( )
}
} ,
2020-02-25 21:11:36 +01:00
methods : {
loadComments ( ) {
2020-04-12 23:54:46 +02:00
this . taskCommentService . getAll ( { taskId : this . taskID } )
2020-02-25 21:11:36 +01:00
. then ( r => {
this . $set ( this , 'comments' , r )
} )
. catch ( e => {
this . error ( e , this )
} )
} ,
addComment ( ) {
if ( this . newComment . comment === '' ) {
return
}
this . taskCommentService . create ( this . newComment )
. then ( r => {
this . comments . push ( r )
this . success ( { message : 'The comment was sucessfully added.' } , this )
this . newComment . comment = ''
} )
. catch ( e => {
this . error ( e , this )
} )
} ,
toggleEdit ( comment ) {
this . isCommentEdit = ! this . isCommentEdit
this . commentEdit = comment
} ,
toggleDelete ( commentId ) {
this . showDeleteModal = ! this . showDeleteModal
this . commentToDelete . id = commentId
} ,
editComment ( ) {
if ( this . commentEdit . comment === '' ) {
return
}
2020-04-12 23:54:46 +02:00
this . commentEdit . taskId = this . taskID
2020-02-25 21:11:36 +01:00
this . taskCommentService . update ( this . commentEdit )
. then ( r => {
for ( const c in this . comments ) {
if ( this . comments [ c ] . id === this . commentEdit . id ) {
this . $set ( this . comments , c , r )
}
}
this . success ( { message : 'The comment was successfully updated.' } , this )
} )
. catch ( e => {
this . error ( e , this )
} )
. finally ( ( ) => {
this . isCommentEdit = false
} )
} ,
deleteComment ( ) {
this . taskCommentService . delete ( this . commentToDelete )
. then ( r => {
for ( const a in this . comments ) {
if ( this . comments [ a ] . id === this . commentToDelete . id ) {
this . comments . splice ( a , 1 )
}
}
this . success ( r , this )
} )
. catch ( e => {
this . error ( e , this )
} )
. finally ( ( ) => {
this . showDeleteModal = false
} )
} ,
} ,
}
< / script >