summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/content_viewer/content_viewer.vue
blob: fe488ab6cfa2c36b5ef8bc0b14f6509c3deb5131 (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
<script>
import MarkdownViewer from './viewers/markdown_viewer.vue';
import ImageViewer from './viewers/image_viewer.vue';
import DownloadViewer from './viewers/download_viewer.vue';

export default {
  props: {
    content: {
      type: String,
      default: '',
      required: false,
    },
    path: {
      type: String,
      required: true,
    },
    fileSize: {
      type: Number,
      required: false,
      default: 0,
    },
    filePath: {
      type: String,
      required: false,
      default: '',
    },
    commitSha: {
      type: String,
      required: false,
      default: '',
    },
    projectPath: {
      type: String,
      required: false,
      default: '',
    },
    type: {
      type: String,
      required: false,
      default: '',
    },
    images: {
      type: Object,
      required: false,
      default: () => ({}),
    },
  },
  computed: {
    viewer() {
      if (!this.path) return null;
      if (!this.type) return DownloadViewer;

      switch (this.type) {
        case 'markdown':
          return MarkdownViewer;
        case 'image':
          return ImageViewer;
        default:
          return DownloadViewer;
      }
    },
  },
};
</script>

<template>
  <div class="preview-container">
    <component
      :is="viewer"
      :path="path"
      :file-path="filePath"
      :file-size="fileSize"
      :project-path="projectPath"
      :content="content"
      :images="images"
      :commit-sha="commitSha"
    />
  </div>
</template>