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

status_icon.vue « widget « components « vue_merge_request_widget « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 181b8cfad9a8bc260192172bd158cdb073d51264 (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
<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}`;
    },
    iconClassNameText() {
      return this.$options.EXTENSION_ICON_CLASS[this.iconName];
    },
  },
  EXTENSION_ICON_NAMES,
  EXTENSION_ICON_CLASS,
};
</script>

<template>
  <div
    :class="{
      [iconClassNameText]: !isLoading,
      [`mr-widget-status-icon-level-${level}`]: !isLoading,
      'gl-mr-3': level === 1,
    }"
    class="gl-relative gl-w-6 gl-h-6 gl-rounded-full gl--flex-center"
  >
    <gl-loading-icon v-if="isLoading" size="md" inline />
    <gl-icon
      v-else
      :name="$options.EXTENSION_ICON_NAMES[iconName]"
      :size="12"
      :aria-label="iconAriaLabel"
      :data-qa-selector="`status_${iconName}_icon`"
      class="gl-relative gl-z-index-1"
    />
  </div>
</template>