debian-mirror-gitlab/app/assets/javascripts/jobs/components/commit_block.vue

59 lines
1.2 KiB
Vue
Raw Normal View History

2018-11-20 20:47:30 +05:30
<script>
2019-01-03 12:48:30 +05:30
import { GlLink } from '@gitlab-org/gitlab-ui';
2018-12-13 13:39:08 +05:30
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
2018-11-20 20:47:30 +05:30
2018-12-13 13:39:08 +05:30
export default {
components: {
ClipboardButton,
GlLink,
},
props: {
commit: {
type: Object,
required: true,
2018-11-20 20:47:30 +05:30
},
2018-12-13 13:39:08 +05:30
mergeRequest: {
type: Object,
required: false,
default: null,
2018-11-20 20:47:30 +05:30
},
2018-12-13 13:39:08 +05:30
isLastBlock: {
type: Boolean,
required: true,
},
},
};
2018-11-20 20:47:30 +05:30
</script>
<template>
2018-12-05 23:21:45 +05:30
<div
:class="{
'block-last': isLastBlock,
2019-01-03 12:48:30 +05:30
block: !isLastBlock
}">
2018-11-20 20:47:30 +05:30
<p>
{{ __('Commit') }}
2019-01-03 12:48:30 +05:30
<gl-link
:href="commit.commit_path"
class="js-commit-sha commit-sha link-commit"
>{{ commit.short_id }}</gl-link>
2018-11-20 20:47:30 +05:30
<clipboard-button
2018-12-05 23:21:45 +05:30
:text="commit.short_id"
2018-11-20 20:47:30 +05:30
:title="__('Copy commit SHA to clipboard')"
2018-12-05 23:21:45 +05:30
css-class="btn btn-clipboard btn-transparent"
2018-11-20 20:47:30 +05:30
/>
2019-01-03 12:48:30 +05:30
<gl-link
v-if="mergeRequest"
:href="mergeRequest.path"
class="js-link-commit link-commit"
>!{{ mergeRequest.iid }}</gl-link>
2018-11-20 20:47:30 +05:30
</p>
2019-01-03 12:48:30 +05:30
<p class="build-light-text append-bottom-0">
{{ commit.title }}
</p>
2018-11-20 20:47:30 +05:30
</div>
</template>