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

version_select_form.vue « sign_in_gitlab_multiversion « sign_in « pages « subscriptions « jira_connect « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a080afd3c53120b97fc5c1dc389c15e6bdec644 (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
<script>
import {
  GlForm,
  GlFormGroup,
  GlFormRadioGroup,
  GlFormInput,
  GlFormRadio,
  GlButton,
} from '@gitlab/ui';
import { __, s__ } from '~/locale';

import { GITLAB_COM_BASE_PATH } from '~/jira_connect/subscriptions/constants';
import SelfManagedAlert from './self_managed_alert.vue';
import SetupInstructions from './setup_instructions.vue';

const RADIO_OPTIONS = {
  saas: 'saas',
  selfManaged: 'selfManaged',
};

const DEFAULT_RADIO_OPTION = RADIO_OPTIONS.saas;

export default {
  name: 'VersionSelectForm',
  components: {
    GlForm,
    GlFormGroup,
    GlFormRadioGroup,
    GlFormInput,
    GlFormRadio,
    GlButton,
    SelfManagedAlert,
    SetupInstructions,
  },
  props: {
    loading: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  data() {
    return {
      selected: DEFAULT_RADIO_OPTION,
      selfManagedBasePathInput: '',
      showSetupInstructions: false,
      showSelfManagedInstanceInput: false,
    };
  },
  computed: {
    isSelfManagedSelected() {
      return this.selected === RADIO_OPTIONS.selfManaged;
    },
    submitText() {
      return this.isSelfManagedSelected
        ? this.$options.i18n.buttonNext
        : this.$options.i18n.buttonSave;
    },
    showVersonSelect() {
      return !this.showSetupInstructions && !this.showSelfManagedInstanceInput;
    },
  },
  methods: {
    onSubmit() {
      if (this.isSelfManagedSelected && !this.showSelfManagedInstanceInput) {
        this.showSetupInstructions = true;
        return;
      }

      const gitlabBasePath = this.isSelfManagedSelected
        ? this.selfManagedBasePathInput
        : GITLAB_COM_BASE_PATH;
      this.$emit('submit', gitlabBasePath);
    },

    onSetupNext() {
      this.showSetupInstructions = false;
      this.showSelfManagedInstanceInput = true;
    },

    onSetupBack() {
      this.showSetupInstructions = false;
      this.showSelfManagedInstanceInput = false;
    },
  },
  radioOptions: RADIO_OPTIONS,
  i18n: {
    title: s__('JiraService|What version of GitLab are you using?'),
    saasRadioLabel: __('GitLab.com (SaaS)'),
    saasRadioHelp: __('Most common'),
    selfManagedRadioLabel: __('GitLab (self-managed)'),
    buttonNext: __('Next'),
    buttonSave: __('Save'),
    instanceURLInputLabel: s__('JiraService|GitLab instance URL'),
    instanceURLInputDescription: s__('JiraService|For example: https://gitlab.example.com'),
  },
};
</script>

<template>
  <gl-form class="gl-max-w-62 gl-mx-auto" @submit.prevent="onSubmit">
    <div v-if="showVersonSelect">
      <h5 class="gl-mb-5">{{ $options.i18n.title }}</h5>
      <gl-form-radio-group v-model="selected" class="gl-mb-3" name="gitlab_version">
        <gl-form-radio :value="$options.radioOptions.saas">
          {{ $options.i18n.saasRadioLabel }}
          <template #help>
            {{ $options.i18n.saasRadioHelp }}
          </template>
        </gl-form-radio>
        <gl-form-radio :value="$options.radioOptions.selfManaged">
          {{ $options.i18n.selfManagedRadioLabel }}
        </gl-form-radio>
      </gl-form-radio-group>
      <self-managed-alert v-if="isSelfManagedSelected" />

      <div class="gl-display-flex gl-justify-content-end gl-mt-5">
        <gl-button variant="confirm" type="submit" :loading="loading" data-testid="submit-button">{{
          submitText
        }}</gl-button>
      </div>
    </div>

    <setup-instructions v-else-if="showSetupInstructions" @next="onSetupNext" @back="onSetupBack" />

    <div v-else-if="showSelfManagedInstanceInput">
      <gl-form-group
        :label="$options.i18n.instanceURLInputLabel"
        :description="$options.i18n.instanceURLInputDescription"
        label-for="self-managed-instance-input"
      >
        <gl-form-input
          id="self-managed-instance-input"
          v-model="selfManagedBasePathInput"
          required
        />
      </gl-form-group>
      <div class="gl-display-flex gl-justify-content-space-between">
        <gl-button data-testid="back-button" @click.prevent="onSetupBack">{{
          __('Back')
        }}</gl-button>
        <gl-button variant="confirm" type="submit" :loading="loading">{{
          $options.i18n.buttonSave
        }}</gl-button>
      </div>
    </div>
  </gl-form>
</template>