stable

Clone or download

Read-only

Adjustments after Vuex refactoring

Part of story #10408 have a burning parrot git repository list Functional changes expected: - There is now a spinner icon on the "Add Repository" button in the modal - The "Add repository" button in the action bar is no longer hidden when "changing" repositories (for example browsing forks) No other functional changes expected. Notes: - I extracted a dedicated Spinner component to avoid the empty root <div> in RepositoryList. - I removed snake_case aliases for Vuex getters. We could alternatively always use snake_case as names. - I reindented GitRepositoryCreate template. - I reworked the repository name info and translation (see Design check task) Change-Id: Ib41d08886d2649a199b3b07d9153d40af1c362bc

Modified Files

Name
M plugins/git/www/scripts/repositories/po/fr.po +10 −12 Go to diff View file
M plugins/git/www/scripts/repositories/po/template.pot +5 −7 Go to diff View file
M plugins/git/www/scripts/repositories/src/components/ActionBar.vue +2 −9 Go to diff View file
M plugins/git/www/scripts/repositories/src/components/ActionBar/SelectOwner.vue +2 −2 Go to diff View file
M plugins/git/www/scripts/repositories/src/components/App.vue +7 −4 Go to diff View file
M plugins/git/www/scripts/repositories/src/components/ErrorMessage.vue +3 −5 Go to diff View file
M plugins/git/www/scripts/repositories/src/components/FilterEmptyState.vue +8 −8 Go to diff View file
M plugins/git/www/scripts/repositories/src/components/GitRepository.vue +4 −1 Go to diff View file
M plugins/git/www/scripts/repositories/src/components/GitRepositoryCreate.vue +55 −60 Go to diff View file
M plugins/git/www/scripts/repositories/src/components/NoRepositoryEmptyState.vue +2 −7 Go to diff View file
A plugins/git/www/scripts/repositories/src/components/RepositoryList.vue +41 −0 Go to diff View file
R plugins/git/www/scripts/repositories/src/components/RepositoriesList.vue Go to diff View file
M plugins/git/www/scripts/repositories/src/index.js +5 −5 Go to diff View file
M plugins/git/www/scripts/repositories/src/store/actions.js +11 −28 Go to diff View file
M plugins/git/www/scripts/repositories/src/store/getters.js +11 −12 Go to diff View file
M plugins/git/www/scripts/repositories/src/store/mutations.js +0 −7 Go to diff View file