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

line_header.vue « log « components « job_details « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 658a94e6af49d61472f56b98fdef88ae9a40afd1 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
<script>
import { GlIcon } from '@gitlab/ui';
import { getLocationHash } from '~/lib/utils/url_utility';
import DurationBadge from './duration_badge.vue';
import LineNumber from './line_number.vue';

export default {
  components: {
    GlIcon,
    LineNumber,
    DurationBadge,
  },
  props: {
    line: {
      type: Object,
      required: true,
    },
    isClosed: {
      type: Boolean,
      required: true,
    },
    path: {
      type: String,
      required: true,
    },
    duration: {
      type: String,
      required: false,
      default: '',
    },
    isHighlighted: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  data() {
    return {
      applyHashHighlight: false,
    };
  },
  computed: {
    iconName() {
      return this.isClosed ? 'chevron-lg-right' : 'chevron-lg-down';
    },
  },
  mounted() {
    const hash = getLocationHash();
    const lineToMatch = `L${this.line.lineNumber}`;

    if (hash === lineToMatch) {
      this.applyHashHighlight = true;
    }
  },
  methods: {
    handleOnClick() {
      this.$emit('toggleLine');
    },
  },
};
</script>

<template>
  <div
    class="js-log-line log-line collapsible-line d-flex justify-content-between ws-normal gl-align-items-flex-start gl-relative"
    :class="{ 'gl-bg-gray-700': isHighlighted || applyHashHighlight }"
    role="button"
    @click="handleOnClick"
  >
    <gl-icon :name="iconName" class="arrow gl-absolute gl-top-2" />
    <line-number :line-number="line.lineNumber" :path="path" />
    <span
      v-for="(content, i) in line.content"
      :key="i"
      class="line-text w-100 gl-white-space-pre-wrap"
      :class="content.style"
      >{{ content.text }}</span
    >
    <duration-badge v-if="duration" :duration="duration" />
  </div>
</template>