stable

Clone or download

Read-only

Finish git typescript conversion

closes request #18836 Convert git repository list to typescript No functional changes: - app is displayed - jenkins server badge is displayed - breadcrumbs works - you can add git/gitlab repositories - empty state and loaders are ok Change-Id: Ide2664a1842c03a09116f1c77d769cad30edbb28

Modified Files

Name
A plugins/git/scripts/repositories/index.ts +173 −0 Go to diff View file
M plugins/git/scripts/repositories/po/fr.po +5 −3 Go to diff View file
M plugins/git/scripts/repositories/src/api/rest-querier.ts +1 −1 Go to diff View file
R plugins/git/scripts/repositories/src/components/ActionBar.test.js Go to diff View file
M plugins/git/scripts/repositories/src/components/ActionBar.vue +28 −30 Go to diff View file
R plugins/git/scripts/repositories/src/components/AddGitlabRepositoryActionButton.test.js Go to diff View file
M plugins/git/scripts/repositories/src/components/AddGitlabRepositoryActionButton.vue +14 −12 Go to diff View file
M plugins/git/scripts/repositories/src/components/App.vue +37 −39 Go to diff View file
A plugins/git/scripts/repositories/src/components/DropdownActionButton.test.ts +62 −0 Go to diff View file
M plugins/git/scripts/repositories/src/components/DropdownActionButton.vue +21 −20 Go to diff View file
M plugins/git/scripts/repositories/src/components/ErrorMessage.vue +21 −19 Go to diff View file
A plugins/git/scripts/repositories/src/components/FilterEmptyState.test.ts +121 −0 Go to diff View file
M plugins/git/scripts/repositories/src/components/FilterEmptyState.vue +33 −23 Go to diff View file
A plugins/git/scripts/repositories/src/components/GitBreadCrumbs.test.ts +41 −0 Go to diff View file
M plugins/git/scripts/repositories/src/components/GitBreadcrumbs.vue +43 −52 Go to diff View file
A plugins/git/scripts/repositories/src/components/GitLabAdministration.test.ts +132 −0 Go to diff View file
A plugins/git/scripts/repositories/src/components/GitLabAdministration.vue +200 −0 Go to diff View file
R plugins/git/scripts/repositories/src/components/GitRepository.test.js Go to diff View file
M plugins/git/scripts/repositories/src/components/GitRepository.vue +100 −255 Go to diff View file
M plugins/git/scripts/repositories/src/components/GitRepositoryCreate.vue +52 −64 Go to diff View file
M plugins/git/scripts/repositories/src/components/GitlabModal/UnlinkGitlabRepositoryModal/UnlinkRepositoryGitlabModal.test.ts +2 −2 Go to diff View file
R plugins/git/scripts/repositories/src/components/NoRepositoryEmptyState.test.js Go to diff View file
M plugins/git/scripts/repositories/src/components/NoRepositoryEmptyState.vue +25 −24 Go to diff View file
A plugins/git/scripts/repositories/src/components/PullRequestBadge.test.ts +45 −0 Go to diff View file
M plugins/git/scripts/repositories/src/components/PullRequestBadge.vue +18 −16 Go to diff View file
M plugins/git/scripts/repositories/src/components/RepositoryList.vue +15 −10 Go to diff View file
M plugins/git/scripts/repositories/src/components/RepositoryListSpinner.vue +17 −12 Go to diff View file
M plugins/git/scripts/repositories/src/components/SuccessMessage.vue +12 −8 Go to diff View file
A plugins/git/scripts/repositories/src/components/__snapshots__/DropdownActionButton.test.ts.snap +25 −0 Go to diff View file
A plugins/git/scripts/repositories/src/components/__snapshots__/GitBreadCrumbs.test.ts.snap +20 −0 Go to diff View file
A plugins/git/scripts/repositories/src/components/__snapshots__/PullRequestBadge.test.ts.snap +7 −0 Go to diff View file
D plugins/git/scripts/repositories/src/index.js +0 −91 Go to diff View file
M plugins/git/scripts/repositories/src/store/getters.test.ts +0 −1 Go to diff View file
M plugins/git/scripts/repositories/src/store/getters.ts +4 −3 Go to diff View file
M plugins/git/scripts/repositories/src/store/gitlab/actions.ts +0 −7 Go to diff View file
M plugins/git/scripts/repositories/src/store/gitlab/mutations.ts +7 −0 Go to diff View file
M plugins/git/scripts/repositories/src/store/index.ts +13 −10 Go to diff View file
M plugins/git/scripts/repositories/src/type.ts +5 −1 Go to diff View file
R plugins/git/scripts/repositories/src/support/local-vue.js Go to diff View file
M plugins/git/webpack.common.js +1 −1 Go to diff View file