Welcome to mirror list, hosted at ThFree Co, Russian Federation.

reply_button.vue « note_actions « components « notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2f9d7f128aa7c4faf3c60aa51b66ca3ec4d8e01 (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
<script>
import { mapActions } from 'vuex';
import { GlTooltipDirective, GlButton } from '@gitlab/ui';
import Icon from '~/vue_shared/components/icon.vue';

export default {
  name: 'ReplyButton',
  components: {
    Icon,
    GlButton,
  },
  directives: {
    GlTooltip: GlTooltipDirective,
  },
  props: {
    noteId: {
      type: String,
      required: true,
    },
  },
  methods: {
    ...mapActions(['convertToDiscussion']),
  },
};
</script>

<template>
  <div class="note-actions-item">
    <gl-button
      ref="button"
      v-gl-tooltip.bottom
      class="note-action-button"
      variant="transparent"
      :title="__('Reply to comment')"
      @click="convertToDiscussion(noteId)"
    >
      <icon name="comment" css-classes="link-highlight" />
    </gl-button>
  </div>
</template>