mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
207 lines
5.0 KiB
Vue
207 lines
5.0 KiB
Vue
<template>
|
|
<div class="image-uploader">
|
|
<vue-dropzone
|
|
v-show="!showCropper"
|
|
id="postdropzone"
|
|
:options="dropzoneOptions"
|
|
:use-custom-slot="true"
|
|
@vdropzone-error="onDropzoneError"
|
|
@vdropzone-thumbnail="initCropper"
|
|
>
|
|
<loading-spinner v-if="isLoadingImage" />
|
|
<base-icon v-else name="image" />
|
|
</vue-dropzone>
|
|
<div v-show="showCropper" class="crop-overlay">
|
|
<img id="cropping-image" />
|
|
<base-button class="crop-confirm" filled @click="cropImage">
|
|
{{ $t('contribution.teaserImage.cropperConfirm') }}
|
|
</base-button>
|
|
<base-button
|
|
class="crop-cancel"
|
|
icon="close"
|
|
size="small"
|
|
circle
|
|
danger
|
|
filled
|
|
@click="closeCropper"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import VueDropzone from 'nuxt-dropzone'
|
|
import Cropper from 'cropperjs'
|
|
import LoadingSpinner from '~/components/_new/generic/LoadingSpinner/LoadingSpinner'
|
|
import 'cropperjs/dist/cropper.css'
|
|
|
|
export default {
|
|
components: {
|
|
LoadingSpinner,
|
|
VueDropzone,
|
|
},
|
|
props: {
|
|
contribution: { type: Object, default: () => {} },
|
|
},
|
|
data() {
|
|
return {
|
|
dropzoneOptions: {
|
|
url: () => '',
|
|
maxFilesize: 5.0,
|
|
previewTemplate: '<img class="preview-image" />',
|
|
},
|
|
cropper: null,
|
|
file: null,
|
|
showCropper: false,
|
|
isLoadingImage: false,
|
|
}
|
|
},
|
|
methods: {
|
|
onDropzoneError(file, message) {
|
|
this.$toast.error(file.status, message)
|
|
},
|
|
clearImages() {
|
|
const images = document.querySelectorAll('.preview-image')
|
|
images.forEach((image, index) => {
|
|
if (index === images.length - 1) image.src = ''
|
|
else image.remove()
|
|
})
|
|
},
|
|
initCropper(file) {
|
|
this.showCropper = true
|
|
this.file = file
|
|
this.clearImages()
|
|
|
|
const imageElement = document.querySelector('#cropping-image')
|
|
imageElement.src = URL.createObjectURL(file)
|
|
this.cropper = new Cropper(imageElement, { zoomable: false, autoCropArea: 0.9 })
|
|
},
|
|
deleteImage() {
|
|
this.clearImages()
|
|
},
|
|
cropImage() {
|
|
this.isLoadingImage = true
|
|
if (this.file.type === 'image/jpeg') {
|
|
const canvas = this.cropper.getCroppedCanvas()
|
|
canvas.toBlob(blob => {
|
|
const imageAspectRatio = canvas.width / canvas.height
|
|
const croppedImageFile = new File([blob], this.file.name, { type: this.file.type })
|
|
this.$emit('addHeroImage', croppedImageFile)
|
|
this.$emit('addImageAspectRatio', imageAspectRatio)
|
|
this.$emit('cropInProgress', false)
|
|
this.setupPreview(canvas.toDataURL())
|
|
}, 'image/jpeg')
|
|
} else {
|
|
const imageAspectRatio = this.file.width / this.file.height || 1.0
|
|
const croppedImageFile = this.file
|
|
this.setupPreview(this.file.dataURL)
|
|
this.$emit('addHeroImage', croppedImageFile)
|
|
this.$emit('addImageAspectRatio', imageAspectRatio)
|
|
this.$emit('cropInProgress', false)
|
|
}
|
|
this.closeCropper()
|
|
},
|
|
setupPreview(url) {
|
|
const previewElement = document.querySelector('.image-uploader .preview-image')
|
|
previewElement.src = url
|
|
this.$nextTick((this.isLoadingImage = false))
|
|
},
|
|
closeCropper() {
|
|
this.showCropper = false
|
|
this.cropper.destroy()
|
|
},
|
|
cancelCrop() {
|
|
if (this.oldImage) this.thumbnailElement.appendChild(this.oldImage)
|
|
this.showCropper = false
|
|
this.$emit('cropInProgress', false)
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
.image-uploader {
|
|
position: relative;
|
|
min-height: $size-image-uploader-min-height;
|
|
cursor: pointer;
|
|
|
|
.image + & {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
&:only-child {
|
|
background-color: $color-neutral-85;
|
|
}
|
|
|
|
&:disabled {
|
|
pointer-events: none;
|
|
}
|
|
|
|
&.--blur-image .preview-image {
|
|
filter: blur($blur-radius);
|
|
}
|
|
|
|
.preview-image {
|
|
width: 100%;
|
|
max-height: $size-image-max-height;
|
|
object-fit: contain;
|
|
}
|
|
|
|
> .crop-overlay {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: $size-image-cropper-min-height;
|
|
max-height: $size-image-cropper-max-height;
|
|
font-size: $font-size-base;
|
|
|
|
> .img {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
|
|
> .crop-confirm {
|
|
position: absolute;
|
|
left: $space-x-small;
|
|
top: $space-x-small;
|
|
z-index: $z-index-surface;
|
|
}
|
|
|
|
> .crop-cancel {
|
|
position: absolute;
|
|
right: $space-x-small;
|
|
top: $space-x-small;
|
|
z-index: $z-index-surface;
|
|
}
|
|
}
|
|
|
|
.dz-message {
|
|
position: absolute;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: $z-index-surface;
|
|
|
|
&:hover {
|
|
> .base-icon {
|
|
opacity: $opacity-base;
|
|
}
|
|
}
|
|
|
|
> .base-icon {
|
|
position: absolute;
|
|
padding: $space-small;
|
|
border-radius: 100%;
|
|
border: $border-size-base dashed $color-neutral-20;
|
|
background-color: $color-neutral-95;
|
|
font-size: $size-icon-large;
|
|
opacity: $opacity-soft;
|
|
}
|
|
}
|
|
}
|
|
</style>
|