-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathdiff.vue
132 lines (130 loc) · 3.4 KB
/
diff.vue
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<template>
<div class="page-contents">
<Navbar :show-back-button="true" />
<main class="outline-none" tabindex="0">
<DiffActionBar :diff-navigator="diffNavigator" />
<section
class="
flex
items-stretch
flex-wrap
w-full
gap-4
font-mono
text-gray-800
dark:text-gray-50
"
>
<div class="flex space-around w-full gap-4">
<p
class="
flex-grow-0 flex-shrink-0
w-1/2
text-lg
font-bold
text-center
capitalize
break-all
"
>
<span class="inline-block w-4/5">{{ lhsLabel }}</span>
</p>
<p
class="
flex-grow-0 flex-shrink-0
w-1/2
text-lg
font-bold
text-center
capitalize
break-all
"
>
<span class="inline-block w-4/5">{{ rhsLabel }}</span>
</p>
</div>
<div
id="monaco-diff-viewer"
class="w-full h-screen p-2 border border-gray-600 rounded-md editor"
></div>
</section>
</main>
</div>
</template>
<script lang="ts">
import pako from 'pako'
import loader from '@monaco-editor/loader'
import Vue from 'vue'
import {
getMonacoEditorDefaultOptions,
undoUrlSafeBase64,
} from '../../helpers/utils'
import DiffActionBar from '~/components/v2/diffActionBar.vue'
import Navbar from '~/components/v2/navbar.vue'
import { v2DiffData } from '~/helpers/types'
export default Vue.extend({
components: { DiffActionBar, Navbar },
layout: 'main',
data(): v2DiffData {
return {
lhs: '',
rhs: '',
rhsLabel: '',
lhsLabel: '',
monacoDiffEditor: {},
diffNavigator: {},
}
},
beforeMount() {
const _diff = this.$route.hash
if (_diff) {
const gunzip = pako.ungzip(
Buffer.from(undoUrlSafeBase64(_diff), 'base64')
)
const diffData = JSON.parse(Buffer.from(gunzip).toString('utf8'))
const { lhs, rhs, lhsLabel, rhsLabel } = diffData
this.lhsLabel = lhsLabel
this.rhsLabel = rhsLabel
this.lhs = lhs
this.rhs = rhs
}
},
mounted() {
const monacoDiffViewerEl = document.getElementById('monaco-diff-viewer')
const theme = this.$cookies.isDarkMode ? 'vs-dark' : 'light'
const monacoEditorOptions = getMonacoEditorDefaultOptions(theme)
loader.init().then((monaco) => {
if (monacoDiffViewerEl) {
this.monacoDiffEditor = monaco.editor.createDiffEditor(
monacoDiffViewerEl,
{
...monacoEditorOptions,
readOnly: true,
wordWrap: 'on',
diffAlgorithm: 'advanced',
}
) as any
if (this.monacoDiffEditor) {
this.monacoDiffEditor.setModel({
original: monaco.editor.createModel(this.lhs, 'javascript'),
modified: monaco.editor.createModel(this.rhs, 'javascript'),
})
this.diffNavigator = monaco.editor.createDiffNavigator(
this.monacoDiffEditor,
{
followsCaret: true,
ignoreCharChanges: true,
alwaysRevealFirst: true,
}
)
}
}
})
},
})
</script>
<style>
.editor {
max-height: calc(100vh - 15rem);
}
</style>