summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/diff_viewer/viewers/image_diff_viewer.vue
blob: 1af85283277e308f39d0027c84b76348865d29b3 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<script>
import ImageViewer from '../../content_viewer/viewers/image_viewer.vue';
import TwoUpViewer from './image_diff/two_up_viewer.vue';
import SwipeViewer from './image_diff/swipe_viewer.vue';
import OnionSkinViewer from './image_diff/onion_skin_viewer.vue';
import { diffModes, imageViewMode } from '../constants';

export default {
  components: {
    ImageViewer,
    TwoUpViewer,
    SwipeViewer,
    OnionSkinViewer,
  },
  props: {
    diffMode: {
      type: String,
      required: true,
    },
    newPath: {
      type: String,
      required: true,
    },
    oldPath: {
      type: String,
      required: true,
    },
    projectPath: {
      type: String,
      required: false,
      default: '',
    },
  },
  data() {
    return {
      mode: imageViewMode.twoup,
    };
  },
  methods: {
    changeMode(newMode) {
      this.mode = newMode;
    },
  },
  diffModes,
  imageViewMode,
};
</script>

<template>
  <div class="diff-file-container">
    <div
      v-if="diffMode === $options.diffModes.replaced"
      class="diff-viewer">
      <div class="image js-replaced-image">
        <two-up-viewer
          v-if="mode === $options.imageViewMode.twoup"
          v-bind="$props"/>
        <swipe-viewer
          v-else-if="mode === $options.imageViewMode.swipe"
          v-bind="$props"/>
        <onion-skin-viewer
          v-else-if="mode === $options.imageViewMode.onion"
          v-bind="$props"/>
      </div>
      <div class="view-modes">
        <ul class="view-modes-menu">
          <li
            :class="{
              active: mode === $options.imageViewMode.twoup
            }"
            @click="changeMode($options.imageViewMode.twoup)">
            {{ s__('ImageDiffViewer|2-up') }}
          </li>
          <li
            :class="{
              active: mode === $options.imageViewMode.swipe
            }"
            @click="changeMode($options.imageViewMode.swipe)">
            {{ s__('ImageDiffViewer|Swipe') }}
          </li>
          <li
            :class="{
              active: mode === $options.imageViewMode.onion
            }"
            @click="changeMode($options.imageViewMode.onion)">
            {{ s__('ImageDiffViewer|Onion skin') }}
          </li>
        </ul>
      </div>
      <div class="note-container"></div>
    </div>
    <div
      v-else-if="diffMode === $options.diffModes.new"
      class="diff-viewer added">
      <image-viewer
        :path="newPath"
        :project-path="projectPath"
      />
    </div>
    <div
      v-else
      class="diff-viewer deleted">
      <image-viewer
        :path="oldPath"
        :project-path="projectPath"
      />
    </div>
  </div>
</template>