aboutsummaryrefslogtreecommitdiff
path: root/src/components/image_cropper/image_cropper.js
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2019-03-21 15:44:26 +0000
committerShpuld Shpludson <shp@cock.li>2019-03-21 15:44:26 +0000
commit9890e414402ce19ab012d3fc8046bd6af537fd5c (patch)
tree495fab56bbda17de803b85ba677c226433a4f506 /src/components/image_cropper/image_cropper.js
parent9e17853b2ce6fd494b1db2e2313876c24b6fddc6 (diff)
parent3108722eda845cd3a8172b95e554b0dc8c8e444d (diff)
Merge branch 'feature/bypass-avatar-cropper' into 'develop'
#443 Add button to save without cropping Closes #443 See merge request pleroma/pleroma-fe!691
Diffstat (limited to 'src/components/image_cropper/image_cropper.js')
-rw-r--r--src/components/image_cropper/image_cropper.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/image_cropper/image_cropper.js b/src/components/image_cropper/image_cropper.js
index 49d51846..5ba8f04e 100644
--- a/src/components/image_cropper/image_cropper.js
+++ b/src/components/image_cropper/image_cropper.js
@@ -31,6 +31,9 @@ const ImageCropper = {
saveButtonLabel: {
type: String
},
+ saveWithoutCroppingButtonlabel: {
+ type: String
+ },
cancelButtonLabel: {
type: String
}
@@ -48,6 +51,9 @@ const ImageCropper = {
saveText () {
return this.saveButtonLabel || this.$t('image_cropper.save')
},
+ saveWithoutCroppingText () {
+ return this.saveWithoutCroppingButtonlabel || this.$t('image_cropper.save_without_cropping')
+ },
cancelText () {
return this.cancelButtonLabel || this.$t('image_cropper.cancel')
},
@@ -76,6 +82,18 @@ const ImageCropper = {
this.submitting = false
})
},
+ submitWithoutCropping () {
+ this.submitting = true
+ this.avatarUploadError = null
+ this.submitHandler(false, this.dataUrl)
+ .then(() => this.destroy())
+ .catch((err) => {
+ this.submitError = err
+ })
+ .finally(() => {
+ this.submitting = false
+ })
+ },
pickImage () {
this.$refs.input.click()
},