summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/components/confidential/edit_form_buttons.vue
blob: 80928649a0300bc82308425e1ff4a2949be70e8a (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
<script>
import $ from 'jquery';
import { GlLoadingIcon } from '@gitlab/ui';
import { mapActions, mapState } from 'vuex';
import { __ } from '~/locale';
import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import Flash from '~/flash';
import eventHub from '../../event_hub';

export default {
  components: {
    GlLoadingIcon,
  },
  mixins: [glFeatureFlagsMixin()],
  props: {
    fullPath: {
      required: true,
      type: String,
    },
  },
  data() {
    return {
      isLoading: false,
    };
  },
  computed: {
    ...mapState({ confidential: ({ noteableData }) => noteableData.confidential }),
    toggleButtonText() {
      if (this.isLoading) {
        return __('Applying');
      }

      return this.confidential ? __('Turn Off') : __('Turn On');
    },
  },
  methods: {
    ...mapActions(['updateConfidentialityOnIssue']),
    closeForm() {
      eventHub.$emit('closeConfidentialityForm');
      $(this.$el).trigger('hidden.gl.dropdown');
    },
    submitForm() {
      this.isLoading = true;
      const confidential = !this.confidential;

      if (this.glFeatures.confidentialApolloSidebar) {
        this.updateConfidentialityOnIssue({ confidential, fullPath: this.fullPath })
          .catch(() => {
            Flash(__('Something went wrong trying to change the confidentiality of this issue'));
          })
          .finally(() => {
            this.closeForm();
            this.isLoading = false;
          });
      } else {
        eventHub.$emit('updateConfidentialAttribute');
      }
    },
  },
};
</script>

<template>
  <div class="sidebar-item-warning-message-actions">
    <button type="button" class="btn btn-default gl-mr-3" @click="closeForm">
      {{ __('Cancel') }}
    </button>
    <button
      type="button"
      class="btn btn-close"
      data-testid="confidential-toggle"
      :disabled="isLoading"
      @click.prevent="submitForm"
    >
      <gl-loading-icon v-if="isLoading" inline />
      {{ toggleButtonText }}
    </button>
  </div>
</template>