summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/runner/runner_details/runner_details_app.vue
blob: 4736e547cb97dc264173fbfb07ff8bc9037e56b1 (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
<script>
import { convertToGraphQLId } from '~/graphql_shared/utils';
import RunnerTypeBadge from '../components/runner_type_badge.vue';
import { I18N_DETAILS_TITLE, RUNNER_ENTITY_TYPE } from '../constants';
import getRunnerQuery from '../graphql/get_runner.query.graphql';

export default {
  components: {
    RunnerTypeBadge,
  },
  i18n: {
    I18N_DETAILS_TITLE,
  },
  props: {
    runnerId: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      runner: {},
    };
  },
  apollo: {
    runner: {
      query: getRunnerQuery,
      variables() {
        return {
          id: convertToGraphQLId(RUNNER_ENTITY_TYPE, this.runnerId),
        };
      },
    },
  },
};
</script>
<template>
  <h2 class="page-title">
    {{ sprintf($options.i18n.I18N_DETAILS_TITLE, { runner_id: runnerId }) }}

    <runner-type-badge v-if="runner.runnerType" :type="runner.runnerType" />
  </h2>
</template>