stable

Clone or download

Read-only

Display the trackers user can choose

this is part of story #11347 have a UI to accesss Move artifact How to test: - when modal is loaded at first time, tracker list is disabled - choose a project => trackers user is admin for this project are displayed - there is a spinner during the tracker loading - if there is an error, error is displayed - if you quit the modal, the tracker list is lost No other changes, the move process will be done in a deidcated commit Change-Id: I6a771c4037a2e65d86914f8b530ce276a27a202c

Modified Files

Name
A plugins/tracker/www/scripts/artifact-action-buttons/karma.conf.js +42 −0 Go to diff View file
M plugins/tracker/www/scripts/artifact-action-buttons/po/fr.po +6 −0 Go to diff View file
M plugins/tracker/www/scripts/artifact-action-buttons/po/template.pot +6 −0 Go to diff View file
M plugins/tracker/www/scripts/artifact-action-buttons/src/api/rest-querier.js +13 −1 Go to diff View file
A plugins/tracker/www/scripts/artifact-action-buttons/src/api/rest-querier.spec.js +86 −0 Go to diff View file
A plugins/tracker/www/scripts/artifact-action-buttons/src/app.spec.js +26 −0 Go to diff View file
M plugins/tracker/www/scripts/artifact-action-buttons/src/components/MoveModal.vue +11 −17 Go to diff View file
A plugins/tracker/www/scripts/artifact-action-buttons/src/components/MoveModalSelectors.vue +37 −0 Go to diff View file
M plugins/tracker/www/scripts/artifact-action-buttons/src/components/MoveModalTitle.vue +5 −5 Go to diff View file
M plugins/tracker/www/scripts/artifact-action-buttons/src/components/ProjectSelector.vue +28 −10 Go to diff View file
A plugins/tracker/www/scripts/artifact-action-buttons/src/components/TrackerSelector.vue +55 −0 Go to diff View file
M plugins/tracker/www/scripts/artifact-action-buttons/src/store/actions.js +21 −9 Go to diff View file
A plugins/tracker/www/scripts/artifact-action-buttons/src/store/actions.spec.js +119 −0 Go to diff View file
M plugins/tracker/www/scripts/artifact-action-buttons/src/store/getters.js +1 −7 Go to diff View file
M plugins/tracker/www/scripts/artifact-action-buttons/src/store/mutations.js +17 −6 Go to diff View file
M plugins/tracker/www/scripts/artifact-action-buttons/src/store/state.js +5 −4 Go to diff View file
M plugins/tracker/www/scripts/package.json +1 −1 Go to diff View file
M plugins/tracker/www/scripts/webpack.config.js +6 −6 Go to diff View file
A plugins/tracker/www/themes/default/css/includes/_move-artifact.scss +45 −0 Go to diff View file
M plugins/tracker/www/themes/default/css/style.scss +1 −12 Go to diff View file
A src/www/themes/common/tlp/mocks/jQuery.js +22 −0 Go to diff View file
M tools/utils/scripts/webpack-aliases.js +6 −1 Go to diff View file