summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/runner/components/runner_header.vue
blob: abc07cec1adbabdd05806c0b43f659f26ace104f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<script>
import { GlIcon, GlSprintf, GlTooltipDirective } from '@gitlab/ui';
import { sprintf } from '~/locale';
import TimeAgo from '~/vue_shared/components/time_ago_tooltip.vue';
import { getIdFromGraphQLId } from '~/graphql_shared/utils';
import { I18N_DETAILS_TITLE, I18N_LOCKED_RUNNER_DESCRIPTION } from '../constants';
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: {
    paused() {
      return !this.runner.active;
    },
    heading() {
      const id = getIdFromGraphQLId(this.runner.id);
      return sprintf(I18N_DETAILS_TITLE, { runner_id: id });
    },
  },
  I18N_LOCKED_RUNNER_DESCRIPTION,
};
</script>
<template>
  <div
    class="gl-display-flex gl-align-items-center gl-py-5 gl-border-b-1 gl-border-b-solid gl-border-b-gray-100"
  >
    <div>
      <runner-status-badge :runner="runner" />
      <runner-type-badge v-if="runner" :type="runner.runnerType" />
      <template v-if="runner.createdAt">
        <gl-sprintf :message="__('%{runner} created %{timeago}')">
          <template #runner>
            <strong>{{ heading }}</strong>
            <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>
      </template>
      <template v-else>
        <strong>{{ heading }}</strong>
      </template>
    </div>
    <div class="gl-ml-auto gl-flex-shrink-0"><slot name="actions"></slot></div>
  </div>
</template>