summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jira_connect/subscriptions/components/sign_in_button.vue
blob: 627abcdd4a085baef1c092e5fc1c2c74b0a9941e (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
<script>
import { GlButton } from '@gitlab/ui';
import { getGitlabSignInURL } from '~/jira_connect/subscriptions/utils';
import { s__ } from '~/locale';

export default {
  components: {
    GlButton,
  },
  props: {
    usersPath: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      signInURL: '',
    };
  },
  created() {
    this.setSignInURL();
  },
  methods: {
    async setSignInURL() {
      this.signInURL = await getGitlabSignInURL(this.usersPath);
    },
  },
  i18n: {
    defaultButtonText: s__('Integrations|Sign in to GitLab'),
  },
};
</script>
<template>
  <gl-button category="primary" variant="info" :href="signInURL" target="_blank">
    <slot>
      {{ $options.i18n.defaultButtonText }}
    </slot>
  </gl-button>
</template>