debian-mirror-gitlab/app/assets/javascripts/registry/explorer/components/list_page/project_empty_state.vue

116 lines
3.8 KiB
Vue
Raw Normal View History

2020-03-13 15:44:24 +05:30
<script>
2020-07-28 23:09:34 +05:30
import { GlEmptyState, GlSprintf, GlLink, GlFormInputGroup, GlFormInput } from '@gitlab/ui';
2020-04-22 19:07:51 +05:30
import { mapState, mapGetters } from 'vuex';
import { s__ } from '~/locale';
2020-03-13 15:44:24 +05:30
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
2020-06-23 00:09:42 +05:30
import {
COPY_LOGIN_TITLE,
COPY_BUILD_TITLE,
COPY_PUSH_TITLE,
QUICK_START,
} from '../../constants/index';
2020-03-13 15:44:24 +05:30
export default {
name: 'ProjectEmptyState',
components: {
ClipboardButton,
GlEmptyState,
GlSprintf,
GlLink,
2020-07-28 23:09:34 +05:30
GlFormInputGroup,
GlFormInput,
2020-03-13 15:44:24 +05:30
},
2020-04-22 19:07:51 +05:30
i18n: {
quickStart: QUICK_START,
copyLoginTitle: COPY_LOGIN_TITLE,
copyBuildTitle: COPY_BUILD_TITLE,
copyPushTitle: COPY_PUSH_TITLE,
introText: s__(
`ContainerRegistry|With the Container Registry, every project can have its own space to store its Docker images. %{docLinkStart}More Information%{docLinkEnd}`,
),
notLoggedInMessage: s__(
`ContainerRegistry|If you are not already logged in, you need to authenticate to the Container Registry by using your GitLab username and password. If you have %{twofaDocLinkStart}Two-Factor Authentication%{twofaDocLinkEnd} enabled, use a %{personalAccessTokensDocLinkStart}Personal Access Token%{personalAccessTokensDocLinkEnd} instead of a password.`,
),
addImageText: s__(
'ContainerRegistry|You can add an image to this registry with the following commands:',
),
},
2020-03-13 15:44:24 +05:30
computed: {
...mapState(['config']),
2020-04-22 19:07:51 +05:30
...mapGetters(['dockerBuildCommand', 'dockerPushCommand', 'dockerLoginCommand']),
2020-03-13 15:44:24 +05:30
},
};
</script>
<template>
<gl-empty-state
:title="s__('ContainerRegistry|There are no container images stored for this project')"
:svg-path="config.noContainersImage"
>
<template #description>
2020-07-28 23:09:34 +05:30
<p>
2020-04-22 19:07:51 +05:30
<gl-sprintf :message="$options.i18n.introText">
2020-03-13 15:44:24 +05:30
<template #docLink="{content}">
<gl-link :href="config.helpPagePath" target="_blank">{{ content }}</gl-link>
</template>
</gl-sprintf>
</p>
2020-04-22 19:07:51 +05:30
<h5>{{ $options.i18n.quickStart }}</h5>
2020-07-28 23:09:34 +05:30
<p>
2020-04-22 19:07:51 +05:30
<gl-sprintf :message="$options.i18n.notLoggedInMessage">
2020-03-13 15:44:24 +05:30
<template #twofaDocLink="{content}">
<gl-link :href="config.twoFactorAuthHelpLink" target="_blank">{{ content }}</gl-link>
</template>
<template #personalAccessTokensDocLink="{content}">
<gl-link :href="config.personalAccessTokensHelpLink" target="_blank">{{
content
}}</gl-link>
</template>
</gl-sprintf>
</p>
2020-07-28 23:09:34 +05:30
<gl-form-input-group class="gl-mb-4">
<gl-form-input
:value="dockerLoginCommand"
readonly
type="text"
class="gl-font-monospace!"
/>
<template #append>
2020-03-13 15:44:24 +05:30
<clipboard-button
:text="dockerLoginCommand"
2020-04-22 19:07:51 +05:30
:title="$options.i18n.copyLoginTitle"
2020-07-28 23:09:34 +05:30
class="gl-m-0!"
2020-03-13 15:44:24 +05:30
/>
2020-07-28 23:09:34 +05:30
</template>
</gl-form-input-group>
<p class="gl-mb-4">
2020-04-22 19:07:51 +05:30
{{ $options.i18n.addImageText }}
2020-03-13 15:44:24 +05:30
</p>
2020-07-28 23:09:34 +05:30
<gl-form-input-group class="gl-mb-4 ">
<gl-form-input
:value="dockerBuildCommand"
readonly
type="text"
class="gl-font-monospace!"
/>
<template #append>
2020-03-13 15:44:24 +05:30
<clipboard-button
:text="dockerBuildCommand"
2020-04-22 19:07:51 +05:30
:title="$options.i18n.copyBuildTitle"
2020-07-28 23:09:34 +05:30
class="gl-m-0!"
2020-03-13 15:44:24 +05:30
/>
2020-07-28 23:09:34 +05:30
</template>
</gl-form-input-group>
<gl-form-input-group>
<gl-form-input :value="dockerPushCommand" readonly type="text" class="gl-font-monospace!" />
<template #append>
2020-03-13 15:44:24 +05:30
<clipboard-button
:text="dockerPushCommand"
2020-04-22 19:07:51 +05:30
:title="$options.i18n.copyPushTitle"
2020-07-28 23:09:34 +05:30
class="gl-m-0!"
2020-03-13 15:44:24 +05:30
/>
2020-07-28 23:09:34 +05:30
</template>
</gl-form-input-group>
2020-03-13 15:44:24 +05:30
</template>
</gl-empty-state>
</template>