summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repo/components/repo_preview.vue
blob: 2200754cbef3736cd242ff9e92cf60231c3a4db2 (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
<script>
import Store from '../stores/repo_store';

export default {
  data: () => Store,
  mounted() {
    this.highlightFile();
  },
  computed: {
    html() {
      return this.activeFile.html;
    },
  },

  methods: {
    highlightFile() {
      $(this.$el).find('.file-content').syntaxHighlight();
    },
  },

  watch: {
    html() {
      this.$nextTick(() => {
        this.highlightFile();
      });
    },
  },
};
</script>

<template>
<div>
  <div
    v-if="!activeFile.render_error"
    v-html="activeFile.html">
  </div>
  <div
    v-else-if="activeFile.tooLarge"
    class="vertical-center render-error">
    <p class="text-center">
      The source could not be displayed because it is too large. You can <a :href="activeFile.raw_path">download</a> it instead.
    </p>
  </div>
  <div
    v-else
    class="vertical-center render-error">
    <p class="text-center">
      The source could not be displayed because a rendering error occured. You can <a :href="activeFile.raw_path">download</a> it instead.
    </p>
  </div>
</div>
</template>