mirror of
https://github.com/wekan/wekan.git
synced 2025-12-19 17:00:13 +01:00
- and added to show only the activities a card - to display the card comments a connection to the server was needed to get the activities of the card comments, now, it's not necessary - also performance relevant. until now there were a lot of activities loaded, now only of the current card
65 lines
2.1 KiB
Text
65 lines
2.1 KiB
Text
template(name="commentForm")
|
|
.new-comment.js-new-comment(
|
|
class="{{#if commentFormIsOpen}}is-open{{/if}}")
|
|
+userAvatar(userId=currentUser._id noRemove=true)
|
|
form.js-new-comment-form
|
|
+editor(class="js-new-comment-input")
|
|
| {{getUnsavedValue 'cardComment' currentCard._id}}
|
|
.add-controls
|
|
button.primary.confirm.clear.js-add-comment(type="submit") {{_ 'comment'}}
|
|
|
|
template(name="comments")
|
|
.comments
|
|
each commentData in getComments
|
|
+comment(commentData)
|
|
|
|
template(name="comment")
|
|
.comment
|
|
+userAvatar(userId=userId)
|
|
p.comment-desc
|
|
span.comment-member
|
|
+memberName(user=user)
|
|
|
|
+inlinedForm(classNames='js-edit-comment')
|
|
+editor(autofocus=true)
|
|
= text
|
|
.edit-controls
|
|
button.primary(type="submit") {{_ 'edit'}}
|
|
.fa.fa-times-thin.js-close-inlined-form
|
|
else
|
|
.comment-text
|
|
+viewer
|
|
= text
|
|
+commentReactions(reactions=reactions commentId=_id)
|
|
span(title=createdAt).comment-meta {{ moment createdAt }}
|
|
if($eq currentUser._id userId)
|
|
+editOrDeleteComment
|
|
else if currentUser.isBoardAdmin
|
|
+editOrDeleteComment
|
|
|
|
template(name="editOrDeleteComment")
|
|
= ' - '
|
|
a.js-open-inlined-form {{_ "edit"}}
|
|
= ' - '
|
|
a.js-delete-comment {{_ "delete"}}
|
|
|
|
template(name="deleteCommentPopup")
|
|
p {{_ "comment-delete"}}
|
|
button.js-confirm.negate.full(type="submit") {{_ 'delete'}}
|
|
|
|
template(name="commentReactions")
|
|
.reactions
|
|
each reaction in reactions
|
|
span.reaction(class="{{#if isSelected reaction.userIds}}selected{{/if}}" data-codepoint="#{reaction.reactionCodepoint}" title="{{userNames reaction.userIds}}")
|
|
span.reaction-codepoint !{reaction.reactionCodepoint}
|
|
span.reaction-count #{reaction.userIds.length}
|
|
if (currentUser.isBoardMember)
|
|
a.open-comment-reaction-popup(title="{{_ 'addReactionPopup-title'}}")
|
|
i.fa.fa-smile-o
|
|
i.fa.fa-plus
|
|
|
|
template(name="addReactionPopup")
|
|
.reactions-popup
|
|
each codepoint in codepoints
|
|
span.add-comment-reaction(data-codepoint="#{codepoint}") !{codepoint}
|
|
|