summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry/list/components/project_empty_state.vue
blob: 900498ed03dac39fdb1c0cc57d9ff11fa26a695c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<script>
import { GlEmptyState } from '@gitlab/ui';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
import { s__, sprintf } from '~/locale';

export default {
  name: 'ProjectEmptyState',
  components: {
    ClipboardButton,
    GlEmptyState,
  },
  props: {
    noContainersImage: {
      type: String,
      required: true,
    },
    repositoryUrl: {
      type: String,
      required: true,
    },
    helpPagePath: {
      type: String,
      required: true,
    },
    twoFactorAuthHelpLink: {
      type: String,
      required: true,
    },
    personalAccessTokensHelpLink: {
      type: String,
      required: true,
    },
    registryHostUrlWithPort: {
      type: String,
      required: true,
    },
  },
  computed: {
    dockerBuildCommand() {
      // eslint-disable-next-line @gitlab/require-i18n-strings
      return `docker build -t ${this.repositoryUrl} .`;
    },
    dockerPushCommand() {
      // eslint-disable-next-line @gitlab/require-i18n-strings
      return `docker push ${this.repositoryUrl}`;
    },
    dockerLoginCommand() {
      // eslint-disable-next-line @gitlab/require-i18n-strings
      return `docker login ${this.registryHostUrlWithPort}`;
    },
    noContainerImagesText() {
      return sprintf(
        s__(`ContainerRegistry|With the Container Registry, every project can have its own space to
            store its Docker images. %{docLinkStart}More Information%{docLinkEnd}`),
        {
          docLinkStart: `<a href="${this.helpPagePath}" target="_blank">`,
          docLinkEnd: '</a>',
        },
        false,
      );
    },
    notLoggedInToRegistryText() {
      return sprintf(
        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.`),
        {
          twofaDocLinkStart: `<a href="${this.twoFactorAuthHelpLink}" target="_blank">`,
          twofaDocLinkEnd: '</a>',
          personalAccessTokensDocLinkStart: `<a href="${this.personalAccessTokensHelpLink}" target="_blank">`,
          personalAccessTokensDocLinkEnd: '</a>',
        },
        false,
      );
    },
  },
};
</script>
<template>
  <gl-empty-state
    :title="s__('ContainerRegistry|There are no container images stored for this project')"
    :svg-path="noContainersImage"
    class="container-message"
  >
    <template #description>
      <p class="js-no-container-images-text" v-html="noContainerImagesText"></p>
      <h5>{{ s__('ContainerRegistry|Quick Start') }}</h5>
      <p class="js-not-logged-in-to-registry-text" v-html="notLoggedInToRegistryText"></p>
      <div class="input-group append-bottom-10">
        <input :value="dockerLoginCommand" type="text" class="form-control monospace" readonly />
        <span class="input-group-append">
          <clipboard-button
            :text="dockerLoginCommand"
            :title="s__('ContainerRegistry|Copy login command')"
            class="input-group-text"
          />
        </span>
      </div>
      <p></p>
      <p>
        {{
          s__(
            'ContainerRegistry|You can add an image to this registry with the following commands:',
          )
        }}
      </p>

      <div class="input-group append-bottom-10">
        <input :value="dockerBuildCommand" type="text" class="form-control monospace" readonly />
        <span class="input-group-append">
          <clipboard-button
            :text="dockerBuildCommand"
            :title="s__('ContainerRegistry|Copy build command')"
            class="input-group-text"
          />
        </span>
      </div>

      <div class="input-group">
        <input :value="dockerPushCommand" type="text" class="form-control monospace" readonly />
        <span class="input-group-append">
          <clipboard-button
            :text="dockerPushCommand"
            :title="s__('ContainerRegistry|Copy push command')"
            class="input-group-text"
          />
        </span>
      </div>
    </template>
  </gl-empty-state>
</template>