123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- template(name="activities")
- .activities.js-sidebar-activities
- //- We should use Template.dynamic here but there is a bug with
- //- blaze-components: https://github.com/peerlibrary/meteor-blaze-components/issues/30
- if $eq mode "board"
- +boardActivities
- else
- +cardActivities
- template(name="boardActivities")
- each activityData in currentBoard.activities
- +activity(activity=activityData card=card mode=mode)
- template(name="cardActivities")
- each activityData in currentCard.activities
- +activity(activity=activityData card=card mode=mode)
- template(name="activity")
- .activity
- +userAvatar(userId=activity.user._id)
- p.activity-desc
- +memberName(user=activity.user)
- //- attachment activity -------------------------------------------------
- if($eq activity.activityType 'deleteAttachment')
- | {{{_ 'activity-delete-attach' cardLink}}}.
- if($eq activity.activityType 'addAttachment')
- | {{{_ 'activity-attached' attachmentLink cardLink}}}.
- if($neq mode 'board')
- if activity.attachment.isImage
- img.attachment-image-preview(src=activity.attachment.url)
- //- board activity ------------------------------------------------------
- if($eq mode 'board')
- if($eq activity.activityType 'createBoard')
- | {{_ 'activity-created' boardLabel}}.
- if($eq activity.activityType 'importBoard')
- | {{{_ 'activity-imported-board' boardLabel sourceLink}}}.
- if($eq activity.activityType 'addBoardMember')
- | {{{_ 'activity-added' memberLink boardLabel}}}.
- if($eq activity.activityType 'removeBoardMember')
- | {{{_ 'activity-excluded' memberLink boardLabel}}}.
- //- card activity -------------------------------------------------------
- if($eq activity.activityType 'createCard')
- if($eq mode 'card')
- | {{{_ 'activity-added' cardLabel activity.listName}}}.
- else
- | {{{_ 'activity-added' cardLabel boardLabel}}}.
- if($eq activity.activityType 'importCard')
- | {{{_ 'activity-imported' cardLink boardLabel sourceLink}}}.
- if($eq activity.activityType 'moveCard')
- | {{{_ 'activity-moved' cardLabel activity.oldList.title activity.list.title}}}.
- if($eq activity.activityType 'moveCardBoard')
- | {{{_ 'activity-moved' cardLink activity.oldBoardName activity.boardName}}}.
- if($eq activity.activityType 'archivedCard')
- | {{{_ 'activity-archived' cardLink}}}.
- if($eq activity.activityType 'restoredCard')
- | {{{_ 'activity-sent' cardLink boardLabel}}}.
- //- checklist activity --------------------------------------------------
- if($eq activity.activityType 'addChecklist')
- | {{{_ 'activity-checklist-added' cardLink}}}.
- if($eq mode 'card')
- .activity-checklist
- +viewer
- = activity.checklist.title
- else
- a.activity-checklist(href="{{ activity.card.absoluteUrl }}")
- +viewer
- = activity.checklist.title
- if($eq activity.activityType 'removedChecklist')
- | {{{_ 'activity-checklist-removed' cardLink}}}.
- if($eq activity.activityType 'completeChecklist')
- | {{{_ 'activity-checklist-completed' activity.checklist.title cardLink}}}.
- if($eq activity.activityType 'uncompleteChecklist')
- | {{{_ 'activity-checklist-uncompleted' activity.checklist.title cardLink}}}.
- if($eq activity.activityType 'checkedItem')
- | {{{_ 'activity-checked-item' checkItem activity.checklist.title cardLink}}}.
- if($eq activity.activityType 'uncheckedItem')
- | {{{_ 'activity-unchecked-item' checkItem activity.checklist.title cardLink}}}.
- if($eq activity.activityType 'addChecklistItem')
- | {{{_ 'activity-checklist-item-added' activity.checklist.title cardLink}}}.
- .activity-checklist(href="{{ activity.card.absoluteUrl }}")
- +viewer
- = activity.checklistItem.title
- if($eq activity.activityType 'removedChecklistItem')
- | {{{_ 'activity-checklist-item-removed' activity.checklist.title cardLink}}}.
- //- comment activity ----------------------------------------------------
- if($eq mode 'card')
- //- if we are in card mode we display the comment in a way that it
- //- can be edited by the owner
- if($eq activity.activityType 'addComment')
- +inlinedForm(classNames='js-edit-comment')
- +editor(autofocus=true)
- = activity.comment.text
- .edit-controls
- button.primary(type="submit") {{_ 'edit'}}
- else
- .activity-comment
- +viewer
- = activity.comment.text
- span(title=activity.createdAt).activity-meta {{ moment activity.createdAt }}
- if ($eq currentUser._id activity.comment.userId)
- = ' - '
- a.js-open-inlined-form {{_ "edit"}}
- = ' - '
- a.js-delete-comment {{_ "delete"}}
- if($eq activity.activityType 'deleteComment')
- | {{{_ 'activity-deleteComment' currentData.commentId}}}.
- if($eq activity.activityType 'editComment')
- | {{{_ 'activity-editComment' currentData.commentId}}}.
- else
- //- if we are not in card mode we only display a summary of the comment
- if($eq activity.activityType 'addComment')
- | {{{_ 'activity-on' cardLink}}}
- a.activity-comment(href="{{ activity.card.absoluteUrl }}")
- +viewer
- = activity.comment.text
- //- customField activity ------------------------------------------------
- if($eq mode 'board')
- if($eq activity.activityType 'createCustomField')
- | {{_ 'activity-customfield-created' customField}}.
- if($eq activity.activityType 'setCustomField')
- | {{{_ 'activity-set-customfield' lastCustomField lastCustomFieldValue cardLink}}}.
- if($eq activity.activityType 'unsetCustomField')
- | {{{_ 'activity-unset-customfield' lastCustomField cardLink}}}.
- //- label activity ------------------------------------------------------
- if($eq activity.activityType 'addedLabel')
- | {{{_ 'activity-added-label' lastLabel cardLink}}}.
- if($eq activity.activityType 'removedLabel')
- | {{{_ 'activity-removed-label' lastLabel cardLink}}}.
- //- list activity -------------------------------------------------------
- if($neq mode 'card')
- if($eq activity.activityType 'createList')
- | {{{_ 'activity-added' listLabel boardLabel}}}.
- if($eq activity.activityType 'importList')
- | {{{_ 'activity-imported' listLabel boardLabel sourceLink}}}.
- if($eq activity.activityType 'removeList')
- | {{{_ 'activity-removed' activity.title boardLabel}}}.
- if($eq activity.activityType 'archivedList')
- | {{_ 'activity-archived' listLabel}}.
- //- member activity ----------------------------------------------------
- if($eq activity.activityType 'joinMember')
- if($eq user._id activity.member._id)
- | {{{_ 'activity-joined' cardLink}}}.
- else
- | {{{_ 'activity-added' memberLink cardLink}}}.
- if($eq activity.activityType 'unjoinMember')
- if($eq user._id activity.member._id)
- | {{{_ 'activity-unjoined' cardLink}}}.
- else
- | {{{_ 'activity-removed' memberLink cardLink}}}.
- //- swimlane activity --------------------------------------------------
- if($neq mode 'card')
- if($eq activity.activityType 'createSwimlane')
- | {{{_ 'activity-added' activity.swimlane.title boardLabel}}}.
- if($eq activity.activityType 'archivedSwimlane')
- | {{_ 'activity-archived' activity.swimlane.title}}.
- //- I don't understand this part ----------------------------------------
- if(currentData.timeKey)
- | {{{_ activity.activityType }}}
- = ' '
- i(title=currentData.timeValue).activity-meta {{ moment currentData.timeValue 'LLL' }}
- if (currentData.timeOldValue)
- = ' '
- | {{{_ "previous_as" }}}
- = ' '
- i(title=currentData.timeOldValue).activity-meta {{ moment currentData.timeOldValue 'LLL' }}
- = ' @'
- else if(currentData.timeValue)
- | {{{_ activity.activityType currentData.timeValue}}}
- span(title=activity.createdAt).activity-meta {{ moment activity.createdAt }}
|