debian-mirror-gitlab/app/assets/javascripts/jobs/components/sidebar_detail_row.vue
2018-12-13 13:39:08 +05:30

61 lines
1 KiB
Vue

<script>
import { GlLink } from '@gitlab-org/gitlab-ui';
export default {
name: 'SidebarDetailRow',
components: {
GlLink,
},
props: {
title: {
type: String,
required: false,
default: '',
},
value: {
type: String,
required: true,
},
helpUrl: {
type: String,
required: false,
default: '',
},
},
computed: {
hasTitle() {
return this.title.length > 0;
},
hasHelpURL() {
return this.helpUrl.length > 0;
},
},
};
</script>
<template>
<p class="build-detail-row">
<span
v-if="hasTitle"
class="build-light-text"
>
{{ title }}:
</span>
{{ value }}
<span
v-if="hasHelpURL"
class="help-button float-right"
>
<gl-link
:href="helpUrl"
target="_blank"
rel="noopener noreferrer nofollow"
>
<i
class="fa fa-question-circle"
aria-hidden="true"
></i>
</gl-link>
</span>
</p>
</template>