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

index.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: e05eb900efa6d8a08fa007e136bcd7f6765dd90c (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
<script>
import { mapMutations } from 'vuex';
import { GlButton } from '@gitlab/ui';
import { s__ } from '~/locale';

import { reloadPage, persistBaseUrl, retrieveBaseUrl } from '~/jira_connect/subscriptions/utils';
import { updateInstallation, setApiBaseURL } from '~/jira_connect/subscriptions/api';
import {
  GITLAB_COM_BASE_PATH,
  I18N_UPDATE_INSTALLATION_ERROR_MESSAGE,
  FAILED_TO_UPDATE_DOC_LINK,
} from '~/jira_connect/subscriptions/constants';
import { SET_ALERT } from '~/jira_connect/subscriptions/store/mutation_types';

import SignInOauthButton from '../../../components/sign_in_oauth_button.vue';
import VersionSelectForm from './version_select_form.vue';

export default {
  name: 'SignInGitlabMultiversion',
  components: {
    GlButton,
    SignInOauthButton,
    VersionSelectForm,
  },
  data() {
    return {
      gitlabBasePath: null,
      loadingVersionSelect: false,
    };
  },
  computed: {
    hasSelectedVersion() {
      return this.gitlabBasePath !== null;
    },
  },
  mounted() {
    this.gitlabBasePath = retrieveBaseUrl();
    if (this.gitlabBasePath !== GITLAB_COM_BASE_PATH) {
      setApiBaseURL(this.gitlabBasePath);
    }
  },
  methods: {
    ...mapMutations({
      setAlert: SET_ALERT,
    }),
    resetGitlabBasePath() {
      this.gitlabBasePath = null;
      setApiBaseURL();
    },
    onVersionSelect(gitlabBasePath) {
      this.loadingVersionSelect = true;
      updateInstallation(gitlabBasePath)
        .then(() => {
          persistBaseUrl(gitlabBasePath);
          reloadPage();
        })
        .catch(() => {
          this.setAlert({
            message: I18N_UPDATE_INSTALLATION_ERROR_MESSAGE,
            linkUrl: FAILED_TO_UPDATE_DOC_LINK,
            variant: 'danger',
          });
          this.loadingVersionSelect = false;
        });
    },
    onSignInError() {
      this.$emit('error');
    },
  },
  i18n: {
    title: s__('JiraConnect|Welcome to GitLab for Jira'),
    signInSubtitle: s__('JiraConnect|Sign in to GitLab to link groups.'),
    changeVersionButtonText: s__('JiraConnect|Change GitLab version'),
  },
};
</script>

<template>
  <div>
    <div class="gl-text-center">
      <h2>{{ $options.i18n.title }}</h2>
    </div>

    <version-select-form
      v-if="!hasSelectedVersion"
      class="gl-mt-7"
      :loading="loadingVersionSelect"
      @submit="onVersionSelect"
    />

    <template v-else>
      <div class="gl-text-center">
        <p data-testid="subtitle">{{ $options.i18n.signInSubtitle }}</p>
        <sign-in-oauth-button
          class="gl-mb-5"
          :gitlab-base-path="gitlabBasePath"
          @sign-in="$emit('sign-in-oauth', $event)"
          @error="onSignInError"
        />

        <div>
          <gl-button category="tertiary" variant="confirm" @click="resetGitlabBasePath">
            {{ $options.i18n.changeVersionButtonText }}
          </gl-button>
        </div>
      </div>
    </template>
  </div>
</template>