summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/components/issue_card_inner_scoped_label.vue
blob: fa4c68964cbb0dd87ccc5b7bc5956e9bff8c14c3 (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
<script>
import { GlLink, GlTooltip } from '@gitlab/ui';

export default {
  components: {
    GlTooltip,
    GlLink,
  },
  props: {
    label: {
      type: Object,
      required: true,
    },
    labelStyle: {
      type: Object,
      required: true,
    },
    scopedLabelsDocumentationLink: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <span
    class="d-inline-block position-relative scoped-label-wrapper append-right-4 prepend-top-4 board-label"
  >
    <a @click="$emit('scoped-label-click', label)">
      <span :ref="'labelTitleRef'" :style="labelStyle" class="badge label color-label">
        {{ label.title }}
      </span>
      <gl-tooltip :target="() => $refs.labelTitleRef" placement="top" boundary="viewport">
        <span class="font-weight-bold scoped-label-tooltip-title">{{ __('Scoped label') }}</span
        ><br />
        {{ label.description }}
      </gl-tooltip>
    </a>

    <gl-link :href="scopedLabelsDocumentationLink" target="_blank" class="label scoped-label"
      ><i class="fa fa-question-circle" :style="labelStyle"></i
    ></gl-link>
  </span>
</template>