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

status_icon.vue « extensions « 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: f9d0986d60d7c0a71fc478a27569c64579e3ba83 (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
<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: 0,
    },
    name: {
      type: String,
      required: false,
      default: '',
    },
    isLoading: {
      type: Boolean,
      required: false,
      default: false,
    },
    iconName: {
      type: String,
      required: false,
      default: null,
    },
    size: {
      type: Number,
      required: false,
      default: 12,
    },
  },
  computed: {
    iconAriaLabel() {
      return `${capitalizeFirstCharacter(this.iconName)} ${this.name}`;
    },
  },
  EXTENSION_ICON_NAMES,
  EXTENSION_ICON_CLASS,
};
</script>

<template>
  <div
    :class="[
      $options.EXTENSION_ICON_CLASS[iconName],
      { 'gl-w-6': !isLoading && level === 1 },
      { 'gl-p-2': isLoading || level === 1 },
    ]"
    class="gl-mr-3 gl-p-2"
  >
    <div
      class="gl-rounded-full gl-relative gl-display-flex"
      :class="{ 'mr-widget-extension-icon': !isLoading && level === 1 }"
    >
      <div class="gl-absolute gl-top-half gl-left-50p gl-translate-x-n50 gl-display-flex gl-m-auto">
        <div class="gl-display-flex gl-m-auto gl-translate-y-n50">
          <gl-loading-icon v-if="isLoading" size="md" inline />
          <gl-icon
            v-else
            :name="$options.EXTENSION_ICON_NAMES[iconName]"
            :size="size"
            :aria-label="iconAriaLabel"
            :data-qa-selector="`status_${iconName}_icon`"
            class="gl-display-block"
          />
        </div>
      </div>
    </div>
  </div>
</template>