140 lines
3.6 KiB
Vue
140 lines
3.6 KiB
Vue
<script>
|
|
import { GlTooltipDirective } from '@gitlab/ui';
|
|
import UserAvatarLink from './user_avatar/user_avatar_link.vue';
|
|
import Icon from '../../vue_shared/components/icon.vue';
|
|
|
|
export default {
|
|
directives: {
|
|
GlTooltip: GlTooltipDirective,
|
|
},
|
|
components: {
|
|
UserAvatarLink,
|
|
Icon,
|
|
},
|
|
props: {
|
|
/**
|
|
* Indicates the existence of a tag.
|
|
* Used to render the correct icon, if true will render `fa-tag` icon,
|
|
* if false will render a svg sprite fork icon
|
|
*/
|
|
tag: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: false,
|
|
},
|
|
/**
|
|
* If provided is used to render the branch name and url.
|
|
* Should contain the following properties:
|
|
* name
|
|
* ref_url
|
|
*/
|
|
commitRef: {
|
|
type: Object,
|
|
required: false,
|
|
default: () => ({}),
|
|
},
|
|
/**
|
|
* Used to link to the commit sha.
|
|
*/
|
|
commitUrl: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
|
|
/**
|
|
* Used to show the commit short sha that links to the commit url.
|
|
*/
|
|
shortSha: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
/**
|
|
* If provided shows the commit tile.
|
|
*/
|
|
title: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
/**
|
|
* If provided renders information about the author of the commit.
|
|
* When provided should include:
|
|
* `avatar_url` to render the avatar icon
|
|
* `web_url` to link to user profile
|
|
* `username` to render alt and title tags
|
|
*/
|
|
author: {
|
|
type: Object,
|
|
required: false,
|
|
default: () => ({}),
|
|
},
|
|
showBranch: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: true,
|
|
},
|
|
},
|
|
computed: {
|
|
/**
|
|
* Used to verify if all the properties needed to render the commit
|
|
* ref section were provided.
|
|
*
|
|
* @returns {Boolean}
|
|
*/
|
|
hasCommitRef() {
|
|
return this.commitRef && this.commitRef.name && this.commitRef.ref_url;
|
|
},
|
|
/**
|
|
* Used to verify if all the properties needed to render the commit
|
|
* author section were provided.
|
|
*
|
|
* @returns {Boolean}
|
|
*/
|
|
hasAuthor() {
|
|
return this.author && this.author.avatar_url && this.author.path && this.author.username;
|
|
},
|
|
/**
|
|
* If information about the author is provided will return a string
|
|
* to be rendered as the alt attribute of the img tag.
|
|
*
|
|
* @returns {String}
|
|
*/
|
|
userImageAltDescription() {
|
|
return this.author && this.author.username ? `${this.author.username}'s avatar` : null;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<template>
|
|
<div class="branch-commit">
|
|
<template v-if="hasCommitRef && showBranch">
|
|
<div class="icon-container">
|
|
<i v-if="tag" class="fa fa-tag" aria-hidden="true"> </i> <icon v-if="!tag" name="fork" />
|
|
</div>
|
|
|
|
<a v-gl-tooltip :href="commitRef.ref_url" :title="commitRef.name" class="ref-name">
|
|
{{ commitRef.name }}
|
|
</a>
|
|
</template>
|
|
<icon name="commit" class="commit-icon js-commit-icon" />
|
|
|
|
<a :href="commitUrl" class="commit-sha"> {{ shortSha }} </a>
|
|
|
|
<div class="commit-title flex-truncate-parent">
|
|
<span v-if="title" class="flex-truncate-child">
|
|
<user-avatar-link
|
|
v-if="hasAuthor"
|
|
:link-href="author.path"
|
|
:img-src="author.avatar_url"
|
|
:img-alt="userImageAltDescription"
|
|
:tooltip-text="author.username"
|
|
class="avatar-image-container"
|
|
/>
|
|
<a :href="commitUrl" class="commit-row-message"> {{ title }} </a>
|
|
</span>
|
|
<span v-else> Can't find HEAD commit for this branch </span>
|
|
</div>
|
|
</div>
|
|
</template>
|