-
Notifications
You must be signed in to change notification settings - Fork 156
/
App.vue
257 lines (253 loc) · 6.96 KB
/
App.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<template>
<main>
<oc-notifications>
<oc-notification-message
v-if="notificationMessage"
:message="notificationMessage"
:status="notificationStatus"
@close="clearNotificationMessage"
/>
</oc-notifications>
<div v-if="loading" class="oc-position-center">
<oc-spinner size="xlarge" />
<p v-translate class="oc-invisible">Loading media</p>
</div>
<iframe
v-else
id="drawio-editor"
ref="drawIoEditor"
:src="iframeSource"
:title="$gettext('Draw.io editor')"
/>
</main>
</template>
<script>
import { mapGetters, mapActions } from 'vuex'
import { basename } from 'path'
import qs from 'qs'
import { DateTime } from 'luxon'
import { DavPermission, DavProperty } from 'web-pkg/src/constants'
import { useAppDefaults } from 'web-pkg/src/composables'
export default {
name: 'DrawIoEditor',
setup() {
return {
...useAppDefaults({
applicationId: 'draw-io'
})
}
},
data: () => ({
loading: true,
filePath: '',
fileExtension: '',
isReadOnly: null,
currentETag: null,
notificationMessage: null,
notificationStatus: null
}),
computed: {
...mapGetters(['getToken']),
config() {
const {
url = 'https://embed.diagrams.net',
theme = 'minimal',
autosave = false
} = this.applicationConfig
return { url, theme, autosave: autosave ? 1 : 0 }
},
iframeSource() {
const query = qs.stringify({
embed: 1,
chrome: this.isReadOnly ? 0 : 1,
picker: 0,
stealth: 1,
spin: 1,
proto: 'json',
ui: this.config.theme
})
return `${this.config.url}?${query}`
}
},
created() {
this.filePath = this.currentFileContext.path
this.fileExtension = this.filePath.split('.').pop()
this.checkPermissions()
window.addEventListener('message', (event) => {
if (event.data.length > 0) {
const payload = JSON.parse(event.data)
switch (payload.event) {
case 'init':
this.fileExtension === 'vsdx' ? this.importVisio() : this.load()
break
case 'autosave':
this.save(payload, true)
break
case 'save':
this.save(payload)
break
case 'exit':
this.exit()
break
}
}
})
},
methods: {
...mapActions(['showMessage']),
error(error) {
this.showMessage({
title: this.$gettext('The diagram could not be loaded…'),
desc: error,
status: 'danger'
})
},
errorPopup(error) {
this.notificationStatus = 'danger'
this.notificationMessage = error
},
successPopup(msg) {
this.notificationStatus = 'success'
this.notificationMessage = msg
},
clearNotificationMessage() {
this.notificationMessage = null
},
errorNotification(error) {
this.$refs.drawIoEditor.contentWindow.postMessage(
JSON.stringify({
action: 'status',
message: error,
modified: false
}),
'*'
)
},
checkPermissions() {
this.getFileInfo(this.filePath, [DavProperty.Permissions])
.then((v) => {
this.isReadOnly =
v.fileInfo[DavProperty.Permissions].indexOf(DavPermission.Updateable) === -1
this.loading = false
})
.catch((error) => {
this.error(error)
})
},
load() {
this.getFileContents(this.filePath)
.then((resp) => {
this.currentETag = resp.headers.ETag
this.$refs.drawIoEditor.contentWindow.postMessage(
JSON.stringify({
action: 'load',
xml: resp.body,
autosave: this.config.autosave
}),
'*'
)
})
.catch((error) => {
this.error(error)
})
},
importVisio() {
const url = this.getFileUrl(this.filePath)
const getDescription = () =>
this.$gettextInterpolate(
this.$gettext('The diagram will open as a new .drawio file: %{file}'),
{ file: basename(this.filePath) },
true
)
// Change the working file after the import so the original file is not overwritten
this.filePath += `_${this.getTimestamp()}.drawio`
this.showMessage({
title: this.$gettext('Diagram imported'),
desc: getDescription()
})
this.makeRequest('GET', url)
.then((resp) => {
// Not setting `currentETag` on imports allows to create new files
// otherwise the ETag comparison fails with a 412 during the autosave/save event
// this.currentETag = resp.headers.get('etag')
return resp.arrayBuffer()
})
.then((arrayBuffer) => {
const blob = new Blob([arrayBuffer], { type: 'application/vnd.visio' })
const reader = new FileReader()
reader.onloadend = () => {
this.$refs.drawIoEditor.contentWindow.postMessage(
JSON.stringify({
action: 'load',
xml: reader.result,
autosave: this.config.autosave
}),
'*'
)
}
reader.readAsDataURL(blob)
})
.catch((error) => {
this.error(error)
})
},
save(payload, auto = false) {
this.putFileContents(this.filePath, payload.xml, {
previousEntityTag: this.currentETag
})
.then((resp) => {
this.currentETag = resp.ETag
const message = this.$gettext('File saved!')
if (auto) {
this.$refs.drawIoEditor.contentWindow.postMessage(
JSON.stringify({
action: 'status',
message: message,
modified: false
}),
'*'
)
} else {
this.successPopup(message)
}
})
.catch((error) => {
const errorFunc = auto ? this.errorNotification : this.errorPopup
switch (error.statusCode) {
case 412:
errorFunc(
this.$gettext(
'This file was updated outside this window. Please refresh the page. All changes will be lost, so download a copy first.'
)
)
break
case 500:
errorFunc(this.$gettext("Couldn't save. Error when contacting the server"))
break
case 401:
errorFunc(this.$gettext("Saving error. You're not authorized to save this file"))
break
default:
errorFunc(error.message || error)
}
})
},
exit() {
window.close()
},
getTimestamp() {
return DateTime.local().toFormat('YYYYMMDD[T]HHmmss')
}
}
}
</script>
<style scoped>
#drawio-editor {
width: 100%;
height: 100%;
border: none;
margin: 0;
padding: 0;
overflow: hidden;
}
</style>