stable

Clone or download

Read-only

Modal to display widgets in AJAX

This is a part of story #10173 Have multiple dashboards To test: - In local.inc add $sys_use_tlp_in_dashboards = 1; - Tuleap folder: $ yarn run core - You can see widgets title in add widget modal. Change-Id: Ic50e5075bf814343d64e65e757cb284f5bd6c1bf

Modified Files

Name
M site-content/fr_FR/LC_MESSAGES/tuleap-core.po +23 −1 Go to diff View file
M site-content/tuleap-core.pot +21 −0 Go to diff View file
M src/common/Dashboard/PagePresenter.php +10 −0 Go to diff View file
M src/common/Dashboard/Project/ProjectDashboardPresenter.php +5 −3 Go to diff View file
M src/common/Dashboard/User/UserDashboardPresenter.php +4 −3 Go to diff View file
A src/common/Dashboard/Widget/Add/AddWidgetController.php +126 −0 Go to diff View file
R src/www/scripts/dashboards/dashboard-add-widget.js Go to diff View file
A src/common/Dashboard/Widget/Add/WidgetsByCategoryPresenter.php +36 −0 Go to diff View file
A src/common/Dashboard/Widget/Add/WidgetsCategoriesPresenter.php +34 −0 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetDao.php +18 −1 Go to diff View file
M src/common/Dashboard/Widget/Router.php +10 −1 Go to diff View file
M src/common/autoload.php +6 −2 Go to diff View file
M src/common/widget/Widget.class.php +1 −28 Go to diff View file
M src/common/widget/WidgetLayoutManager.class.php +1 −1 Go to diff View file
A src/templates/dashboard/add-widget-modal.mustache +79 −0 Go to diff View file
M src/templates/dashboard/dashboard-tabs.mustache +1 −0 Go to diff View file
M src/templates/dashboard/my.mustache +1 −0 Go to diff View file
M src/templates/dashboard/project.mustache +1 −0 Go to diff View file
A src/templates/dashboard/widgets-categories.mustache +32 −0 Go to diff View file
M src/www/include/user.php +3 −1 Go to diff View file
M src/www/scripts/dashboards/dashboard-modals.js +33 −3 Go to diff View file
M src/www/scripts/dashboards/dashboard.js +0 −2 Go to diff View file
M src/www/scripts/dashboards/package.json +3 −1 Go to diff View file
M src/www/scripts/dashboards/yarn.lock +4 −0 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_dashboard-widgets.scss +74 −0 Go to diff View file
M src/www/widgets/index.php +15 −4 Go to diff View file