summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/states/unresolved_discussions.vue
blob: c6ce29acb092726d6d8a9b95dc3df1b80681148f (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
<script>
import { GlButton } from '@gitlab/ui';
import notesEventHub from '~/notes/event_hub';
import statusIcon from '../mr_widget_status_icon.vue';

export default {
  name: 'UnresolvedDiscussions',
  components: {
    statusIcon,
    GlButton,
  },
  props: {
    mr: {
      type: Object,
      required: true,
    },
  },
  methods: {
    jumpToFirstUnresolvedDiscussion() {
      notesEventHub.$emit('jumpToFirstUnresolvedDiscussion');
    },
  },
};
</script>

<template>
  <div class="mr-widget-body media gl-flex-wrap">
    <status-icon :show-disabled-button="true" status="warning" />
    <div class="media-body">
      <span class="gl-ml-3 gl-font-weight-bold gl-display-block gl-w-100">{{
        s__('mrWidget|Merge blocked: all threads must be resolved.')
      }}</span>
      <gl-button
        data-testid="jump-to-first"
        class="gl-ml-3"
        size="small"
        icon="comment-next"
        @click="jumpToFirstUnresolvedDiscussion"
      >
        {{ s__('mrWidget|Jump to first unresolved thread') }}
      </gl-button>
      <gl-button
        v-if="mr.createIssueToResolveDiscussionsPath"
        :href="mr.createIssueToResolveDiscussionsPath"
        class="js-create-issue gl-ml-3"
        size="small"
        icon="issue-new"
      >
        {{ s__('mrWidget|Resolve all threads in new issue') }}
      </gl-button>
    </div>
  </div>
</template>