stable

Clone or download

Read-only

feat: Display iterations ribbons

If a roadmap has defined one or two iteration trackers (you have to hack the db for now), then corresponding ribbons are displayed. To not clutter too much the review, for now it only displays dummy "level 1"/"level 2", but later it will be replaced by real iterations. There is no change for the display of subtask error messages, links, popovers, … Part of story #21379: Display iterations on top of roadmap Change-Id: I202fbc6dc752ea46d5579d38d9680c378b8f0ba9

Modified Files

Name
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/GanttBoard.test.ts +128 −45 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/GanttBoard.vue +53 −2 Go to diff View file
A plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/Iteration/IterationsRibbon.vue +46 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/Subtask/SubtaskMessage.test.ts +4 −2 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/Subtask/SubtaskMessage.vue +4 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/helpers/styles.ts +1 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/store/index.ts +2 −0 Go to diff View file
A plugins/roadmap/scripts/roadmap-widget/src/store/iterations/index.ts +36 −0 Go to diff View file
A plugins/roadmap/scripts/roadmap-widget/src/store/iterations/iterations-mutations.test.ts +48 −0 Go to diff View file
A plugins/roadmap/scripts/roadmap-widget/src/store/iterations/iterations-mutations.ts +28 −0 Go to diff View file
A plugins/roadmap/scripts/roadmap-widget/src/store/iterations/type.ts +25 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/store/root-actions.test.ts +32 −1 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/store/root-actions.ts +11 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/store/root-mutations.test.ts +5 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/store/type.ts +2 −0 Go to diff View file
M plugins/roadmap/themes/_gantt-header.scss +11 −1 Go to diff View file
A plugins/roadmap/themes/_iteration.scss +53 −0 Go to diff View file
M plugins/roadmap/themes/_roadmap-variables.scss +2 −0 Go to diff View file
M plugins/roadmap/themes/_scrolling-area.scss +1 −0 Go to diff View file
M src/themes/tlp/src/scss/components/_css-var-root.scss +1 −0 Go to diff View file