stable

Clone or download

Read-only

Display children in their own column

part of story #13627 display children of cards How to test: - Given you have User stories with Task children, and Tasks are mapped for your cardwall (automatically or custom), when User stories are loaded, those that have children will load their children and show skeletons meanwhile. - When the Tasks are loaded, their cards will be mapped to their column. Children cards will only show the left border (tracker color), xref + label and assigned to. Initial effort, Remaining effort and progress are never shown for children cards. Change-Id: I8af00f7e0693fa814d0c59066f280189862ecab2

Modified Files

Name
A plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/ChildCard.vue +42 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/ParentCard.vue +3 −43 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/card-mixin.ts +64 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/CardWithChildren.test.ts +60 −20 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/CardWithChildren.vue +26 −5 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/SoloCard.vue +3 −25 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/__snapshots__/CardWithChildren.test.ts.snap +2 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/TaskBoardBody.vue +1 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/__snapshots__/TaskBoardBody.test.ts.snap +1 −1 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/helpers/list-value-to-column-mapper.test.ts +98 −0 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/helpers/list-value-to-column-mapper.ts +44 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/swimlane-actions.test.ts +138 −33 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/swimlane-actions.ts +34 −3 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/store/swimlane/swimlane-helpers.test.ts +89 −0 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/store/swimlane/swimlane-helpers.ts +44 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/swimlane-mutations.test.ts +126 −20 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/swimlane-mutations.ts +37 −3 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/type.d.ts +6 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/type.d.ts +2 −0 Go to diff View file