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/cycle_analytics/components/stage_test_component.vue')
-rw-r--r--app/assets/javascripts/cycle_analytics/components/stage_test_component.vue56
1 files changed, 0 insertions, 56 deletions
diff --git a/app/assets/javascripts/cycle_analytics/components/stage_test_component.vue b/app/assets/javascripts/cycle_analytics/components/stage_test_component.vue
deleted file mode 100644
index c165c8cee78..00000000000
--- a/app/assets/javascripts/cycle_analytics/components/stage_test_component.vue
+++ /dev/null
@@ -1,56 +0,0 @@
-<script>
-import { GlIcon } from '@gitlab/ui';
-import limitWarning from './limit_warning_component.vue';
-import totalTime from './total_time_component.vue';
-
-export default {
- components: {
- totalTime,
- limitWarning,
- GlIcon,
- },
- props: {
- items: {
- type: Array,
- default: () => [],
- required: false,
- },
- stage: {
- type: Object,
- default: () => ({}),
- required: false,
- },
- },
-};
-</script>
-<template>
- <div>
- <div class="events-description">
- {{ stage.description }}
- <limit-warning :count="items.length" />
- </div>
- <ul class="stage-event-list">
- <li v-for="(build, i) in items" :key="i" class="stage-event-item item-build-component">
- <div class="item-details">
- <h5 class="item-title">
- <span class="icon-build-status gl-text-green-500">
- <gl-icon name="status_success" :size="14" />
- </span>
- <a :href="build.url" class="item-build-name"> {{ build.name }} </a> &middot;
- <a :href="build.url" class="pipeline-id"> #{{ build.id }} </a>
- <gl-icon :size="16" name="fork" />
- <a :href="build.branch.url" class="ref-name"> {{ build.branch.name }} </a>
- <span class="icon-branch gl-text-gray-400">
- <gl-icon name="commit" :size="14" />
- </span>
- <a :href="build.commitUrl" class="commit-sha"> {{ build.shortSha }} </a>
- </h5>
- <span>
- <a :href="build.url" class="issue-date"> {{ build.date }} </a>
- </span>
- </div>
- <div class="item-time"><total-time :time="build.totalTime" /></div>
- </li>
- </ul>
- </div>
-</template>