-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathFileUpload.vue
More file actions
459 lines (430 loc) · 10.4 KB
/
FileUpload.vue
File metadata and controls
459 lines (430 loc) · 10.4 KB
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div class="draw-file-input">
<div class="file-input-container">
<NcButton variant="primary"
:wide="true"
@click="$refs.file.click()">
{{
hasImage
? t('libresign', 'Change file')
: t('libresign', 'Select your signature file.')
}}
</NcButton>
<input id="signature-file"
ref="file"
type="file"
name="signature-file"
accept="image/*"
@change="fileSelect">
</div>
<div v-if="hasImage" ref="cropperContainer" class="cropper-container">
<Cropper ref="cropper"
:src="image"
:default-size="defaultStencilSize"
:stencil-props="stencilProps"
image-restriction="none"
@change="change" />
<div class="zoom-controls">
<NcButton variant="tertiary"
:aria-label="t('libresign', 'Decrease zoom level')"
:title="t('libresign', 'Decrease zoom level')"
:disabled="!hasImage"
@click="zoomOut">
<template #icon>
<NcIconSvgWrapper :path="mdiMagnifyMinusOutline" :size="20" />
</template>
</NcButton>
<NcButton variant="tertiary"
:aria-label="t('libresign', 'Increase zoom level')"
:title="t('libresign', 'Increase zoom level')"
:disabled="!hasImage"
@click="zoomIn">
<template #icon>
<NcIconSvgWrapper :path="mdiMagnifyPlusOutline" :size="20" />
</template>
</NcButton>
<NcButton variant="tertiary"
:aria-label="t('libresign', 'Fit image to frame')"
:title="t('libresign', 'Fit image to frame')"
:disabled="!hasImage"
@click="fitToArea">
<template #icon>
<NcIconSvgWrapper :path="mdiFitToPageOutline" :size="20" />
</template>
</NcButton>
<label class="zoom-level">
<NcTextField
class="zoom-field"
type="number"
min="10"
max="800"
step="5"
:label="t('libresign', 'Zoom level')"
v-model="zoomPercentValue"
:disabled="!hasImage" />
<span class="zoom-suffix">%</span>
</label>
</div>
<p class="zoom-hint">
{{ t('libresign', 'Use the mouse wheel or the zoom buttons to adjust.') }}
</p>
<div class="action-buttons">
<NcButton variant="primary" @click="confirmSave">
{{ t('libresign', 'Save') }}
</NcButton>
<NcButton @click="close">
{{ t('libresign', 'Cancel') }}
</NcButton>
</div>
</div>
<NcDialog v-if="modal"
:name="t('libresign', 'Confirm your signature')"
content-classes="confirm-dialog__content"
@closing="cancel">
<div class="confirm-preview">
<img class="confirm-preview__image" :src="imageData">
</div>
<template #actions>
<NcButton variant="primary" @click="saveSignature">
{{ t('libresign', 'Save') }}
</NcButton>
<NcButton @click="cancel">
{{ t('libresign', 'Cancel') }}
</NcButton>
</template>
</NcDialog>
</div>
</template>
<script>
import { t } from '@nextcloud/l10n'
import {
mdiFitToPageOutline,
mdiMagnifyMinusOutline,
mdiMagnifyPlusOutline,
} from '@mdi/js'
import { Cropper } from 'vue-advanced-cropper'
import { getCapabilities } from '@nextcloud/capabilities'
import NcButton from '@nextcloud/vue/components/NcButton'
import NcDialog from '@nextcloud/vue/components/NcDialog'
import NcTextField from '@nextcloud/vue/components/NcTextField'
import NcIconSvgWrapper from '@nextcloud/vue/components/NcIconSvgWrapper'
import 'vue-advanced-cropper/dist/style.css'
export default {
name: 'FileUpload',
components: {
NcButton,
Cropper,
NcDialog,
NcTextField,
NcIconSvgWrapper,
},
setup() {
return {
mdiMagnifyMinusOutline,
mdiMagnifyPlusOutline,
mdiFitToPageOutline,
}
},
data() {
return {
modal: false,
image: '',
imageData: '',
containerWidth: 0,
pendingFitCenter: false,
zoomLevel: 1,
zoomMin: 0.1,
zoomMax: 8,
zoomStep: 0.1,
stencilBaseWidth: getCapabilities().libresign.config['sign-elements']['signature-width'],
stencilBaseHeight: getCapabilities().libresign.config['sign-elements']['signature-height'],
}
},
computed: {
hasImage() {
return !!this.image
},
zoomPercentValue: {
get() {
return Math.round(this.zoomLevel * 100)
},
set(value) {
this.onZoomPercentChange(value)
},
},
stencilAspectRatio() {
if (!this.stencilBaseWidth || !this.stencilBaseHeight) {
return undefined
}
return this.stencilBaseWidth / this.stencilBaseHeight
},
stencilProps() {
return {
aspectRatio: this.stencilAspectRatio,
}
},
defaultStencilSize() {
if (!this.containerWidth) {
return {
width: this.stencilBaseWidth,
height: this.stencilBaseHeight,
}
}
const availableWidth = Math.max(0, this.containerWidth - 24)
const scale = Math.min(1, availableWidth / this.stencilBaseWidth)
return {
width: Math.floor(this.stencilBaseWidth * scale),
height: Math.floor(this.stencilBaseHeight * scale),
}
},
},
mounted() {
this.updateContainerWidth()
if (window.ResizeObserver) {
this.$nextTick(() => {
this.initResizeObserver()
})
} else {
window.addEventListener('resize', this.updateContainerWidth)
}
},
beforeUnmount() {
this.resizeObserver?.disconnect()
window.removeEventListener('resize', this.updateContainerWidth)
},
methods: {
t,
initResizeObserver() {
if (!window.ResizeObserver || !this.$refs.cropperContainer) {
return
}
if (!this.resizeObserver) {
this.resizeObserver = new ResizeObserver(() => this.updateContainerWidth())
} else {
this.resizeObserver.disconnect()
}
this.resizeObserver.observe(this.$refs.cropperContainer)
},
updateContainerWidth() {
this.containerWidth = this.$refs.cropperContainer?.offsetWidth || 0
},
updateZoomLevel(result) {
if (result) {
this.updateZoomLevelFromResult(result)
return
}
const cropper = this.$refs.cropper
if (!cropper?.getResult) {
return
}
this.updateZoomLevelFromResult(cropper.getResult())
},
updateZoomLevelFromResult(result) {
const visibleWidth = result?.visibleArea?.width
const imageWidth = result?.image?.width
if (!Number.isFinite(visibleWidth) || !Number.isFinite(imageWidth) || visibleWidth <= 0) {
return
}
const nextZoom = imageWidth / visibleWidth
if (Number.isFinite(nextZoom) && nextZoom > 0) {
this.zoomLevel = Math.min(this.zoomMax, Math.max(this.zoomMin, nextZoom))
}
},
zoomBy(factor) {
const cropper = this.$refs.cropper
if (!cropper?.zoom || !Number.isFinite(factor) || factor <= 0) {
return
}
cropper.zoom(factor)
this.$nextTick(() => this.updateZoomLevel())
},
setZoomLevel(targetZoom) {
const clamped = Math.min(this.zoomMax, Math.max(this.zoomMin, targetZoom))
const factor = clamped / (this.zoomLevel || 1)
if (!Number.isFinite(factor) || Math.abs(factor - 1) < 0.001) {
return
}
this.zoomBy(factor)
},
fitToArea() {
const cropper = this.$refs.cropper
if (!cropper?.move || !cropper?.getResult) {
this.setZoomLevel(1)
return
}
this.pendingFitCenter = true
this.setZoomLevel(1)
},
zoomIn() {
this.setZoomLevel(this.zoomLevel + this.zoomStep)
},
zoomOut() {
this.setZoomLevel(this.zoomLevel - this.zoomStep)
},
onZoomPercentChange(value) {
const raw = Number.parseFloat(value)
if (!Number.isFinite(raw)) {
return
}
this.setZoomLevel(raw / 100)
},
fileSelect(ev) {
const fr = new FileReader()
fr.addEventListener('load', () => {
this.image = fr.result
})
fr.addEventListener('error', (err) => {
console.error(err)
})
fr.readAsDataURL(ev.target.files[0])
},
centerImage(result) {
const cropper = this.$refs.cropper
if (!cropper?.move) {
return
}
const visible = result?.visibleArea
const image = result?.image
if (!visible || !image) {
return
}
const targetLeft = Math.max(0, (image.width - visible.width) / 2)
const targetTop = Math.max(0, (image.height - visible.height) / 2)
const deltaX = targetLeft - visible.left
const deltaY = targetTop - visible.top
if (Number.isFinite(deltaX) && Number.isFinite(deltaY) && (Math.abs(deltaX) > 0.5 || Math.abs(deltaY) > 0.5)) {
cropper.move(deltaX, deltaY)
}
},
change(result) {
if (result?.canvas) {
this.imageData = result.canvas.toDataURL('image/png')
}
this.updateZoomLevel(result)
if (this.pendingFitCenter && Math.abs(this.zoomLevel - 1) < 0.02) {
this.centerImage(result)
this.pendingFitCenter = false
}
},
saveSignature() {
this.modal = false
this.$emit('save', this.imageData)
},
confirmSave() {
this.modal = true
},
cancel() {
this.modal = false
},
close() {
this.$emit('close')
},
},
watch: {
hasImage(value) {
if (value) {
this.$nextTick(() => {
this.updateContainerWidth()
this.initResizeObserver()
})
return
}
this.resizeObserver?.disconnect()
this.containerWidth = 0
this.zoomLevel = 1
this.pendingFitCenter = false
},
},
}
</script>
<style lang="scss" scoped>
.draw-file-input {
display: flex;
flex-direction: column;
gap: 12px;
padding: 8px 0;
> img {
max-width: 100%;
}
.action-buttons {
display: flex;
grid-gap: 10px;
justify-content: end;
box-sizing: border-box;
margin-top: 4px;
}
.cropper-container {
width: 100%;
overflow: visible;
padding: 0;
border: 0;
background: transparent;
box-shadow: none;
}
.zoom-controls {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 8px;
margin-top: 8px;
}
.zoom-level {
display: inline-flex;
align-items: center;
gap: 6px;
}
:dir(rtl) .zoom-level {
flex-direction: row-reverse;
}
.zoom-field {
width: 100px;
}
.zoom-suffix {
font-size: 13px;
color: var(--color-text-maxcontrast);
}
.zoom-hint {
margin: 4px 0 0;
font-size: 12px;
color: var(--color-text-maxcontrast);
}
.file-input-container {
margin-bottom: 5px;
input[type='file'] {
display: none;
}
}
img {
padding: 20px;
@media screen and (max-width: 650px) {
width: 100%;
}
}
}
:global(.draw-file-input .vue-advanced-cropper) {
max-width: none !important;
}
:deep(.confirm-dialog__content) {
display: flex;
justify-content: center;
.confirm-preview {
display: flex;
justify-content: center;
width: 100%;
overflow: hidden;
}
.confirm-preview__image {
display: block;
max-width: 100%;
max-height: 50vh;
object-fit: contain;
margin: 0 auto;
background-color: #cecece;
border-radius: 10px;
}
}
</style>