63 lines
1.9 KiB
Vue
63 lines
1.9 KiB
Vue
<script>
|
|
import { GlIcon, GlSprintf, GlTooltipDirective } from '@gitlab/ui';
|
|
import TimeAgo from '~/vue_shared/components/time_ago_tooltip.vue';
|
|
import { I18N_LOCKED_RUNNER_DESCRIPTION } from '../constants';
|
|
import { formatRunnerName } from '../utils';
|
|
import RunnerTypeBadge from './runner_type_badge.vue';
|
|
import RunnerStatusBadge from './runner_status_badge.vue';
|
|
|
|
export default {
|
|
components: {
|
|
GlIcon,
|
|
GlSprintf,
|
|
TimeAgo,
|
|
RunnerTypeBadge,
|
|
RunnerStatusBadge,
|
|
},
|
|
directives: {
|
|
GlTooltip: GlTooltipDirective,
|
|
},
|
|
props: {
|
|
runner: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
computed: {
|
|
name() {
|
|
return formatRunnerName(this.runner);
|
|
},
|
|
},
|
|
I18N_LOCKED_RUNNER_DESCRIPTION,
|
|
};
|
|
</script>
|
|
<template>
|
|
<div
|
|
class="gl-display-flex gl-justify-content-space-between gl-align-items-flex-start gl-gap-3 gl-flex-wrap gl-py-5"
|
|
>
|
|
<div>
|
|
<h1 class="gl-font-size-h-display gl-my-0">{{ name }}</h1>
|
|
<div class="gl-display-flex gl-align-items-flex-start gl-gap-3 gl-flex-wrap gl-mt-3">
|
|
<runner-status-badge :contacted-at="runner.contactedAt" :status="runner.status" />
|
|
<runner-type-badge :type="runner.runnerType" />
|
|
<span v-if="runner.createdAt">
|
|
<gl-sprintf :message="__('%{locked} created %{timeago}')">
|
|
<template #locked>
|
|
<gl-icon
|
|
v-if="runner.locked"
|
|
v-gl-tooltip="$options.I18N_LOCKED_RUNNER_DESCRIPTION"
|
|
name="lock"
|
|
:aria-label="$options.I18N_LOCKED_RUNNER_DESCRIPTION"
|
|
/>
|
|
</template>
|
|
<template #timeago>
|
|
<time-ago :time="runner.createdAt" />
|
|
</template>
|
|
</gl-sprintf>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="gl-display-flex gl-gap-3 gl-flex-wrap"><slot name="actions"></slot></div>
|
|
</div>
|
|
</template>
|