Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/ci/runner/components/cells/runner_status_cell.vue')
-rw-r--r--app/assets/javascripts/ci/runner/components/cells/runner_status_cell.vue46
1 files changed, 46 insertions, 0 deletions
diff --git a/app/assets/javascripts/ci/runner/components/cells/runner_status_cell.vue b/app/assets/javascripts/ci/runner/components/cells/runner_status_cell.vue
new file mode 100644
index 00000000000..67b9b0a266f
--- /dev/null
+++ b/app/assets/javascripts/ci/runner/components/cells/runner_status_cell.vue
@@ -0,0 +1,46 @@
+<script>
+import { GlTooltipDirective } from '@gitlab/ui';
+
+import RunnerStatusBadge from '../runner_status_badge.vue';
+import RunnerPausedBadge from '../runner_paused_badge.vue';
+
+export default {
+ components: {
+ RunnerStatusBadge,
+ RunnerUpgradeStatusBadge: () =>
+ import('ee_component/ci/runner/components/runner_upgrade_status_badge.vue'),
+ RunnerPausedBadge,
+ },
+ directives: {
+ GlTooltip: GlTooltipDirective,
+ },
+ props: {
+ runner: {
+ type: Object,
+ required: true,
+ },
+ },
+ computed: {
+ paused() {
+ return !this.runner.active;
+ },
+ },
+};
+</script>
+
+<template>
+ <div>
+ <runner-status-badge
+ :runner="runner"
+ class="gl-display-inline-block gl-max-w-full gl-text-truncate"
+ />
+ <runner-upgrade-status-badge
+ :runner="runner"
+ class="gl-display-inline-block gl-max-w-full gl-text-truncate"
+ />
+ <runner-paused-badge
+ v-if="paused"
+ class="gl-display-inline-block gl-max-w-full gl-text-truncate"
+ />
+ </div>
+</template>