summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/runner/components/runner_assigned_item.vue
blob: 38bdfecb7dff082228b822a9e879ad809df3e730 (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
<script>
import { GlAvatar, GlLink } from '@gitlab/ui';
import { AVATAR_SHAPE_OPTION_RECT } from '~/vue_shared/constants';

export default {
  components: {
    GlAvatar,
    GlLink,
  },
  props: {
    href: {
      type: String,
      required: true,
    },
    name: {
      type: String,
      required: true,
    },
    fullName: {
      type: String,
      required: true,
    },
    avatarUrl: {
      type: String,
      required: false,
      default: null,
    },
  },
  AVATAR_SHAPE_OPTION_RECT,
};
</script>

<template>
  <div class="gl-display-flex gl-align-items-center gl-py-5">
    <gl-link :href="href" data-testid="item-avatar" class="gl-text-decoration-none! gl-mr-3">
      <gl-avatar
        :shape="$options.AVATAR_SHAPE_OPTION_RECT"
        :entity-name="name"
        :alt="name"
        :src="avatarUrl"
        :size="48"
      />
    </gl-link>

    <gl-link :href="href" class="gl-font-weight-bold gl-text-gray-900!">{{ fullName }}</gl-link>
  </div>
</template>