stable

Clone or download

Read-only

Select date for the widget

Part of story #11253 - get a consolidate view of my timesheeting in my personal dashboard How to test: - At instanciation, the dates are preset to: --> today - 1 week for start date --> today for end date - Click on the dates --> The widget enters in writing mode - Select some dates and click on search --> The widget enters in Reading mode, and the dates are the one previously selected. - Click again on the dates --> Writing mode - Click on cancel --> Widget returns to Reading mode Change-Id: Ia9f64a3e8a806dc9abf339f26ee5a9b62d37b85e

Modified Files

Name
M .gitignore +2 −0 Go to diff View file
M build-manifest.json +24 −0 Go to diff View file
M include/timesheetingPlugin.class.php +17 −2 Go to diff View file
A www/scripts/karma.conf.js +100 −0 Go to diff View file
M www/scripts/package-lock.json +4045 −74 Go to diff View file
M www/scripts/package.json +17 −1 Go to diff View file
M www/scripts/personal-timesheeting-widget/po/fr.po +26 −0 Go to diff View file
M www/scripts/personal-timesheeting-widget/po/template.pot +12 −0 Go to diff View file
A www/scripts/personal-timesheeting-widget/src/Widget.spec.js +76 −0 Go to diff View file
M www/scripts/personal-timesheeting-widget/src/Widget.vue +45 −3 Go to diff View file
A www/scripts/personal-timesheeting-widget/src/WidgetReadingMode.spec.js +51 −0 Go to diff View file
A www/scripts/personal-timesheeting-widget/src/WidgetReadingMode.vue +58 −0 Go to diff View file
A www/scripts/personal-timesheeting-widget/src/WidgetWritingMode.spec.js +69 −0 Go to diff View file
A www/scripts/personal-timesheeting-widget/src/WidgetWritingMode.vue +105 −0 Go to diff View file
A www/scripts/personal-timesheeting-widget/src/app.spec.js +25 −0 Go to diff View file
M www/scripts/webpack.config.js +39 −3 Go to diff View file
A www/themes/BurningParrot/css/_widget.scss +57 −0 Go to diff View file
A www/themes/BurningParrot/css/style-blue-condensed.scss +24 −0 Go to diff View file
A www/themes/BurningParrot/css/style-blue.scss +24 −0 Go to diff View file
A www/themes/BurningParrot/css/style-green-condensed.scss +24 −0 Go to diff View file
A www/themes/BurningParrot/css/style-green.scss +24 −0 Go to diff View file
A www/themes/BurningParrot/css/style-grey-condensed.scss +24 −0 Go to diff View file
A www/themes/BurningParrot/css/style-grey.scss +24 −0 Go to diff View file
A www/themes/BurningParrot/css/style-orange-condensed.scss +24 −0 Go to diff View file
A www/themes/BurningParrot/css/style-orange.scss +24 −0 Go to diff View file
A www/themes/BurningParrot/css/style-purple-condensed.scss +24 −0 Go to diff View file
A www/themes/BurningParrot/css/style-purple.scss +24 −0 Go to diff View file
A www/themes/BurningParrot/css/style-red-condensed.scss +24 −0 Go to diff View file
A www/themes/BurningParrot/css/style-red.scss +24 −0 Go to diff View file