Finishing user story edition
parent
ef64bf8a5f
commit
6b75e42401
|
@ -370,8 +370,8 @@ AssignedToDirective = ($rootscope, $confirm) ->
|
||||||
html = template({assignedTo: assignedTo, editable:editable})
|
html = template({assignedTo: assignedTo, editable:editable})
|
||||||
$el.html(html)
|
$el.html(html)
|
||||||
|
|
||||||
$scope.$watch $attrs.ngModel, (issue) ->
|
$scope.$watch $attrs.ngModel, (instance) ->
|
||||||
renderAssignedTo(issue)
|
renderAssignedTo(instance)
|
||||||
|
|
||||||
$el.on "click", ".user-assigned", (event) ->
|
$el.on "click", ".user-assigned", (event) ->
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
|
@ -384,7 +384,8 @@ AssignedToDirective = ($rootscope, $confirm) ->
|
||||||
title = "Remove assigned to"
|
title = "Remove assigned to"
|
||||||
subtitle = ""
|
subtitle = ""
|
||||||
$confirm.ask(title, subtitle).then =>
|
$confirm.ask(title, subtitle).then =>
|
||||||
$model.$setViewValue(null)
|
$model.$modelValue.assigned_to = null
|
||||||
|
renderAssignedTo($model.$modelValue)
|
||||||
|
|
||||||
$scope.$on "assigned-to:added", (ctx, issue) ->
|
$scope.$on "assigned-to:added", (ctx, issue) ->
|
||||||
renderAssignedTo(issue)
|
renderAssignedTo(issue)
|
||||||
|
@ -408,7 +409,7 @@ IssueStatusDirective = () ->
|
||||||
<% } else { %>
|
<% } else { %>
|
||||||
Open
|
Open
|
||||||
<% } %>
|
<% } %>
|
||||||
<span class="us-detail-status"><%= status.name %></span>
|
<span class="us-detail-status" style="color:<%= status.color %>"><%= status.name %></span>
|
||||||
</h1>
|
</h1>
|
||||||
<div class="issue-data">
|
<div class="issue-data">
|
||||||
<div class="severity-data <% if (editable) { %>clickable<% } %>">
|
<div class="severity-data <% if (editable) { %>clickable<% } %>">
|
||||||
|
|
|
@ -23,6 +23,7 @@ taiga = @.taiga
|
||||||
|
|
||||||
mixOf = @.taiga.mixOf
|
mixOf = @.taiga.mixOf
|
||||||
groupBy = @.taiga.groupBy
|
groupBy = @.taiga.groupBy
|
||||||
|
bindOnce = @.taiga.bindOnce
|
||||||
|
|
||||||
module = angular.module("taigaUserStories")
|
module = angular.module("taigaUserStories")
|
||||||
|
|
||||||
|
@ -53,7 +54,7 @@ class UserStoryDetailController extends mixOf(taiga.Controller, taiga.PageMixin)
|
||||||
loadProject: ->
|
loadProject: ->
|
||||||
return @rs.projects.get(@scope.projectId).then (project) =>
|
return @rs.projects.get(@scope.projectId).then (project) =>
|
||||||
@scope.project = project
|
@scope.project = project
|
||||||
@scope.statusList = project.issue_statuses
|
@scope.statusList = project.us_statuses
|
||||||
@scope.statusById = groupBy(project.us_statuses, (x) -> x.id)
|
@scope.statusById = groupBy(project.us_statuses, (x) -> x.id)
|
||||||
@scope.taskStatusById = groupBy(project.task_statuses, (x) -> x.id)
|
@scope.taskStatusById = groupBy(project.task_statuses, (x) -> x.id)
|
||||||
@scope.membersById = groupBy(project.memberships, (x) -> x.user)
|
@scope.membersById = groupBy(project.memberships, (x) -> x.user)
|
||||||
|
@ -69,13 +70,8 @@ class UserStoryDetailController extends mixOf(taiga.Controller, taiga.PageMixin)
|
||||||
@scope.nextUrl = "/project/#{@scope.project.slug}/us/#{@scope.us.neighbors.next.ref}" if @scope.us.neighbors.next.id?
|
@scope.nextUrl = "/project/#{@scope.project.slug}/us/#{@scope.us.neighbors.next.ref}" if @scope.us.neighbors.next.id?
|
||||||
|
|
||||||
loadTasks: ->
|
loadTasks: ->
|
||||||
# http://localhost:8000/api/v1/tasks?user_story=6
|
|
||||||
return @rs.tasks.list(@scope.projectId, null, @scope.usId).then (tasks) =>
|
return @rs.tasks.list(@scope.projectId, null, @scope.usId).then (tasks) =>
|
||||||
@scope.tasks = tasks
|
@scope.tasks = tasks
|
||||||
@scope.totalTasks = tasks.length
|
|
||||||
closedTasks = _.filter(tasks, (task) => @scope.taskStatusById[task.status].is_closed)
|
|
||||||
@scope.totalClosedTasks = closedTasks.length
|
|
||||||
@scope.usProgress = 100 * @scope.totalClosedTasks / @scope.totalTasks
|
|
||||||
|
|
||||||
loadHistory: ->
|
loadHistory: ->
|
||||||
return @rs.userstories.history(@scope.usId).then (history) =>
|
return @rs.userstories.history(@scope.usId).then (history) =>
|
||||||
|
@ -128,6 +124,22 @@ class UserStoryDetailController extends mixOf(taiga.Controller, taiga.PageMixin)
|
||||||
|
|
||||||
return "Made #{size} changes"
|
return "Made #{size} changes"
|
||||||
|
|
||||||
|
block: ->
|
||||||
|
@rootscope.$broadcast("block", @scope.us)
|
||||||
|
|
||||||
|
unblock: ->
|
||||||
|
@rootscope.$broadcast("unblock", @scope.us)
|
||||||
|
|
||||||
|
|
||||||
|
delete: ->
|
||||||
|
#TODO: i18n
|
||||||
|
title = "Delete User Story"
|
||||||
|
subtitle = @scope.us.subject
|
||||||
|
|
||||||
|
@confirm.ask(title, subtitle).then =>
|
||||||
|
@.repo.remove(@scope.us).then =>
|
||||||
|
@location.path("/project/#{@scope.project.slug}/backlog")
|
||||||
|
|
||||||
module.controller("UserStoryDetailController", UserStoryDetailController)
|
module.controller("UserStoryDetailController", UserStoryDetailController)
|
||||||
|
|
||||||
|
|
||||||
|
@ -176,8 +188,28 @@ UsStatusDetailDirective = () ->
|
||||||
<% } else { %>
|
<% } else { %>
|
||||||
Open
|
Open
|
||||||
<% } %>
|
<% } %>
|
||||||
<span class="us-detail-status"><%= status.name %></span>
|
<span class="us-detail-status" style="color:<%= status.color %>"><%= status.name %></span>
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
|
<div class="us-detail-progress-bar">
|
||||||
|
<div class="current-progress" style="width:<%- usProgress %>%"/>
|
||||||
|
<span clasS="tasks-completed">
|
||||||
|
<%- totalClosedTasks %>/<%- totalTasks %> tasks completed
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="points-per-role">
|
||||||
|
<li class="total">
|
||||||
|
<span class="points"><%- totalPoints %></span>
|
||||||
|
<span class="role">total</span>
|
||||||
|
</li>
|
||||||
|
<% _.each(rolePoints, function(rolePoint) { %>
|
||||||
|
<li class="total <% if (editable) { %>clickable<% } %>" data-role-id="<%- rolePoint.id %>">
|
||||||
|
<span class="points"><%- rolePoint.points %></span>
|
||||||
|
<span class="role"><%- rolePoint.name %></span></li>
|
||||||
|
<% }); %>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<div class="issue-data">
|
<div class="issue-data">
|
||||||
<div class="status-data <% if (editable) { %>clickable<% } %>">
|
<div class="status-data <% if (editable) { %>clickable<% } %>">
|
||||||
<span class="level" style="background-color:<%= status.color %>"></span>
|
<span class="level" style="background-color:<%= status.color %>"></span>
|
||||||
|
@ -187,29 +219,69 @@ UsStatusDetailDirective = () ->
|
||||||
</div>
|
</div>
|
||||||
""")
|
""")
|
||||||
selectionStatusTemplate = _.template("""
|
selectionStatusTemplate = _.template("""
|
||||||
<ul class="popover pop-status">
|
<ul class="popover pop-status">
|
||||||
<% _.each(statuses, function(status) { %>
|
<% _.each(statuses, function(status) { %>
|
||||||
<li><a href="" class="status" title="<%- status.name %>"
|
<li><a href="" class="status" title="<%- status.name %>"
|
||||||
data-status-id="<%- status.id %>"><%- status.name %></a></li>
|
data-status-id="<%- status.id %>"><%- status.name %></a></li>
|
||||||
<% }); %>
|
<% }); %>
|
||||||
</ul>
|
</ul>
|
||||||
|
""")
|
||||||
|
selectionPointsTemplate = _.template("""
|
||||||
|
<ul class="popover pop-points-open">
|
||||||
|
<% _.each(points, function(point) { %>
|
||||||
|
<li><a href="" class="point" title="<%- point.name %>"
|
||||||
|
data-point-id="<%- point.id %>"><%- point.name %></a>
|
||||||
|
</li>
|
||||||
|
<% }); %>
|
||||||
|
</ul>
|
||||||
""")
|
""")
|
||||||
|
|
||||||
link = ($scope, $el, $attrs, $model) ->
|
link = ($scope, $el, $attrs, $model) ->
|
||||||
editable = $attrs.editable?
|
editable = $attrs.editable?
|
||||||
|
updatingSelectedRoleId = null
|
||||||
|
|
||||||
|
showSelectPoints = () ->
|
||||||
|
us = $model.$modelValue
|
||||||
|
$el.find(".pop-points-open").remove()
|
||||||
|
$el.find(".points-per-role").append(selectionPointsTemplate({ "points": $scope.project.points }))
|
||||||
|
$el.find(".pop-points-open a[data-point-id='#{us.points[updatingSelectedRoleId]}']").addClass("active")
|
||||||
|
# If not showing role selection let's move to the left
|
||||||
|
$el.find(".pop-points-open").show()
|
||||||
|
|
||||||
|
calculateTotalPoints = (us)->
|
||||||
|
values = _.map(us.points, (v, k) -> $scope.pointsById[v].value)
|
||||||
|
values = _.filter(values, (num) -> num?)
|
||||||
|
if values.length == 0
|
||||||
|
return "?"
|
||||||
|
|
||||||
|
return _.reduce(values, (acc, num) -> acc + num)
|
||||||
|
|
||||||
renderUsstatus = (us) ->
|
renderUsstatus = (us) ->
|
||||||
status = $scope.statusById[us.status]
|
status = $scope.statusById[us.status]
|
||||||
|
rolePoints = _.clone(_.filter($scope.project.roles, "computable"), true)
|
||||||
|
_.map rolePoints, (v, k) ->
|
||||||
|
val = $scope.pointsById[us.points[v.id]].value
|
||||||
|
val = "?" if not val?
|
||||||
|
v.points = val
|
||||||
|
|
||||||
|
totalTasks = $scope.tasks.length
|
||||||
|
totalClosedTasks = _.filter($scope.tasks, (task) => $scope.taskStatusById[task.status].is_closed).length
|
||||||
html = template({
|
html = template({
|
||||||
editable: editable
|
editable: editable
|
||||||
status: status
|
status: status
|
||||||
|
totalPoints: us.total_points
|
||||||
|
rolePoints: rolePoints
|
||||||
|
totalTasks: totalTasks
|
||||||
|
totalClosedTasks: totalClosedTasks
|
||||||
|
usProgress: 100 * totalClosedTasks / totalTasks
|
||||||
})
|
})
|
||||||
$el.html(html)
|
$el.html(html)
|
||||||
$el.find(".status-data").append(selectionStatusTemplate({statuses:$scope.statusList}))
|
$el.find(".status-data").append(selectionStatusTemplate({statuses:$scope.statusList}))
|
||||||
|
|
||||||
$scope.$watch $attrs.ngModel, (us) ->
|
bindOnce $scope, "tasks", (tasks) ->
|
||||||
if us?
|
$scope.$watch $attrs.ngModel, (us) ->
|
||||||
renderUsstatus(us)
|
if us?
|
||||||
|
renderUsstatus(us)
|
||||||
|
|
||||||
if editable
|
if editable
|
||||||
$el.on "click", ".status-data", (event) ->
|
$el.on "click", ".status-data", (event) ->
|
||||||
|
@ -228,66 +300,31 @@ UsStatusDetailDirective = () ->
|
||||||
renderUsstatus($model.$modelValue)
|
renderUsstatus($model.$modelValue)
|
||||||
$el.find(".popover").hide()
|
$el.find(".popover").hide()
|
||||||
|
|
||||||
|
$el.on "click", ".total.clickable", (event) ->
|
||||||
|
event.preventDefault()
|
||||||
|
event.stopPropagation()
|
||||||
|
target = angular.element(event.currentTarget)
|
||||||
|
updatingSelectedRoleId = target.data("role-id")
|
||||||
|
showSelectPoints()
|
||||||
|
body = angular.element("body")
|
||||||
|
body.one "click", (event) ->
|
||||||
|
$el.find(".popover").hide()
|
||||||
|
|
||||||
|
$el.on "click", ".point", (event) ->
|
||||||
|
event.preventDefault()
|
||||||
|
event.stopPropagation()
|
||||||
|
|
||||||
|
target = angular.element(event.currentTarget)
|
||||||
|
$el.find(".popover").hide()
|
||||||
|
|
||||||
|
$scope.$apply () ->
|
||||||
|
us = $model.$modelValue
|
||||||
|
usPoints = _.clone(us.points, true)
|
||||||
|
usPoints[updatingSelectedRoleId] = target.data("point-id")
|
||||||
|
us.points = usPoints
|
||||||
|
us.total_points = calculateTotalPoints(us)
|
||||||
|
renderUsstatus(us)
|
||||||
|
|
||||||
return {link:link, require:"ngModel"}
|
return {link:link, require:"ngModel"}
|
||||||
|
|
||||||
module.directive("tgUsStatusDetail", UsStatusDetailDirective)
|
module.directive("tgUsStatusDetail", UsStatusDetailDirective)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#############################################################################
|
|
||||||
## User story points detail directive
|
|
||||||
#############################################################################
|
|
||||||
|
|
||||||
USPointsDetailDirective = () ->
|
|
||||||
#TODO: i18n
|
|
||||||
template = _.template("""
|
|
||||||
<ul class="points-per-role">
|
|
||||||
<li class="total">
|
|
||||||
<span class="points"><%- totalPoints %></span>
|
|
||||||
<span class="role">total</span>
|
|
||||||
</li>
|
|
||||||
<% _.each(rolePoints, function(rolePoint) { %>
|
|
||||||
<li class="total">
|
|
||||||
<span class="points"><%- rolePoint.points %></span>
|
|
||||||
<span class="role"><%- rolePoint.name %></span></li>
|
|
||||||
<% }); %>
|
|
||||||
</ul>
|
|
||||||
""")
|
|
||||||
|
|
||||||
link = ($scope, $el, $attrs, $model) ->
|
|
||||||
editable = $attrs.editable?
|
|
||||||
|
|
||||||
renderUsPointsDetail = (us) ->
|
|
||||||
|
|
||||||
rolePoints = _.clone(_.filter($scope.project.roles, "computable"), true)
|
|
||||||
_.map rolePoints, (v, k) ->
|
|
||||||
val = $scope.pointsById[us.points[v.id]].value
|
|
||||||
val = "?" if not val?
|
|
||||||
v.points = val
|
|
||||||
|
|
||||||
html = template({
|
|
||||||
editable: editable
|
|
||||||
totalPoints: us.total_points
|
|
||||||
rolePoints: rolePoints
|
|
||||||
})
|
|
||||||
$el.html(html)
|
|
||||||
|
|
||||||
$scope.$watch $attrs.ngModel, (us) ->
|
|
||||||
if us?
|
|
||||||
renderUsPointsDetail(us)
|
|
||||||
|
|
||||||
if editable
|
|
||||||
console.log "TODO"
|
|
||||||
|
|
||||||
return {link:link, require:"ngModel"}
|
|
||||||
|
|
||||||
module.directive("tgUsPointsDetail", USPointsDetailDirective)
|
|
||||||
|
|
|
@ -24,7 +24,6 @@ block content
|
||||||
div.user-story-tags(tg-tag-line, editable="true", ng-model="issue.tags")
|
div.user-story-tags(tg-tag-line, editable="true", ng-model="issue.tags")
|
||||||
|
|
||||||
section.us-content
|
section.us-content
|
||||||
// TODO Placeholder should be a WYSIWYG with issue.description
|
|
||||||
textarea(placeholder="Write a description of your issue", ng-model="issue.description", tg-markitup)
|
textarea(placeholder="Write a description of your issue", ng-model="issue.description", tg-markitup)
|
||||||
|
|
||||||
// include views/modules/attachments
|
// include views/modules/attachments
|
||||||
|
@ -36,14 +35,6 @@ block content
|
||||||
section.watchers(tg-watchers, ng-model="issue.watchers", editable="true")
|
section.watchers(tg-watchers, ng-model="issue.watchers", editable="true")
|
||||||
|
|
||||||
section.us-detail-settings
|
section.us-detail-settings
|
||||||
//TODO: remove commented from issues-detail when copied to user-story-detail
|
|
||||||
//fieldset
|
|
||||||
// label.clickable.button.button-green(for="client-requirement", ng-class="{true:'active', false:''}[issue.client_requirement]") Client requirement
|
|
||||||
// input(ng-model="issue.client_requirement", type="checkbox", id="client-requirement", name="client-requirement")
|
|
||||||
//fieldset
|
|
||||||
// label.clickable.button.button-green(for="team-requirement", ng-class="{true:'active', false:''}[issue.team_requirement]") Team requirement
|
|
||||||
// input(ng-model="issue.team_requirement", type="checkbox", id="team-requirement", name="team-requirement")
|
|
||||||
|
|
||||||
a.button.button-gray.clickable(ng-show="!issue.is_blocked", ng-click="ctrl.block()") Block
|
a.button.button-gray.clickable(ng-show="!issue.is_blocked", ng-click="ctrl.block()") Block
|
||||||
a.button.button-red(ng-click="ctrl.delete()", href="") Delete
|
a.button.button-red(ng-click="ctrl.delete()", href="") Delete
|
||||||
|
|
||||||
|
|
|
@ -46,12 +46,6 @@ block content
|
||||||
|
|
||||||
sidebar.menu-secondary.sidebar
|
sidebar.menu-secondary.sidebar
|
||||||
section.us-status(tg-us-status-detail, ng-model="us")
|
section.us-status(tg-us-status-detail, ng-model="us")
|
||||||
|
|
||||||
div.us-detail-progress-bar
|
|
||||||
div.current-progress(style="width:{{ usProgress }}%")
|
|
||||||
span.tasks-completed {{ totalClosedTasks }}/{{ totalTasks}} tasks completed
|
|
||||||
ul.points-per-role(tg-us-points-detail, ng-model="us")
|
|
||||||
|
|
||||||
section.us-assigned-to(tg-assigned-to, ng-model="us")
|
section.us-assigned-to(tg-assigned-to, ng-model="us")
|
||||||
section.watchers(tg-watchers, ng-model="us.watchers")
|
section.watchers(tg-watchers, ng-model="us.watchers")
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,8 @@
|
||||||
.button-green {
|
.button-green {
|
||||||
background: $green-taiga;
|
background: $green-taiga;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
&:hover {
|
&:hover,
|
||||||
|
&.active {
|
||||||
background: $fresh-taiga;
|
background: $fresh-taiga;
|
||||||
}
|
}
|
||||||
span {
|
span {
|
||||||
|
|
|
@ -166,6 +166,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.points-per-role {
|
.points-per-role {
|
||||||
|
position: relative;
|
||||||
li {
|
li {
|
||||||
border-right: 1px solid $grayer;
|
border-right: 1px solid $grayer;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
@ -194,6 +195,9 @@
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
.pop-points-open {
|
||||||
|
@include popover(150px, '', 30px, '', '');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.issue-data {
|
.issue-data {
|
||||||
|
|
Loading…
Reference in New Issue