summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/security_configuration/components/manage_via_mr.vue
blob: 12e5f634a086fbf90217bc36fdca7346b3e0b96b (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
<script>
import { GlButton } from '@gitlab/ui';
import { featureToMutationMap } from 'ee_else_ce/security_configuration/components/constants';
import { redirectTo } from '~/lib/utils/url_utility';
import { sprintf, s__ } from '~/locale';
import apolloProvider from '../provider';

export default {
  apolloProvider,
  components: {
    GlButton,
  },
  inject: ['projectPath'],
  props: {
    feature: {
      type: Object,
      required: true,
    },
    variant: {
      type: String,
      required: false,
      default: 'success',
    },
    category: {
      type: String,
      required: false,
      default: 'secondary',
    },
  },
  data() {
    return {
      isLoading: false,
    };
  },
  computed: {
    featureSettings() {
      return featureToMutationMap[this.feature.type];
    },
  },
  methods: {
    async mutate() {
      this.isLoading = true;
      try {
        const mutation = this.featureSettings;
        const { data } = await this.$apollo.mutate(mutation.getMutationPayload(this.projectPath));
        const { errors, successPath } = data[mutation.mutationId];

        if (errors.length > 0) {
          throw new Error(errors[0]);
        }

        if (!successPath) {
          throw new Error(
            sprintf(this.$options.i18n.noSuccessPathError, { featureName: this.feature.name }),
          );
        }

        redirectTo(successPath);
      } catch (e) {
        this.$emit('error', e.message);
        this.isLoading = false;
      }
    },
  },
  i18n: {
    buttonLabel: s__('SecurityConfiguration|Configure via Merge Request'),
    noSuccessPathError: s__(
      'SecurityConfiguration|%{featureName} merge request creation mutation failed',
    ),
  },
};
</script>

<template>
  <gl-button
    v-if="!feature.configured"
    :loading="isLoading"
    :variant="variant"
    :category="category"
    @click="mutate"
    >{{ $options.i18n.buttonLabel }}</gl-button
  >
</template>