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

service_accounts_form.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: 551783e6c50ed42c345181440675e33b9d4294ee (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
<script>
import { GlButton, GlFormGroup, GlFormSelect, GlFormCheckbox } from '@gitlab/ui';
import { __ } from '~/locale';

export default {
  components: { GlButton, GlFormGroup, GlFormSelect, GlFormCheckbox },
  props: {
    gcpProjects: { required: true, type: Array },
    environments: { required: true, type: Array },
    cancelPath: { required: true, type: String },
  },
  i18n: {
    title: __('Create service account'),
    gcpProjectLabel: __('Google Cloud project'),
    gcpProjectDescription: __(
      'New service account is generated for the selected Google Cloud project',
    ),
    environmentLabel: __('Environment'),
    environmentDescription: __('Generated service account is linked to the selected environment'),
    submitLabel: __('Create service account'),
    cancelLabel: __('Cancel'),
    checkboxLabel: __(
      'I understand the responsibilities involved with managing service account keys',
    ),
  },
};
</script>

<template>
  <div>
    <header class="gl-my-5 gl-border-b-1 gl-border-b-gray-100 gl-border-b-solid">
      <h2 class="gl-font-size-h1">{{ $options.i18n.title }}</h2>
    </header>
    <gl-form-group
      label-for="gcp_project"
      :label="$options.i18n.gcpProjectLabel"
      :description="$options.i18n.gcpProjectDescription"
    >
      <gl-form-select id="gcp_project" name="gcp_project" required>
        <option
          v-for="gcpProject in gcpProjects"
          :key="gcpProject.project_id"
          :value="gcpProject.project_id"
        >
          {{ gcpProject.name }}
        </option>
      </gl-form-select>
    </gl-form-group>
    <gl-form-group
      label-for="environment"
      :label="$options.i18n.environmentLabel"
      :description="$options.i18n.environmentDescription"
    >
      <gl-form-select id="environment" name="environment" required>
        <option value="*">{{ __('All') }}</option>
        <option
          v-for="environment in environments"
          :key="environment.name"
          :value="environment.name"
        >
          {{ environment.name }}
        </option>
      </gl-form-select>
    </gl-form-group>
    <gl-form-group>
      <gl-form-checkbox name="confirmation" required>
        {{ $options.i18n.checkboxLabel }}
      </gl-form-checkbox>
    </gl-form-group>

    <div class="form-actions row">
      <gl-button type="submit" category="primary" variant="confirm">
        {{ $options.i18n.submitLabel }}
      </gl-button>
      <gl-button class="gl-ml-1" :href="cancelPath">{{ $options.i18n.cancelLabel }}</gl-button>
    </div>
  </div>
</template>