summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issue_show/components/incidents/highlight_bar.vue
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/issue_show/components/incidents/highlight_bar.vue')
-rw-r--r--app/assets/javascripts/issue_show/components/incidents/highlight_bar.vue63
1 files changed, 0 insertions, 63 deletions
diff --git a/app/assets/javascripts/issue_show/components/incidents/highlight_bar.vue b/app/assets/javascripts/issue_show/components/incidents/highlight_bar.vue
deleted file mode 100644
index 96f187f26dd..00000000000
--- a/app/assets/javascripts/issue_show/components/incidents/highlight_bar.vue
+++ /dev/null
@@ -1,63 +0,0 @@
-<script>
-import { GlLink, GlTooltipDirective } from '@gitlab/ui';
-import { formatDate } from '~/lib/utils/datetime_utility';
-
-export default {
- components: {
- GlLink,
- IncidentSla: () => import('ee_component/issue_show/components/incidents/incident_sla.vue'),
- },
- directives: {
- GlTooltip: GlTooltipDirective,
- },
- props: {
- alert: {
- type: Object,
- required: false,
- default: null,
- },
- },
- data() {
- return { childHasData: false };
- },
- computed: {
- startTime() {
- return formatDate(this.alert.startedAt, 'yyyy-mm-dd Z');
- },
- showHighlightBar() {
- return this.alert || this.childHasData;
- },
- },
- methods: {
- update(hasData) {
- this.childHasData = hasData;
- },
- },
-};
-</script>
-
-<template>
- <div
- v-show="showHighlightBar"
- class="gl-border-solid gl-border-1 gl-border-gray-100 gl-p-5 gl-mb-3 gl-rounded-base gl-display-flex gl-justify-content-space-between gl-xs-flex-direction-column"
- >
- <div v-if="alert" class="gl-mr-3">
- <span class="gl-font-weight-bold">{{ s__('HighlightBar|Original alert:') }}</span>
- <gl-link v-gl-tooltip :title="alert.title" :href="alert.detailsUrl">
- #{{ alert.iid }}
- </gl-link>
- </div>
-
- <div v-if="alert" class="gl-mr-3">
- <span class="gl-font-weight-bold">{{ s__('HighlightBar|Alert start time:') }}</span>
- {{ startTime }}
- </div>
-
- <div v-if="alert" class="gl-mr-3">
- <span class="gl-font-weight-bold">{{ s__('HighlightBar|Alert events:') }}</span>
- <span>{{ alert.eventCount }}</span>
- </div>
-
- <incident-sla @update="update" />
- </div>
-</template>