Remove old tgChange directive code.

stable
Andrey Antukh 2014-09-07 12:25:53 +02:00
parent 5b173463ed
commit e4881749b7
1 changed files with 0 additions and 270 deletions

View File

@ -26,276 +26,6 @@ typeIsArray = @.taiga.typeIsArray
module = angular.module("taigaCommon", []) module = angular.module("taigaCommon", [])
#############################################################################
## Change (comment and history mode) directive
#############################################################################
ChangesDirective = ->
containerTemplate = _.template("""
<div>
<% if (showMoreEnabled){ %>
<a href="" title="Show more" class="show-more show-more-comments">
+ Show previous comments (<%- howManyMore %> more)
</a>
<% } %>
</div>
""") # TODO: i18n
commentBaseTemplate = _.template("""
<div class="entry comment-single <% if(hidden){ %>hidden<% }%>">
<div class="comment-user activity-comment">
<a class="avatar" href="" title="<%- userFullName %>">
<img src="<%- avatar %>" alt="<%- userFullName %>">
</a>
</div>
<div class="comment-content">
<a class="username" href="" title="<%- userFullName %>">
<%- userFullName %>
</a>
<% if(hasChanges){ %>
<div class="us-activity">
<a class="activity-title" href="" title="Show activity">
<span>
<%- changesText %>
</span>
<span class="icon icon-arrow-up">
</span>
</a>
</div>
<% } %>
<div class="comment wysiwyg">
<%= comment %>
</div>
<div class="date">
<%- creationDate %>
</div>
</div>
</div>
""")
changeBaseTemplate = _.template("""
<div class="entry activity-single <% if(hidden){ %>hidden<% }%>">
<div class="activity-user">
<a class="avatar" href="" title="<%- userFullName %>">
<img src="<%- avatar %>" alt="<%- userFullName %>">
</a>
</div>
<div class="activity-content">
<div class="activity-username">
<a class="username" href="" title="<%- userFullName %>">
<%- userFullName %>
</a>
<span class="date">
<%- creationDate %>
</span>
</div>
<div class="comment wysiwyg">
<%= comment %>
</div>
</div>
</div>
""")
standardChangeFromToTemplate = _.template("""
<div class="activity-inner">
<div class="activity-changed">
<span><%- name %></span>
</div>
<div class="activity-fromto">
<p>
<strong> from </strong> <br />
<span><%= from %></span>
</p>
<p>
<strong> to </strong> <br />
<span><%= to %></span>
</p>
</div>
</div>
""") # TODO: i18n
descriptionChangeTemplate = _.template("""
<div class="activity-inner">
<div class="activity-changed">
<span><%- name %></span>
</div>
<div class="activity-fromto">
<p>
<span><%= diff %></span>
</p>
</div>
</div>
""")
pointsChangeTemplate = _.template("""
<% _.each(points, function(point, name) { %>
<div class="activity-inner">
<div class="activity-changed">
<span><%- name %> points</span>
</div>
<div class="activity-fromto">
<p>
<strong> from </strong> <br />
<span><%= point[0] %></span>
</p>
<p>
<strong> to </strong> <br />
<span><%= point[1] %></span>
</p>
</div>
</div>
<% }); %>
""") # TODO: i18n
attachmentTemplate = _.template("""
<div class="activity-inner">
<div class="activity-changed">
<span><%- name %></span>
</div>
<div class="activity-fromto">
<%- description %>
</div>
</div>
""")
link = ($scope, $el, $attrs, $model) ->
$.uncollapsedEntries = null
countChanges = (comment) ->
return _.keys(comment.values_diff).length
buildChangesText = (comment) ->
size = countChanges(comment)
if size == 1
return "Made #{size} change" # TODO: i18n
return "Made #{size} changes" # TODO: i18n
renderEntries = (change, parentDomNode) ->
_.each change.values_diff, (modification, name) ->
if name == "description"
parentDomNode.append(descriptionChangeTemplate({
name: name
diff: modification[1]
}))
else if name == "points"
parentDomNode.append(pointsChangeTemplate({
points: modification
}))
else if name == "attachments"
_.each modification, (attachmentChanges, attachmentType) ->
if attachmentType == "new"
_.each attachmentChanges, (attachmentChange) ->
parentDomNode.append(attachmentTemplate({
name: "New attachment" # TODO: i18n
description: attachmentChange.filename
}))
else if attachmentType == "deleted" # TODO: i18n
_.each attachmentChanges, (attachmentChange) ->
parentDomNode.append(attachmentTemplate({
name: "Deleted attachment"
description: attachmentChange.filename
}))
else
name = "Updated attachment"
_.each attachmentChanges, (attachmentChange) ->
parentDomNode.append(attachmentTemplate({
name: "Updated attachment" # TODO: i18n
description: attachmentChange[0].filename
}))
else if name == "assigned_to"
parentDomNode.append(standardChangeFromToTemplate({
name: name
from: prettyPrintModification(modification[0]) ? "Unassigned" # TODO: i18n
to: prettyPrintModification(modification[1]) ? "Unassigned" # TODO: i18n
}))
else
parentDomNode.append(standardChangeFromToTemplate({
name: name
from: prettyPrintModification(modification[0])
to: prettyPrintModification(modification[1])
}))
renderComment = (comment, containerDomNode, hidden) ->
html = commentBaseTemplate({
avatar: getUserAvatar(comment.user.pk)
userFullName: getUserFullName(comment.user.pk)
creationDate: moment(comment.created_at).format("DD MMM YYYY HH:mm")
comment: comment.comment_html
changesText: buildChangesText(comment)
hasChanges: countChanges(comment) > 0
hidden: hidden
})
entryDomNode = $(html)
activityContentDom = entryDomNode.find(".comment-content .us-activity")
renderEntries(comment, activityContentDom)
containerDomNode.append(entryDomNode)
renderChange = (change, containerDomNode, hidden) ->
html = changeBaseTemplate({
avatar: getUserAvatar(change.user.pk)
userFullName: getUserFullName(change.user.pk)
creationDate: moment(change.created_at).format("DD MMM YYYY HH:mm")
comment: change.comment_html
hidden: hidden
})
entryDomNode = $(html)
activityContentDom = entryDomNode.find(".activity-content")
renderEntries(change, activityContentDom)
containerDomNode.append(entryDomNode)
getUserFullName = (userId) ->
return $scope.usersById[userId]?.full_name_display
getUserAvatar = (userId) ->
return $scope.usersById[userId]?.photo
prettyPrintModification = (value) ->
if typeIsArray(value)
if value.length == 0
#TODO i18n
return "None" # TODO: i18n
return value.join(", ")
if value == ""
#TODO i18n
return "None" # TODO: i18n
return value
$scope.$watch $attrs.ngModel, (changes) ->
if not changes?
return
showMoreEnabled = $.uncollapsedEntries == null and changes.length > 2
howManyMore = changes.length - 2
html = containerTemplate({
showMoreEnabled: showMoreEnabled
howManyMore: howManyMore
})
containerDomNode = $(html)
_.each changes, (change, index) ->
hidden = showMoreEnabled and index < howManyMore
if $attrs.mode == "comment"
renderComment(change, containerDomNode, hidden)
else
renderChange(change, containerDomNode, hidden)
$el.html(containerDomNode)
$el.on "click", ".activity-title", (event) ->
event.preventDefault()
$el.find(".activity-inner").toggleClass("active")
$el.on "click", ".show-more", (event) ->
event.preventDefault()
target = angular.element(event.currentTarget)
target.hide()
$el.find(".entry.hidden").removeClass("hidden")
$.uncollapsedEntries = true
$scope.$on "$destroy", ->
$el.off()
return {link:link, require:"ngModel"}
module.directive("tgChanges", ChangesDirective)
############################################################################# #############################################################################
## Permission directive, hide elements when necessary ## Permission directive, hide elements when necessary
############################################################################# #############################################################################