summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notes/components/discussion_actions.vue
blob: f4570c1292c82b025ca141727dac8ba2a9b9aac8 (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
<script>
import ReplyPlaceholder from './discussion_reply_placeholder.vue';
import ResolveDiscussionButton from './discussion_resolve_button.vue';
import ResolveWithIssueButton from './discussion_resolve_with_issue_button.vue';
import JumpToNextDiscussionButton from './discussion_jump_to_next_button.vue';

export default {
  name: 'DiscussionActions',
  components: {
    ReplyPlaceholder,
    ResolveDiscussionButton,
    ResolveWithIssueButton,
    JumpToNextDiscussionButton,
  },
  props: {
    discussion: {
      type: Object,
      required: true,
    },
    isResolving: {
      type: Boolean,
      required: true,
    },
    resolveButtonTitle: {
      type: String,
      required: true,
    },
    resolveWithIssuePath: {
      type: String,
      required: false,
      default: '',
    },
    shouldShowJumpToNextDiscussion: {
      type: Boolean,
      required: true,
    },
  },
};
</script>

<template>
  <div class="discussion-with-resolve-btn">
    <reply-placeholder
      :button-text="s__('MergeRequests|Reply...')"
      class="qa-discussion-reply"
      @onClick="$emit('showReplyForm')"
    />
    <resolve-discussion-button
      v-if="discussion.resolvable"
      :is-resolving="isResolving"
      :button-title="resolveButtonTitle"
      @onClick="$emit('resolve')"
    />
    <div v-if="discussion.resolvable" class="btn-group discussion-actions ml-sm-2" role="group">
      <resolve-with-issue-button v-if="resolveWithIssuePath" :url="resolveWithIssuePath" />
      <jump-to-next-discussion-button
        v-if="shouldShowJumpToNextDiscussion"
        @onClick="$emit('jumpToNextDiscussion')"
      />
      <resolve-with-issue-button
        v-if="discussion.resolvable && resolveWithIssuePath"
        :url="resolveWithIssuePath"
      />
    </div>

    <div
      v-if="discussion.resolvable && shouldShowJumpToNextDiscussion"
      class="btn-group discussion-actions ml-sm-2"
    >
      <jump-to-next-discussion-button @onClick="$emit('jumpToNextDiscussion')" />
    </div>
  </div>
</template>