User Story row
parent
c4d52616ee
commit
4344b72f7a
|
@ -393,6 +393,7 @@
|
|||
},
|
||||
"EPICS": {
|
||||
"TITLE": "EPICS",
|
||||
"EPIC": "EPIC",
|
||||
"DASHBOARD": {
|
||||
"ADD": "+ ADD EPIC",
|
||||
"UNASSIGNED": "Unassigned"
|
||||
|
|
|
@ -26,6 +26,7 @@ class EpicRowController
|
|||
]
|
||||
|
||||
constructor: (@rs, @confirm) ->
|
||||
@.displayUserStories = false
|
||||
@._calculateProgressBar()
|
||||
|
||||
_calculateProgressBar: () ->
|
||||
|
@ -50,4 +51,21 @@ class EpicRowController
|
|||
|
||||
return @rs.epics.patch(id, patch).then(onSuccess, onError)
|
||||
|
||||
requestUserStories: (epic) ->
|
||||
if @.displayUserStories == false
|
||||
id = @.epic.get('id')
|
||||
|
||||
onSuccess = (data) =>
|
||||
@.epicStories = data
|
||||
console.log @.epicStories.toJS()
|
||||
@.displayUserStories = true
|
||||
@confirm.notify('success')
|
||||
|
||||
onError = (data) =>
|
||||
@confirm.notify('error')
|
||||
|
||||
return @rs.userstories.listInEpics(id).then(onSuccess, onError)
|
||||
else
|
||||
@.displayUserStories = false
|
||||
|
||||
module.controller("EpicRowCtrl", EpicRowController)
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
.epic-row(
|
||||
ng-class="{'is-blocked': vm.epic.get('is_blocked'), 'is-closed': vm.epic.get('is_closed')}"
|
||||
ng-class="{'is-blocked': vm.epic.get('is_blocked'), 'is-closed': vm.epic.get('is_closed'), 'unfold': vm.displayUserStories}"
|
||||
ng-click="vm.requestUserStories(vm.epic)"
|
||||
)
|
||||
tg-svg(
|
||||
tg-svg.icon-drag(
|
||||
svg-icon="icon-drag"
|
||||
)
|
||||
.vote(
|
||||
|
@ -12,15 +13,23 @@
|
|||
span {{::vm.epic.get('total_voters')}}
|
||||
|
||||
.name(ng-if="vm.column.name")
|
||||
- var hash = "#";
|
||||
a(
|
||||
tg-nav="project-epic-detail:project=vm.project.get('slug')"
|
||||
ng-attr-title="{{::vm.epic.get('subject')}}"
|
||||
) {{::vm.epic.get('subject')}}
|
||||
) #{hash}{{::vm.epic.get('ref')}} {{::vm.epic.get('subject')}}
|
||||
span.epic-pill(
|
||||
ng-style="::{'background-color': vm.epic.get('color')}"
|
||||
translate="EPICS.EPIC"
|
||||
)
|
||||
tg-svg(
|
||||
svg-icon="icon-arrow-down"
|
||||
ng-if="vm.epic.getIn(['user_stories_counts', 'opened']) || vm.epic.getIn(['user_stories_counts', 'closed'])"
|
||||
)
|
||||
|
||||
.project(ng-if="vm.column.project") {{::vm.epic.get('project')}}
|
||||
.project(ng-if="vm.column.project")
|
||||
.sprint(
|
||||
ng-if="vm.column.sprint"
|
||||
translate="EPICS.TABLE.SPRINT"
|
||||
)
|
||||
.assigned(
|
||||
ng-if="vm.column.assigned && vm.epic.get('assigned_to')"
|
||||
|
@ -68,3 +77,12 @@
|
|||
ng-if="::vm.percentage"
|
||||
ng-attr-width="::vm.percentage"
|
||||
)
|
||||
.epic-stories-wrapper(ng-if="vm.displayUserStories && vm.epicStories")
|
||||
|
||||
.epic-story(tg-repeat="story in vm.epicStories track by story.get('id')")
|
||||
tg-story-row(
|
||||
epic="vm.epic"
|
||||
story="story"
|
||||
project="vm.project"
|
||||
column="vm.column"
|
||||
)
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
@import '../../../../styles/dependencies/mixins/epics-dashboard';
|
||||
|
||||
.epic-row {
|
||||
@include epics-table;
|
||||
@include font-size(small);
|
||||
align-items: center;
|
||||
background: $white;
|
||||
border-bottom: 1px solid $whitish;
|
||||
cursor: move;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
transition: background .2s;
|
||||
&:hover {
|
||||
|
@ -21,6 +24,19 @@
|
|||
text-decoration: line-through;
|
||||
}
|
||||
}
|
||||
&.unfold {
|
||||
.name {
|
||||
.icon {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
.name {
|
||||
.icon {
|
||||
transform: rotate(180deg);
|
||||
transition: all .2s;
|
||||
}
|
||||
}
|
||||
.icon-drag {
|
||||
@include svg-size(.75rem);
|
||||
cursor: move;
|
||||
|
@ -28,18 +44,27 @@
|
|||
opacity: 0;
|
||||
transition: opacity .1s;
|
||||
}
|
||||
.epic-pill {
|
||||
@include font-type(light);
|
||||
@include font-size(xsmall);
|
||||
background: $grayer;
|
||||
border-radius: .25rem;
|
||||
color: $white;
|
||||
margin: 0 .5rem;
|
||||
padding: .1rem .25rem;
|
||||
}
|
||||
.status {
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
button {
|
||||
background: none;
|
||||
}
|
||||
.icon {
|
||||
}
|
||||
.icon-arrow-down {
|
||||
@include svg-size(.7rem);
|
||||
fill: $gray-light;
|
||||
margin-left: .1rem;
|
||||
}
|
||||
}
|
||||
.progress-bar,
|
||||
.progress-status {
|
||||
height: 1.5rem;
|
||||
|
|
|
@ -1,58 +1,11 @@
|
|||
@import '../../../../styles/dependencies/mixins/epics-dashboard';
|
||||
|
||||
.epics-table {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.epics-table-header,
|
||||
.epic-row {
|
||||
.assigned {
|
||||
padding: .5rem;
|
||||
}
|
||||
.project,
|
||||
.vote,
|
||||
.status,
|
||||
.sprint,
|
||||
.name,
|
||||
.progress {
|
||||
padding: 1rem .5rem;
|
||||
}
|
||||
|
||||
.assigned,
|
||||
.project,
|
||||
.vote {
|
||||
flex-basis: 100px;
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
flex-wrap: wrap;
|
||||
text-align: center;
|
||||
}
|
||||
.status,
|
||||
.sprint {
|
||||
flex-basis: 150px;
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
flex-wrap: wrap;
|
||||
max-width: 150px;
|
||||
}
|
||||
.name,
|
||||
.progress {
|
||||
flex-basis: 20vw;
|
||||
flex-grow: 1;
|
||||
flex-shrink: 2;
|
||||
max-width: 40vw;
|
||||
}
|
||||
.name,
|
||||
.sprint {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
width: 90%;
|
||||
}
|
||||
.progress {
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
||||
.epics-table-header {
|
||||
@include epics-table;
|
||||
@include font-type(bold);
|
||||
border-bottom: 1px solid $gray-light;
|
||||
display: flex;
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
###
|
||||
# Copyright (C) 2014-2015 Taiga Agile LLC <taiga@taiga.io>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
# File: epics-table.controller.coffee
|
||||
###
|
||||
|
||||
module = angular.module("taigaEpics")
|
||||
|
||||
class StoryRowController
|
||||
@.$inject = []
|
||||
|
||||
constructor: () ->
|
||||
@._calculateProgressBar()
|
||||
|
||||
_calculateProgressBar: () ->
|
||||
tasks = @.story.get('tasks').toJS()
|
||||
totalTasks = @.story.get('tasks').size
|
||||
areTasksCompleted = _.map(tasks, 'is_closed')
|
||||
totalTasksCompleted = _.pull(areTasksCompleted, false).length
|
||||
@.percentage = totalTasksCompleted * 100 / totalTasks
|
||||
|
||||
module.controller("StoryRowCtrl", StoryRowController)
|
|
@ -0,0 +1,39 @@
|
|||
###
|
||||
# Copyright (C) 2014-2016 Taiga Agile LLC <taiga@taiga.io>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
# File: epics-table.directive.coffee
|
||||
###
|
||||
|
||||
module = angular.module('taigaEpics')
|
||||
|
||||
StoryRowDirective = () ->
|
||||
|
||||
return {
|
||||
templateUrl:"epics/dashboard/story-row/story-row.html",
|
||||
controller: "StoryRowCtrl",
|
||||
controllerAs: "vm",
|
||||
bindToController: true,
|
||||
scope: {
|
||||
epic: '=',
|
||||
story: '=',
|
||||
project: '=',
|
||||
column: '='
|
||||
}
|
||||
}
|
||||
|
||||
StoryRowDirective.$inject = []
|
||||
|
||||
module.directive("tgStoryRow", StoryRowDirective)
|
|
@ -0,0 +1,54 @@
|
|||
.story-row(
|
||||
ng-class="{'is-blocked': vm.story.is_blocked, 'is-closed': vm.story.is_closed}"
|
||||
)
|
||||
tg-svg.icon-drag(
|
||||
svg-icon="icon-drag"
|
||||
)
|
||||
.vote(
|
||||
ng-if="vm.column.votes"
|
||||
ng-class="{'is-voter': vm.story.get('is_voter')}"
|
||||
)
|
||||
tg-svg(svg-icon='icon-upvote')
|
||||
span {{::vm.story.get('total_voters')}}
|
||||
|
||||
.name(ng-if="vm.column.name")
|
||||
- var hash = "#";
|
||||
a(
|
||||
tg-nav="project-userstories-detail:project=vm.project.slug,ref=vm.story.get('ref')"
|
||||
ng-attr-title="{{::vm.story.get('subject')}}"
|
||||
) #{hash}{{::vm.story.get('ref')}} {{::vm.story.get('subject')}}
|
||||
.story-pill(ng-style="::{'background-color': vm.epic.get('color')}")
|
||||
.project(
|
||||
ng-if="vm.column.project"
|
||||
tg-nav="project:project=vm.story.getIn(['project_extra_info', 'slug'])"
|
||||
)
|
||||
img(
|
||||
tg-project-logo-small-src="::vm.story.get('project_extra_info')"
|
||||
alt="{{::vm.story.getIn(['project_extra_info', 'name'])}}"
|
||||
)
|
||||
.sprint(ng-if="vm.column.sprint") {{::vm.story.get('milestone_name')}}
|
||||
.assigned(
|
||||
ng-if="vm.column.assigned && vm.story.get('assigned_to')"
|
||||
)
|
||||
img(
|
||||
ng-if="vm.story.getIn(['assigned_to_extra_info', 'photo'])"
|
||||
ng-src="{{vm.story.getIn(['assigned_to_extra_info', 'photo'])}}"
|
||||
alt="{{::vm.story.getIn(['assigned_to_extra_info', 'full_name_display'])}}"
|
||||
)
|
||||
img(
|
||||
ng-if="!vm.story.getIn(['assigned_to_extra_info', 'photo'])"
|
||||
ng-src="https://www.gravatar.com/avatar/{{vm.story.getIn(['assigned_to_extra_info', 'gravatar_id'])}}"
|
||||
alt="{{::vm.story.getIn(['assigned_to_extra_info', 'full_name_display'])}}"
|
||||
)
|
||||
.assigned(
|
||||
ng-if="vm.column.assigned && !vm.story.get('assigned_to')"
|
||||
ng-class="{'is-unassigned': !vm.story.get('assigned_to')}"
|
||||
translate="EPICS.DASHBOARD.UNASSIGNED"
|
||||
)
|
||||
.status(ng-if="vm.column.status") {{vm.story.getIn(['status_extra_info', 'name'])}}
|
||||
.progress(ng-if="vm.column.progress")
|
||||
.progress-bar
|
||||
.progress-status(
|
||||
ng-if="::vm.percentage"
|
||||
ng-attr-width="::vm.percentage"
|
||||
)
|
|
@ -0,0 +1,80 @@
|
|||
@import '../../../../styles/dependencies/mixins/epics-dashboard';
|
||||
|
||||
.story-row {
|
||||
@include font-size(small);
|
||||
@include epics-table;
|
||||
align-items: center;
|
||||
background: $white;
|
||||
border-bottom: 1px solid $whitish;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
margin-left: 2rem;
|
||||
transition: background .2s;
|
||||
&:hover {
|
||||
background: rgba($primary-light, .05);
|
||||
.icon-drag {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
&.is-blocked {
|
||||
background: rgba($red-light, .5);
|
||||
}
|
||||
&.is-closed {
|
||||
.name {
|
||||
color: $gray-light;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
}
|
||||
.icon-drag {
|
||||
@include svg-size(.75rem);
|
||||
cursor: move;
|
||||
fill: $whitish;
|
||||
opacity: 0;
|
||||
transition: opacity .1s;
|
||||
}
|
||||
.name {
|
||||
flex-basis: 18vw;
|
||||
}
|
||||
.story-pill {
|
||||
background: $grayer;
|
||||
border-radius: 50%;
|
||||
display: inline-block;
|
||||
height: .5rem;
|
||||
margin-left: .25rem;
|
||||
width: .5rem;
|
||||
}
|
||||
.progress-bar,
|
||||
.progress-status {
|
||||
height: 1.5rem;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: .25rem;
|
||||
}
|
||||
.progress-bar {
|
||||
background: $mass-white;
|
||||
max-width: 40vw;
|
||||
width: 100%;
|
||||
}
|
||||
.progress-status {
|
||||
background: $primary-light;
|
||||
width: 10vw;
|
||||
}
|
||||
.vote {
|
||||
color: $gray;
|
||||
}
|
||||
.project,
|
||||
.assigned {
|
||||
img {
|
||||
width: 40px;
|
||||
}
|
||||
}
|
||||
.icon-upvote {
|
||||
@include svg-size(.75rem);
|
||||
fill: $gray;
|
||||
margin-right: .25rem;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.is-unassigned {
|
||||
color: $gray-light;
|
||||
}
|
||||
}
|
|
@ -33,6 +33,18 @@ Resource = (urlsService, http) ->
|
|||
.then (result) ->
|
||||
return Immutable.fromJS(result.data)
|
||||
|
||||
service.listInEpics = (ids) ->
|
||||
url = urlsService.resolve("userstories")
|
||||
|
||||
params = {
|
||||
'epics': ids,
|
||||
'include_tasks': true
|
||||
}
|
||||
|
||||
return http.get(url, params)
|
||||
.then (result) ->
|
||||
return Immutable.fromJS(result.data)
|
||||
|
||||
return () ->
|
||||
return {"userstories": service}
|
||||
|
||||
|
|
|
@ -0,0 +1,57 @@
|
|||
@mixin epics-table {
|
||||
.assigned {
|
||||
padding: .5rem;
|
||||
}
|
||||
.project,
|
||||
.vote,
|
||||
.status,
|
||||
.sprint,
|
||||
.name,
|
||||
.progress {
|
||||
padding: 1rem .5rem;
|
||||
}
|
||||
.vote {
|
||||
flex-basis: 60px;
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
flex-wrap: wrap;
|
||||
text-align: center;
|
||||
}
|
||||
.assigned,
|
||||
.project {
|
||||
flex-basis: 100px;
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
flex-wrap: wrap;
|
||||
text-align: center;
|
||||
}
|
||||
.status,
|
||||
.sprint {
|
||||
flex-basis: 150px;
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
flex-wrap: wrap;
|
||||
max-width: 150px;
|
||||
text-align: center;
|
||||
}
|
||||
.name,
|
||||
.progress {
|
||||
flex-basis: 20vw;
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
max-width: 40vw;
|
||||
}
|
||||
.progress {
|
||||
flex-shrink: 3;
|
||||
}
|
||||
.name,
|
||||
.sprint {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
width: 90%;
|
||||
}
|
||||
.progress {
|
||||
position: relative;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue