summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2017-09-25 12:29:55 +0100
committerFilipa Lacerda <filipa@gitlab.com>2017-09-25 12:29:55 +0100
commit84c4834fb430e78e605519b53bd9aff25cb6426a (patch)
tree2f818c9aef0c8fc05e714f1008f041b614848baf
parentb187426720068903184ca33a63f9dfe22c29f49a (diff)
downloadgitlab-ce-84c4834fb430e78e605519b53bd9aff25cb6426a.tar.gz
Changes after review
-rw-r--r--app/assets/javascripts/registry/components/app.vue36
-rw-r--r--app/assets/javascripts/registry/components/collapsible_container.vue66
-rw-r--r--app/assets/javascripts/registry/constants.js10
-rw-r--r--app/assets/stylesheets/pages/container_registry.scss8
-rw-r--r--app/assets/stylesheets/pages/settings_ci_cd.scss2
-rw-r--r--app/views/projects/registry/repositories/index.html.haml6
6 files changed, 65 insertions, 63 deletions
diff --git a/app/assets/javascripts/registry/components/app.vue b/app/assets/javascripts/registry/components/app.vue
index 7a3e61b64cd..f1ca77a2694 100644
--- a/app/assets/javascripts/registry/components/app.vue
+++ b/app/assets/javascripts/registry/components/app.vue
@@ -30,44 +30,14 @@
...mapActions([
'setMainEndpoint',
'fetchRepos',
- 'fetchList',
- 'deleteRepo',
- 'deleteRegistry',
- 'toggleLoading',
]),
-
- fetchRegistryList(repo) {
- this.fetchList({ repo })
- .catch(() => this.showError(errorMessagesTypes.FETCH_REGISTRY));
- },
-
- deleteRegistry(repo, registry) {
- this.deleteRegistry(registry)
- .then(() => this.fetchRegistry(repo))
- .catch(() => this.showError(errorMessagesTypes.DELETE_REGISTRY));
- },
-
- deleteRepository(repo) {
- this.deleteRepo(repo)
- .then(() => this.fetchRepos())
- .catch(() => this.showError(errorMessagesTypes.DELETE_REPO));
- },
-
- showError(message) {
- Flash(this.__(errorMessages[message]));
- },
-
- onPageChange(repo, page) {
- this.fetchList({ repo, page })
- .catch(() => this.showError(errorMessagesTypes.FETCH_REGISTRY));
- },
},
created() {
this.setMainEndpoint(this.endpoint);
},
mounted() {
this.fetchRepos()
- .catch(() => this.showError(errorMessagesTypes.FETCH_REPOS));
+ .catch(() => Flash(errorMessagesTypes.FETCH_REPOS));
},
};
</script>
@@ -83,10 +53,6 @@
v-for="(item, index) in repos"
:key="index"
:repo="item"
- @fetchRegistryList="fetchRegistryList"
- @deleteRepository="deleteRepository"
- @deleteRegistry="deleteRegistry"
- @pageChange="onPageChange"
/>
<p v-else-if="!isLoading && !repos.length">
diff --git a/app/assets/javascripts/registry/components/collapsible_container.vue b/app/assets/javascripts/registry/components/collapsible_container.vue
index 2d46eb8270e..ff69563a362 100644
--- a/app/assets/javascripts/registry/components/collapsible_container.vue
+++ b/app/assets/javascripts/registry/components/collapsible_container.vue
@@ -1,9 +1,12 @@
<script>
+ import { mapActions } from 'vuex';
+ import { n__, s__ } from '../../locale';
import clipboardButton from '../../vue_shared/components/clipboard_button.vue';
import loadingIcon from '../../vue_shared/components/loading_icon.vue';
import tablePagination from '../../vue_shared/components/table_pagination.vue';
import tooltip from '../../vue_shared/directives/tooltip';
import timeagoMixin from '../../vue_shared/mixins/timeago';
+ import { errorMessages, errorMessagesTypes } from '../constants';
export default {
name: 'collapsibeContainerRegisty',
@@ -35,28 +38,49 @@
},
},
methods: {
+ ...mapActions([
+ 'fetchList',
+ 'deleteRepo',
+ 'deleteRegistry',
+ 'toggleLoading',
+ ]),
+
layers(item) {
- const pluralize = gl.text.pluralize('layer', item.layers);
+ const pluralize = n__('layer', 'layers', item.layers);
return `${item.layers} ${pluralize}`;
},
toggleRepo() {
if (this.isOpen === false) {
- this.$emit('fetchRegistryList', this.repo);
+ this.fetchList({ repo: this.repo })
+ .catch(() => this.showError(errorMessagesTypes.FETCH_REGISTRY));
}
this.isOpen = !this.isOpen;
},
handleDeleteRepository() {
- this.$emit('deleteRepository', this.repo);
+ this.deleteRepo(this.repo)
+ .then(() => this.fetchRepos())
+ .catch(() => this.showError(errorMessagesTypes.DELETE_REPO));
},
handleDeleteRegistry(registry) {
- this.$emit('deleteRegistry', this.repo, registry);
+ this.deleteRegistry(registry)
+ .then(() => this.fetchRegistry(this.repo))
+ .catch(() => this.showError(errorMessagesTypes.DELETE_REGISTRY));
},
onPageChange(pageNumber) {
- this.$emit('pageChange', this.repo, pageNumber);
+ this.fetchList({ repo: this.repo, page })
+ .catch(() => this.showError(errorMessagesTypes.FETCH_REGISTRY));
+ },
+
+ clipboardText(text) {
+ return `docker pull ${text}`;
+ },
+
+ showError(message) {
+ Flash((errorMessages[message]));
},
},
};
@@ -66,10 +90,10 @@
<div class="container-image">
<div
class="container-image-head">
- <a
- role="button"
+ <button
+ type="button"
@click="toggleRepo"
- class="js-toggle-repo">
+ class="js-toggle-repo btn-link">
<i
class="fa"
:class="{
@@ -79,11 +103,11 @@
aria-hidden="true">
</i>
{{repo.name}}
- </a>
+ </button>
<clipboard-button
v-if="repo.location"
- :text="__(`docker pull ${repo.location}`)"
+ :text="clipboardText(repo.location)"
:title="repo.location"
/>
@@ -91,8 +115,9 @@
<button
v-if="repo.canDelete"
type="button"
- class="js-remove-repo btn btn-remove"
- :title="__('Remove repository')"
+ class="js-remove-repo btn btn-danger"
+ :title="s__('ContainerRegistry|Remove repository')"
+ :aria-label="s__('ContainerRegistry|Remove repository')"
v-tooltip
@click="handleDeleteRepository">
<i
@@ -116,10 +141,10 @@
<table class="table tags">
<thead>
<tr>
- <th>{{__("Tag")}}</th>
- <th>{{__("Tag ID")}}</th>
- <th>{{__("Size")}}</th>
- <th>{{__("Created")}}</th>
+ <th>{{s__('ContainerRegistry|Tag')}}</th>
+ <th>{{s__('ContainerRegistry|Tag ID')}}</th>
+ <th>{{s__("ContainerRegistry|Size")}}</th>
+ <th>{{s__("ContainerRegistry|Created")}}</th>
<th></th>
</tr>
</thead>
@@ -134,7 +159,7 @@
<clipboard-button
v-if="item.location"
:title="item.location"
- :text="__(`docker pull ${item.location}`)"
+ :text="clipboardText(item.location)"
/>
</td>
<td>
@@ -173,8 +198,9 @@
<button
v-if="item.canDelete"
type="button"
- class="js-delete-registry btn btn-remove hidden-xs pull-right"
- :title="__('Remove tag')"
+ class="js-delete-registry btn btn-danger hidden-xs pull-right"
+ :title="s__('ContainerRegistry|Remove tag')"
+ :aria-label="s__('ContainerRegistry|Remove tag')"
data-container="body"
v-tooltip
@click="handleDeleteRegistry(item)">
@@ -197,7 +223,7 @@
<div
v-else
class="nothing-here-block">
- {{__("No tags in Container Registry for this container image.")}}
+ {{s__("ContainerRegistry|No tags in Container Registry for this container image.")}}
</div>
</div>
</div>
diff --git a/app/assets/javascripts/registry/constants.js b/app/assets/javascripts/registry/constants.js
index d3de6441dae..7d02b5bf7c3 100644
--- a/app/assets/javascripts/registry/constants.js
+++ b/app/assets/javascripts/registry/constants.js
@@ -1,3 +1,5 @@
+import { __ } from '../locale';
+
export const errorMessagesTypes = {
FETCH_REGISTRY: 'FETCH_REGISTRY',
FETCH_REPOS: 'FETCH_REPOS',
@@ -6,8 +8,8 @@ export const errorMessagesTypes = {
};
export const errorMessages = {
- [errorMessagesTypes.FETCH_REGISTRY]: 'Something went wrong while fetching the registry list.',
- [errorMessagesTypes.FETCH_REPOS]: 'Something went wrong while fetching the repositories.',
- [errorMessagesTypes.DELETE_REPO]: 'Something went wrong while deleting the repository.',
- [errorMessagesTypes.DELETE_REGISTRY]: 'Something went wrong while deleting registry.',
+ [errorMessagesTypes.FETCH_REGISTRY]: __('Something went wrong while fetching the registry list.'),
+ [errorMessagesTypes.FETCH_REPOS]: __('Something went wrong while fetching the repositories.'),
+ [errorMessagesTypes.DELETE_REPO]: __('Something went wrong while deleting the repository.'),
+ [errorMessagesTypes.DELETE_REGISTRY]: __('Something went wrong while deleting registry.'),
};
diff --git a/app/assets/stylesheets/pages/container_registry.scss b/app/assets/stylesheets/pages/container_registry.scss
index 3266714396e..dfff3e15556 100644
--- a/app/assets/stylesheets/pages/container_registry.scss
+++ b/app/assets/stylesheets/pages/container_registry.scss
@@ -9,6 +9,14 @@
.container-image-head {
padding: 0 16px;
line-height: 4em;
+
+ .btn-link {
+ padding: 0;
+
+ &:focus {
+ outline: none;
+ }
+ }
}
.table.tags {
diff --git a/app/assets/stylesheets/pages/settings_ci_cd.scss b/app/assets/stylesheets/pages/settings_ci_cd.scss
index b3e06fdf5f6..a355e2dee24 100644
--- a/app/assets/stylesheets/pages/settings_ci_cd.scss
+++ b/app/assets/stylesheets/pages/settings_ci_cd.scss
@@ -15,4 +15,4 @@
.registry-placeholder {
min-height: 60px;
-} \ No newline at end of file
+}
diff --git a/app/views/projects/registry/repositories/index.html.haml b/app/views/projects/registry/repositories/index.html.haml
index f201fd44bc9..12a5778fed8 100644
--- a/app/views/projects/registry/repositories/index.html.haml
+++ b/app/views/projects/registry/repositories/index.html.haml
@@ -5,10 +5,10 @@
%h4
= page_title
%p
- = _('With the Docker Container Registry integrated into GitLab, every project can have its own space to store its Docker images.')
+ = s_('ContainerRegistry|With the Docker Container Registry integrated into GitLab, every project can have its own space to store its Docker images.')
%p.append-bottom-0
= succeed '.' do
- = _('Learn more about')
+ = s_('ContainerRegistry|Learn more about')
= link_to _('Container Registry'), help_page_path('user/project/container_registry'), target: '_blank'
.row.registry-placeholder.prepend-bottom-10
.col-lg-12
@@ -22,7 +22,7 @@
.panel.panel-default
.panel-heading
%h4.panel-title
- = _('How to use the Container Registry')
+ = s_('ContainerRegistry|How to use the Container Registry')
.panel-body
%p
= _('First log in to GitLab&rsquo;s Container Registry using your GitLab username and password. If you have').html_safe