stable
Clone or download
Until now the task was considered as a row. However, in order to prepare the display of children, we need to have different type of rows: * the current Row, which displays a task * a SubtaskRow, which displays a subtask of a task * a MessageRow, which displays messages related to the retrieval of the subtasks ``` +------------------+----+----+ |β βΆ epic #123 | | | +------------------+----+----+ |β βΌ epic #124 | | | <-- Row +------------------+----+----+ |β β story #1241 | | | <-- SubtaskRow +------------------+----+----+ |β β story #1242 | | | +------------------+----+----+ |β βΆ epic #125 | | | +------------------+----+----+ |β βΌ epic #126 | | | +------------------+----+----+ |β β οΈ Error loading subtasβ¦ | <-- MessageRow +------------------+----+----+ ``` This commit only introduce the Row, the others will be done in next contributions. No functional changes expected. Part of story #20979: Display children in Roadmap Change-Id: Icdf7f230e4adbb7575786a1e8b8f9b2b29266df9
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/roadmap/scripts/roadmap-widget/src/components/App.test.ts | +8 | β8 | Go to diff View file |
M | plugins/roadmap/scripts/roadmap-widget/src/components/App.vue | +3 | β3 | Go to diff View file |
M | plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/GanttBoard.test.ts | +63 | β27 | Go to diff View file |
M | plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/GanttBoard.vue | +6 | β1 | Go to diff View file |
M | plugins/roadmap/scripts/roadmap-widget/src/store/tasks/index.ts | +9 | β7 | Go to diff View file |
M | plugins/roadmap/scripts/roadmap-widget/src/store/tasks/tasks-actions.test.ts | +17 | β6 | Go to diff View file |
M | plugins/roadmap/scripts/roadmap-widget/src/store/tasks/tasks-actions.ts | +5 | β1 | Go to diff View file |
M | plugins/roadmap/scripts/roadmap-widget/src/store/tasks/tasks-getters.test.ts | +10 | β10 | Go to diff View file |
M | plugins/roadmap/scripts/roadmap-widget/src/store/tasks/tasks-getters.ts | +1 | β1 | Go to diff View file |
M | plugins/roadmap/scripts/roadmap-widget/src/store/tasks/tasks-mutations.test.ts | +12 | β0 | Go to diff View file |
M | plugins/roadmap/scripts/roadmap-widget/src/store/tasks/tasks-mutations.ts | +3 | β3 | Go to diff View file |
M | plugins/roadmap/scripts/roadmap-widget/src/store/tasks/type.ts | +2 | β2 | Go to diff View file |
M | plugins/roadmap/scripts/roadmap-widget/src/type.ts | +4 | β0 | Go to diff View file |