summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/google_cloud/components/home.vue
blob: e41337e2679dee7c8b8a53f1dfd0efd0e404b609 (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
<script>
import { GlTabs, GlTab } from '@gitlab/ui';
import DeploymentsServiceTable from './deployments_service_table.vue';
import RevokeOauth from './revoke_oauth.vue';
import ServiceAccountsList from './service_accounts_list.vue';
import GcpRegionsList from './gcp_regions_list.vue';

export default {
  components: {
    GlTabs,
    GlTab,
    DeploymentsServiceTable,
    RevokeOauth,
    ServiceAccountsList,
    GcpRegionsList,
  },
  props: {
    serviceAccounts: {
      type: Array,
      required: true,
    },
    createServiceAccountUrl: {
      type: String,
      required: true,
    },
    configureGcpRegionsUrl: {
      type: String,
      required: true,
    },
    emptyIllustrationUrl: {
      type: String,
      required: true,
    },
    enableCloudRunUrl: {
      type: String,
      required: true,
    },
    enableCloudStorageUrl: {
      type: String,
      required: true,
    },
    gcpRegions: {
      type: Array,
      required: true,
    },
    revokeOauthUrl: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <gl-tabs>
    <gl-tab :title="__('Configuration')">
      <service-accounts-list
        class="gl-mx-4"
        :list="serviceAccounts"
        :create-url="createServiceAccountUrl"
        :empty-illustration-url="emptyIllustrationUrl"
      />
      <hr />
      <gcp-regions-list
        class="gl-mx-4"
        :empty-illustration-url="emptyIllustrationUrl"
        :create-url="configureGcpRegionsUrl"
        :list="gcpRegions"
      />
      <hr v-if="revokeOauthUrl" />
      <revoke-oauth v-if="revokeOauthUrl" :url="revokeOauthUrl" />
    </gl-tab>
    <gl-tab :title="__('Deployments')">
      <deployments-service-table
        :cloud-run-url="enableCloudRunUrl"
        :cloud-storage-url="enableCloudStorageUrl"
      />
    </gl-tab>
    <gl-tab :title="__('Services')" disabled />
  </gl-tabs>
</template>