Adding graph to taskboard
parent
dc7a89368e
commit
85afb71d90
|
@ -236,6 +236,7 @@ BacklogDirective = ($repo, $rootscope) ->
|
||||||
resortAndSave()
|
resortAndSave()
|
||||||
|
|
||||||
onAddItem = (event) ->
|
onAddItem = (event) ->
|
||||||
|
console.log "onAddItem", event
|
||||||
item = angular.element(event.item)
|
item = angular.element(event.item)
|
||||||
itemScope = item.scope()
|
itemScope = item.scope()
|
||||||
itemIndex = item.index()
|
itemIndex = item.index()
|
||||||
|
@ -251,6 +252,7 @@ BacklogDirective = ($repo, $rootscope) ->
|
||||||
resortAndSave()
|
resortAndSave()
|
||||||
|
|
||||||
onRemoveItem = (event) ->
|
onRemoveItem = (event) ->
|
||||||
|
console.log "onRemoveItem", event
|
||||||
item = angular.element(event.item)
|
item = angular.element(event.item)
|
||||||
itemScope = item.scope()
|
itemScope = item.scope()
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
###
|
###
|
||||||
|
|
||||||
taiga = @.taiga
|
taiga = @.taiga
|
||||||
|
toggleText = @.taiga.toggleText
|
||||||
mixOf = @.taiga.mixOf
|
mixOf = @.taiga.mixOf
|
||||||
groupBy = @.taiga.groupBy
|
groupBy = @.taiga.groupBy
|
||||||
bindOnce = @.taiga.bindOnce
|
bindOnce = @.taiga.bindOnce
|
||||||
|
@ -151,7 +151,7 @@ module.controller("TaskboardController", TaskboardController)
|
||||||
## TaskboardDirective
|
## TaskboardDirective
|
||||||
#############################################################################
|
#############################################################################
|
||||||
|
|
||||||
TaskboardDirective = ->
|
TaskboardDirective = ($rootscope) ->
|
||||||
|
|
||||||
#########################
|
#########################
|
||||||
## Drag & Drop Link
|
## Drag & Drop Link
|
||||||
|
@ -164,6 +164,12 @@ TaskboardDirective = ->
|
||||||
$ctrl = $el.controller()
|
$ctrl = $el.controller()
|
||||||
linkSortable($scope, $el, $attrs, $ctrl)
|
linkSortable($scope, $el, $attrs, $ctrl)
|
||||||
|
|
||||||
|
$el.on "click", ".toggle-analytics-visibility", (event) ->
|
||||||
|
event.preventDefault()
|
||||||
|
target = angular.element(event.currentTarget)
|
||||||
|
toggleText(target, ["Hide statistics", "Show statistics"]) # TODO: i18n
|
||||||
|
$rootscope.$broadcast("taskboard:graph:toggle-visibility")
|
||||||
|
|
||||||
$scope.$on "$destroy", ->
|
$scope.$on "$destroy", ->
|
||||||
$el.off()
|
$el.off()
|
||||||
|
|
||||||
|
@ -268,6 +274,80 @@ TaskboardUsPointsDirective = ($repo, $confirm) ->
|
||||||
return {link: link}
|
return {link: link}
|
||||||
|
|
||||||
|
|
||||||
module.directive("tgTaskboard", TaskboardDirective)
|
#############################################################################
|
||||||
|
## Sprint burndown graph directive
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
|
SprintGraphDirective = ->
|
||||||
|
redrawChart = (element, dataToDraw) ->
|
||||||
|
width = element.width()
|
||||||
|
element.height(240)
|
||||||
|
|
||||||
|
days = _.map(dataToDraw, (x) -> moment(x.day))
|
||||||
|
|
||||||
|
data = []
|
||||||
|
data.unshift({
|
||||||
|
data: _.zip(days, _.map(dataToDraw, (d) -> d.optimal_points))
|
||||||
|
lines:
|
||||||
|
fillColor : "rgba(120,120,120,0.2)"
|
||||||
|
})
|
||||||
|
data.unshift({
|
||||||
|
data: _.zip(days, _.map(dataToDraw, (d) -> d.open_points))
|
||||||
|
lines:
|
||||||
|
fillColor : "rgba(102,153,51,0.3)"
|
||||||
|
})
|
||||||
|
|
||||||
|
options =
|
||||||
|
grid:
|
||||||
|
borderWidth: { top: 0, right: 1, left:0, bottom: 0 }
|
||||||
|
borderColor: '#ccc'
|
||||||
|
xaxis:
|
||||||
|
tickSize: [1, "day"]
|
||||||
|
min: days[0]
|
||||||
|
max: _.last(days)
|
||||||
|
mode: "time"
|
||||||
|
daysNames: days
|
||||||
|
axisLabel: 'Day'
|
||||||
|
axisLabelUseCanvas: true
|
||||||
|
axisLabelFontSizePixels: 12
|
||||||
|
axisLabelFontFamily: 'Verdana, Arial, Helvetica, Tahoma, sans-serif'
|
||||||
|
axisLabelPadding: 5
|
||||||
|
yaxis:
|
||||||
|
min: 0
|
||||||
|
series:
|
||||||
|
shadowSize: 0
|
||||||
|
lines:
|
||||||
|
show: true
|
||||||
|
fill: true
|
||||||
|
points:
|
||||||
|
show: true
|
||||||
|
fill: true
|
||||||
|
radius: 4
|
||||||
|
lineWidth: 2
|
||||||
|
colors: ["rgba(102,153,51,1)", "rgba(120,120,120,0.2)"]
|
||||||
|
|
||||||
|
element.empty()
|
||||||
|
element.plot(data, options).data("plot")
|
||||||
|
|
||||||
|
link = ($scope, $el, $attrs) ->
|
||||||
|
element = angular.element($el)
|
||||||
|
$scope.$watch 'stats', (value) ->
|
||||||
|
if $scope.stats?
|
||||||
|
redrawChart(element, $scope.stats.days)
|
||||||
|
|
||||||
|
$scope.$on "resize", ->
|
||||||
|
redrawChart(element, $scope.stats.days)
|
||||||
|
|
||||||
|
$scope.$on "taskboard:graph:toggle-visibility", ->
|
||||||
|
$el.toggle()
|
||||||
|
|
||||||
|
$scope.$on "$destroy", ->
|
||||||
|
$el.off()
|
||||||
|
|
||||||
|
return {link: link}
|
||||||
|
|
||||||
|
|
||||||
|
module.directive("tgTaskboard", ["$rootScope", TaskboardDirective])
|
||||||
module.directive("tgTaskboardRowSizeFixer", TaskboardRowSizeFixer)
|
module.directive("tgTaskboardRowSizeFixer", TaskboardRowSizeFixer)
|
||||||
module.directive("tgTaskboardUsPoints", ["$tgRepo", "$tgConfirm", TaskboardUsPointsDirective])
|
module.directive("tgTaskboardUsPoints", ["$tgRepo", "$tgConfirm", TaskboardUsPointsDirective])
|
||||||
|
module.directive("tgSprintGraph", SprintGraphDirective)
|
||||||
|
|
|
@ -12,7 +12,11 @@ block content
|
||||||
span.green(tg-bo-html="sprint.name")
|
span.green(tg-bo-html="sprint.name")
|
||||||
span.date(tg-date-range="sprint.estimated_start,sprint.estimated_finish")
|
span.date(tg-date-range="sprint.estimated_start,sprint.estimated_finish")
|
||||||
include views/components/sprint-summary
|
include views/components/sprint-summary
|
||||||
|
|
||||||
|
div.graphics-container
|
||||||
|
div.burndown.hidden(tg-sprint-graph)
|
||||||
include views/modules/burndown
|
include views/modules/burndown
|
||||||
|
|
||||||
include views/modules/taskboard-table
|
include views/modules/taskboard-table
|
||||||
|
|
||||||
div.lightbox.lightbox_add-new-us.hidden(tg-lb-create-edit-task)
|
div.lightbox.lightbox_add-new-us.hidden(tg-lb-create-edit-task)
|
||||||
|
|
|
@ -33,3 +33,5 @@ div.summary.large-summary
|
||||||
span.icon.icon-iocaine
|
span.icon.icon-iocaine
|
||||||
span.number(ng-bind="stats.iocaine_doses|default:'--'")
|
span.number(ng-bind="stats.iocaine_doses|default:'--'")
|
||||||
span.description iocaine<br />doses
|
span.description iocaine<br />doses
|
||||||
|
|
||||||
|
a.button.button-green.toggle-analytics-visibility(href="", title="Show statistics") Show statistics
|
||||||
|
|
Loading…
Reference in New Issue