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

deployment_target_select.vue « components « new « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0003134f15c4599f71c12773cfecced7ce568f19 (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
<script>
import { GlFormGroup, GlFormSelect, GlFormText, GlSprintf, GlLink } from '@gitlab/ui';
import { helpPagePath } from '~/helpers/help_page_helper';
import { s__ } from '~/locale';
import Tracking from '~/tracking';
import {
  DEPLOYMENT_TARGET_SELECTIONS,
  DEPLOYMENT_TARGET_LABEL,
  DEPLOYMENT_TARGET_EVENT,
  VISIT_DOCS_EVENT,
  NEW_PROJECT_FORM,
  K8S_OPTION,
} from '../constants';

const trackingMixin = Tracking.mixin({ label: DEPLOYMENT_TARGET_LABEL });

export default {
  i18n: {
    deploymentTargetLabel: s__('Deployment Target|Project deployment target (optional)'),
    defaultOption: s__('Deployment Target|Select the deployment target'),
    k8sEducationText: s__(
      'Deployment Target|%{linkStart}How to provision or deploy to Kubernetes clusters from GitLab?%{linkEnd}',
    ),
  },
  deploymentTargets: DEPLOYMENT_TARGET_SELECTIONS,
  VISIT_DOCS_EVENT,
  DEPLOYMENT_TARGET_LABEL,
  selectId: 'deployment-target-select',
  helpPageUrl: helpPagePath('user/clusters/agent/index'),
  components: {
    GlFormGroup,
    GlFormSelect,
    GlFormText,
    GlSprintf,
    GlLink,
  },
  mixins: [trackingMixin],
  data() {
    return {
      selectedTarget: null,
      formSubmitted: false,
    };
  },
  computed: {
    isK8sOptionSelected() {
      return this.selectedTarget === K8S_OPTION;
    },
  },
  mounted() {
    const form = document.getElementById(NEW_PROJECT_FORM);
    form.addEventListener('submit', () => {
      this.formSubmitted = true;
      this.trackSelection();
    });
  },
  methods: {
    trackSelection() {
      if (this.formSubmitted && this.selectedTarget) {
        this.track(DEPLOYMENT_TARGET_EVENT, { property: this.selectedTarget });
      }
    },
  },
};
</script>

<template>
  <gl-form-group :label="$options.i18n.deploymentTargetLabel" :label-for="$options.selectId">
    <gl-form-select
      :id="$options.selectId"
      v-model="selectedTarget"
      :options="$options.deploymentTargets"
      class="input-lg"
    >
      <template #first>
        <option :value="null" disabled>{{ $options.i18n.defaultOption }}</option>
      </template>
    </gl-form-select>

    <gl-form-text v-if="isK8sOptionSelected">
      <gl-sprintf :message="$options.i18n.k8sEducationText">
        <template #link="{ content }">
          <gl-link
            :href="$options.helpPageUrl"
            :data-track-action="$options.VISIT_DOCS_EVENT"
            :data-track-label="$options.DEPLOYMENT_TARGET_LABEL"
            >{{ content }}</gl-link
          >
        </template>
      </gl-sprintf>
    </gl-form-text>
  </gl-form-group>
</template>