2022-04-04 11:22:00 +05:30
|
|
|
<script>
|
|
|
|
import { GlAvatar, GlLink } from '@gitlab/ui';
|
2022-06-21 17:19:12 +05:30
|
|
|
import { AVATAR_SHAPE_OPTION_RECT } from '~/vue_shared/constants';
|
2022-04-04 11:22:00 +05:30
|
|
|
|
|
|
|
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,
|
|
|
|
},
|
|
|
|
},
|
2022-06-21 17:19:12 +05:30
|
|
|
AVATAR_SHAPE_OPTION_RECT,
|
2022-04-04 11:22:00 +05:30
|
|
|
};
|
|
|
|
</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">
|
2022-06-21 17:19:12 +05:30
|
|
|
<gl-avatar
|
|
|
|
:shape="$options.AVATAR_SHAPE_OPTION_RECT"
|
|
|
|
:entity-name="name"
|
|
|
|
:alt="name"
|
|
|
|
:src="avatarUrl"
|
|
|
|
:size="48"
|
|
|
|
/>
|
2022-04-04 11:22:00 +05:30
|
|
|
</gl-link>
|
|
|
|
|
|
|
|
<gl-link :href="href" class="gl-font-weight-bold gl-text-gray-900!">{{ fullName }}</gl-link>
|
|
|
|
</div>
|
|
|
|
</template>
|