stable

Clone or download

Read-only

Introduce Vuex store in Roadmap

Technical refactoring to avoid passing the locale everywhere in the props. It will help later to display children. No functional changes. Part of story #19734: have a Roadmap widget on dashboard Change-Id: I5b5c7b93e1a9129b93102aeb0936388a777d77f5

Modified Files

Name
M plugins/roadmap/package-lock.json +5 −0 Go to diff View file
M plugins/roadmap/package.json +2 −1 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/App.test.ts +0 −1 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/App.vue +0 −4 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/GanttBoard.test.ts +43 −6 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/GanttBoard.vue +4 −7 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/ScrollingArea.test.ts +1 −4 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/ScrollingArea.vue +1 −9 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/Task/BackgroundGrid.test.ts +1 −1 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/Task/BarPopover.test.ts +22 −3 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/Task/BarPopover.vue +4 −4 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/Task/DependencyArrow.test.ts +1 −1 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/Task/GanttTask.test.ts +1 −2 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/Task/GanttTask.vue +0 −3 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/TimePeriod/TimePeriodHeader.test.ts +1 −1 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/TodayIndicator.test.ts +10 −3 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/components/Gantt/TodayIndicator.vue +4 −3 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/helpers/left-position.test.ts +2 −2 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/helpers/tasks-dimensions.test.ts +7 −7 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/helpers/time-period-month.test.ts +7 −7 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/helpers/time-period-month.ts +4 −5 Go to diff View file
M plugins/roadmap/scripts/roadmap-widget/src/index.ts +10 −1 Go to diff View file
A plugins/roadmap/scripts/roadmap-widget/src/store/index.ts +30 −0 Go to diff View file
A plugins/roadmap/scripts/roadmap-widget/src/store/type.ts +22 −0 Go to diff View file