Welcome to mirror list, hosted at ThFree Co, Russian Federation.

empty_state.vue « components « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00e63c3467a614e43b88bba38afc63ada738f9c1 (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
<script>
  export default {
    name: 'EnvironmentsEmptyState',
    props: {
      newPath: {
        type: String,
        required: true,
      },
      canCreateEnvironment: {
        type: Boolean,
        required: true,
      },
      helpPath: {
        type: String,
        required: true,
      },
    },
  };
</script>
<template>
  <div class="blank-state-row">
    <div class="blank-state-center">
      <h2 class="blank-state-title js-blank-state-title">
        {{ s__("Environments|You don't have any environments right now.") }}
      </h2>
      <p class="blank-state-text">
        {{ s__(`Environments|Environments are places where
code gets deployed, such as staging or production.`) }}
        <br />
        <a :href="helpPath">
          {{ s__("Environments|Read more about environments") }}
        </a>
      </p>

      <a
        v-if="canCreateEnvironment"
        :href="newPath"
        class="btn btn-create js-new-environment-button"
      >
        {{ s__("Environments|New environment") }}
      </a>
    </div>
  </div>
</template>