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

runner_aws_instructions.vue « instructions « runner_instructions « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a234889e6fe3e305cc9eca501ac88b14b026733 (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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<script>
import {
  GlButton,
  GlSprintf,
  GlIcon,
  GlLink,
  GlFormRadioGroup,
  GlFormRadio,
  GlAccordion,
  GlAccordionItem,
} from '@gitlab/ui';
import Tracking from '~/tracking';
import { getBaseURL, objectToQuery, visitUrl } from '~/lib/utils/url_utility';
import { __, s__ } from '~/locale';
import ModalCopyButton from '~/vue_shared/components/modal_copy_button.vue';
import {
  AWS_README_URL,
  AWS_CF_BASE_URL,
  AWS_TEMPLATES_BASE_URL,
  AWS_EASY_BUTTONS,
} from '../constants';

export default {
  components: {
    GlButton,
    GlSprintf,
    GlIcon,
    GlLink,
    GlFormRadioGroup,
    GlFormRadio,
    GlAccordion,
    GlAccordionItem,
    ModalCopyButton,
  },
  mixins: [Tracking.mixin()],
  props: {
    registrationToken: {
      type: String,
      required: false,
      default: null,
    },
  },
  data() {
    return {
      selectedIndex: 0,
    };
  },
  computed: {
    selected() {
      return this.$options.easyButtons[this.selectedIndex];
    },
  },
  methods: {
    borderBottom(idx) {
      return idx < this.$options.easyButtons.length - 1;
    },
    easyButtonUrl(easyButton) {
      const params = {
        templateURL: AWS_TEMPLATES_BASE_URL + easyButton.templateName,
        stackName: easyButton.stackName,
        param_3GITLABRunnerInstanceURL: getBaseURL(),
      };
      return AWS_CF_BASE_URL + objectToQuery(params);
    },
    trackCiRunnerTemplatesClick(stackName) {
      this.track('template_clicked', {
        label: stackName,
      });
    },
    onOk() {
      this.trackCiRunnerTemplatesClick(this.selected.stackName);
      visitUrl(this.easyButtonUrl(this.selected), true);
    },
    onClose() {
      this.$emit('close');
    },
  },
  i18n: {
    instructions: s__(
      'Runners|Select your preferred runner, then choose the capacity for the runner in the AWS CloudFormation console.',
    ),
    chooseRunner: s__('Runners|Choose your preferred GitLab Runner'),
    dontSeeWhatYouAreLookingFor: s__(
      "Runners|Don't see what you are looking for? See the full list of options, including a fully customizable option %{linkStart}here%{linkEnd}.",
    ),
    runnerRegistrationToken: s__('Runners|Runner Registration token'),
    copyInstructions: s__('Runners|Copy registration token'),
    moreDetails: __('More Details'),
    lessDetails: __('Less Details'),
    close: __('Close'),
    deployRunnerInAws: s__('Runners|Deploy GitLab Runner in AWS'),
    externalLink: __('(external link)'),
  },
  readmeUrl: AWS_README_URL,
  easyButtons: AWS_EASY_BUTTONS,
};
</script>
<template>
  <div>
    <p>{{ $options.i18n.instructions }}</p>

    <gl-form-radio-group v-model="selectedIndex" :label="$options.i18n.chooseRunner" label-sr-only>
      <gl-form-radio
        v-for="(easyButton, idx) in $options.easyButtons"
        :key="easyButton.templateName"
        :value="idx"
        class="gl-py-5 gl-pl-8"
        :class="{ 'gl-border-b': borderBottom(idx) }"
      >
        <div class="gl-mt-n1 gl-pl-4 gl-pb-2 gl-font-weight-bold">
          {{ easyButton.description }}
          <gl-accordion :header-level="3" class="gl-pt-3">
            <gl-accordion-item
              :title="$options.i18n.moreDetails"
              :title-visible="$options.i18n.lessDetails"
              class="gl-font-weight-normal"
            >
              <p class="gl-pt-2">{{ easyButton.moreDetails1 }}</p>
              <p class="gl-m-0">{{ easyButton.moreDetails2 }}</p>
            </gl-accordion-item>
          </gl-accordion>
        </div>
      </gl-form-radio>
    </gl-form-radio-group>
    <p>
      <gl-sprintf :message="$options.i18n.dontSeeWhatYouAreLookingFor">
        <template #link="{ content }">
          <gl-link :href="$options.readmeUrl" target="_blank">{{ content }}</gl-link>
        </template>
      </gl-sprintf>
    </p>
    <template v-if="registrationToken">
      <h5 class="gl-mb-3">{{ $options.i18n.runnerRegistrationToken }}</h5>
      <div class="gl-display-flex">
        <pre class="gl-bg-gray gl-flex-grow-1 gl-white-space-pre-line">{{ registrationToken }}</pre>
        <modal-copy-button
          :title="$options.i18n.copyInstructions"
          :text="registrationToken"
          css-classes="gl-align-self-start gl-ml-2 gl-mt-2"
          category="tertiary"
        />
      </div>
    </template>
    <footer class="gl-display-flex gl-justify-content-end gl-pt-3 gl-gap-3">
      <gl-button @click="onClose()">{{ $options.i18n.close }}</gl-button>
      <gl-button variant="confirm" @click="onOk()">
        {{ $options.i18n.deployRunnerInAws }}
        <gl-icon name="external-link" :aria-label="$options.i18n.externalLink" />
      </gl-button>
    </footer>
  </div>
</template>