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

source_viewer_new.vue « source_viewer « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e4c438719ef7a79e6a66eaebb816aa250bdaa79 (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
<script>
import SafeHtml from '~/vue_shared/directives/safe_html';
import Tracking from '~/tracking';
import addBlobLinksTracking from '~/blob/blob_links_tracking';
import LineHighlighter from '~/blob/line_highlighter';
import { EVENT_ACTION, EVENT_LABEL_VIEWER } from './constants';
import Chunk from './components/chunk_new.vue';

/*
 * Note, this is a new experimental version of the SourceViewer, it is not ready for production use.
 * See the following issue for more details: https://gitlab.com/gitlab-org/gitlab/-/issues/391586
 */

export default {
  name: 'SourceViewerNew',
  components: {
    Chunk,
  },
  directives: {
    SafeHtml,
  },
  mixins: [Tracking.mixin()],
  props: {
    blob: {
      type: Object,
      required: true,
    },
    chunks: {
      type: Array,
      required: false,
      default: () => [],
    },
  },
  data() {
    return {
      lineHighlighter: new LineHighlighter(),
    };
  },
  created() {
    this.track(EVENT_ACTION, { label: EVENT_LABEL_VIEWER, property: this.blob.language });
    addBlobLinksTracking();
  },
  userColorScheme: window.gon.user_color_scheme,
};
</script>

<template>
  <div
    class="file-content code js-syntax-highlight blob-content gl-display-flex gl-flex-direction-column gl-overflow-auto"
    :class="$options.userColorScheme"
    data-type="simple"
    :data-path="blob.path"
    data-qa-selector="blob_viewer_file_content"
  >
    <chunk
      v-for="(chunk, _, index) in chunks"
      :key="index"
      :chunk-index="index"
      :is-highlighted="Boolean(chunk.isHighlighted)"
      :raw-content="chunk.rawContent"
      :highlighted-content="chunk.highlightedContent"
      :total-lines="chunk.totalLines"
      :starting-from="chunk.startingFrom"
      :blame-path="blob.blamePath"
    />
  </div>
</template>