summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/widget/status_icon.vue
blob: ff17de343d6fdfcfcdbc10b60383bf0d62ab3cf1 (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
<script>
import { GlLoadingIcon, GlIcon } from '@gitlab/ui';
import { capitalizeFirstCharacter } from '~/lib/utils/text_utility';
import { EXTENSION_ICON_CLASS, EXTENSION_ICON_NAMES } from '../../constants';

export default {
  components: {
    GlLoadingIcon,
    GlIcon,
  },
  props: {
    level: {
      type: Number,
      required: false,
      default: 1,
    },
    name: {
      type: String,
      required: false,
      default: '',
    },
    isLoading: {
      type: Boolean,
      required: false,
      default: false,
    },
    iconName: {
      type: String,
      required: false,
      default: null,
    },
  },
  computed: {
    iconAriaLabel() {
      return `${capitalizeFirstCharacter(this.iconName)} ${this.name}`;
    },
    iconSize() {
      return this.level === 1 ? 16 : 12;
    },
  },
  EXTENSION_ICON_NAMES,
  EXTENSION_ICON_CLASS,
};
</script>

<template>
  <div :class="[$options.EXTENSION_ICON_CLASS[iconName]]" class="gl-mr-3">
    <gl-loading-icon v-if="isLoading" size="md" inline />
    <div
      v-else
      class="gl-display-flex gl-align-items-center gl-justify-content-center gl-rounded-full gl-bg-gray-10"
      :class="{
        'gl-p-2': level === 1,
      }"
    >
      <div class="gl-rounded-full gl-bg-white">
        <gl-icon
          :name="$options.EXTENSION_ICON_NAMES[iconName]"
          :size="iconSize"
          :aria-label="iconAriaLabel"
          :data-qa-selector="`status_${iconName}_icon`"
          class="gl-display-block"
        />
      </div>
    </div>
  </div>
</template>