summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/states/work_in_progress.vue
blob: 118caac84b9cfbf4cf6458cccf830b85a592f4f2 (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
<script>
import $ from 'jquery';
import { GlDeprecatedButton } from '@gitlab/ui';
import { __, s__ } from '~/locale';
import createFlash from '~/flash';
import StatusIcon from '../mr_widget_status_icon.vue';
import tooltip from '../../../vue_shared/directives/tooltip';
import eventHub from '../../event_hub';

export default {
  name: 'WorkInProgress',
  components: {
    StatusIcon,
    GlDeprecatedButton,
  },
  directives: {
    tooltip,
  },
  props: {
    mr: { type: Object, required: true },
    service: { type: Object, required: true },
  },
  data() {
    return {
      isMakingRequest: false,
    };
  },
  computed: {
    wipInfoTooltip() {
      return s__(
        'mrWidget|When this merge request is ready, remove the WIP: prefix from the title to allow it to be merged',
      );
    },
  },
  methods: {
    handleRemoveWIP() {
      this.isMakingRequest = true;
      this.service
        .removeWIP()
        .then(res => res.data)
        .then(data => {
          eventHub.$emit('UpdateWidgetData', data);
          createFlash(__('The merge request can now be merged.'), 'notice');
          $('.merge-request .detail-page-description .title').text(this.mr.title);
        })
        .catch(() => {
          this.isMakingRequest = false;
          createFlash(__('Something went wrong. Please try again.'));
        });
    },
  },
};
</script>

<template>
  <div class="mr-widget-body media">
    <status-icon :show-disabled-button="Boolean(mr.removeWIPPath)" status="warning" />
    <div class="media-body space-children">
      <span class="bold">
        {{ __('This is a Work in Progress') }}
        <i
          v-tooltip
          class="fa fa-question-circle"
          :title="wipInfoTooltip"
          :aria-label="wipInfoTooltip"
        >
        </i>
      </span>
      <gl-deprecated-button
        v-if="mr.removeWIPPath"
        size="sm"
        variant="default"
        :disabled="isMakingRequest"
        :loading="isMakingRequest"
        class="js-remove-wip"
        @click="handleRemoveWIP"
      >
        {{ s__('mrWidget|Resolve WIP status') }}
      </gl-deprecated-button>
    </div>
  </div>
</template>