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

gcp_regions_list.vue « components « google_cloud « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d403d5cd652c53b1ad633d515963977392fb18c (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
<script>
import { GlButton, GlEmptyState, GlTable } from '@gitlab/ui';
import { __ } from '~/locale';

export default {
  components: { GlButton, GlEmptyState, GlTable },
  props: {
    list: {
      type: Array,
      required: true,
    },
    createUrl: {
      type: String,
      required: true,
    },
    emptyIllustrationUrl: {
      type: String,
      required: true,
    },
  },
  tableFields: [
    { key: 'environment', label: __('Environment'), sortable: true },
    { key: 'gcp_region', label: __('Region'), sortable: true },
  ],
  i18n: {
    emptyStateTitle: __('No regions configured'),
    description: __('Configure your environments to be deployed to specific geographical regions'),
    emptyStateAction: __('Add a GCP region'),
    configureRegions: __('Configure regions'),
    listTitle: __('Regions'),
  },
};
</script>

<template>
  <div>
    <gl-empty-state
      v-if="list.length === 0"
      :title="$options.i18n.emptyStateTitle"
      :description="$options.i18n.description"
      :primary-button-link="createUrl"
      :primary-button-text="$options.i18n.configureRegions"
    />

    <div v-else>
      <h2 class="gl-font-size-h2">{{ $options.i18n.listTitle }}</h2>
      <p>{{ $options.i18n.description }}</p>

      <gl-table :items="list" :fields="$options.tableFields" />

      <gl-button :href="createUrl" category="primary" variant="confirm">
        {{ $options.i18n.configureRegions }}
      </gl-button>
    </div>
  </div>
</template>