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

label_item.vue « labels_select_vue « sidebar « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e431fd000a6cd5d0a6423e052de3f981c1eba354 (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 { GlLink, GlIcon } from '@gitlab/ui';

export default {
  functional: true,
  props: {
    label: {
      type: Object,
      required: true,
    },
    isLabelSet: {
      type: Boolean,
      required: true,
    },
    highlight: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  render(h, { props, listeners }) {
    const { label, highlight, isLabelSet } = props;

    const labelColorBox = h('span', {
      class: 'dropdown-label-box',
      style: {
        backgroundColor: label.color,
      },
      attrs: {
        'data-testid': 'label-color-box',
      },
    });

    const checkedIcon = h(GlIcon, {
      class: {
        'mr-2 align-self-center': true,
        hidden: !isLabelSet,
      },
      props: {
        name: 'mobile-issue-close',
      },
    });

    const noIcon = h('span', {
      class: {
        'mr-3 pr-2': true,
        hidden: isLabelSet,
      },
      attrs: {
        'data-testid': 'no-icon',
      },
    });

    const labelTitle = h('span', label.title);

    const labelLink = h(
      GlLink,
      {
        class: 'd-flex align-items-baseline text-break-word label-item',
        on: {
          click: () => {
            listeners.clickLabel(label);
          },
        },
      },
      [noIcon, checkedIcon, labelColorBox, labelTitle],
    );

    return h(
      'li',
      {
        class: {
          'd-block': true,
          'text-left': true,
          'is-focused': highlight,
        },
      },
      [labelLink],
    );
  },
};
</script>