stable

Clone or download

Read-only

feat: Ability to hide closed items in Roadmap

If the Gantt chart is displaying open and closed tasks or subtasks, if user decides to not show closed items, then only open ones will be displayed. Iterations are kept displayed even if they are closed (they still give context to displayed tasks). Closes story #21814: hide done tasks Change-Id: Ib09c3dedd823e2434afd7b3ff641da364880e9b0

Modified Files

Name
M plugins/roadmap/include/Roadmap/REST/v1/TaskRepresentation.php +16 −49 Go to diff View file
M plugins/roadmap/include/Roadmap/REST/v1/TaskRepresentationBuilderForTracker.php +1 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/po/fr_FR.po +3 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/GanttBoard.vue +3 −0 Go to diff View file
A plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/ShowClosedControl.test.ts +45 −0 Go to diff View file
A plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/ShowClosedControl.vue +65 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/store/index.ts +1 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/store/root-mutations.test.ts +12 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/store/root-mutations.ts +4 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/store/tasks/tasks-getters.test.ts +115 −7 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/store/tasks/tasks-getters.ts +12 −3 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/store/type.ts +1 −0 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/type.ts +1 −0 Go to diff View file
M plugins/roadmap/tests/unit/Roadmap/REST/v1/RoadmapTasksRetrieverTest.php +13 −0 Go to diff View file
M plugins/roadmap/tests/unit/Roadmap/REST/v1/SubtasksRetrieverTest.php +2 −0 Go to diff View file
M plugins/roadmap/tests/unit/Roadmap/REST/v1/TaskRepresentationBuilderForTrackerTest.php +19 −0 Go to diff View file
M plugins/roadmap/themes/_controls.scss +4 −0 Go to diff View file