gitlab-org--gitlab-foss/app/assets/javascripts/profile/gl_crop.js

189 lines
5.5 KiB
JavaScript
Raw Normal View History

/* eslint-disable no-useless-escape, no-underscore-dangle, func-names, no-return-assign, consistent-return, class-methods-use-this */
import $ from 'jquery';
import 'cropper';
import _ from 'underscore';
(() => {
2016-09-09 15:49:13 +00:00
// Matches everything but the file name
const FILENAMEREGEX = /^.*[\\\/]/;
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
class GitLabCrop {
constructor(
input,
{
filename,
previewImage,
modalCrop,
pickImageEl,
uploadImageBtn,
modalCropImg,
exportWidth = 200,
exportHeight = 200,
cropBoxWidth = 200,
cropBoxHeight = 200,
} = {},
) {
2016-09-09 15:49:13 +00:00
this.onUploadImageBtnClick = this.onUploadImageBtnClick.bind(this);
this.onModalHide = this.onModalHide.bind(this);
this.onModalShow = this.onModalShow.bind(this);
this.onPickImageClick = this.onPickImageClick.bind(this);
2016-07-24 20:45:11 +00:00
this.fileInput = $(input);
this.modalCropImg = _.isString(this.modalCropImg) ? $(this.modalCropImg) : this.modalCropImg;
this.fileInput
.attr('name', `${this.fileInput.attr('name')}-trigger`)
.attr('id', `${this.fileInput.attr('id')}-trigger`);
2016-09-09 15:49:13 +00:00
this.exportWidth = exportWidth;
this.exportHeight = exportHeight;
this.cropBoxWidth = cropBoxWidth;
this.cropBoxHeight = cropBoxHeight;
this.form = this.fileInput.parents('form');
this.filename = filename;
this.previewImage = previewImage;
this.modalCrop = modalCrop;
this.pickImageEl = pickImageEl;
this.uploadImageBtn = uploadImageBtn;
this.modalCropImg = modalCropImg;
this.filename = this.getElement(filename);
this.previewImage = this.getElement(previewImage);
this.pickImageEl = this.getElement(pickImageEl);
this.modalCrop = _.isString(modalCrop) ? $(modalCrop) : modalCrop;
this.uploadImageBtn = _.isString(uploadImageBtn) ? $(uploadImageBtn) : uploadImageBtn;
this.modalCropImg = _.isString(modalCropImg) ? $(modalCropImg) : modalCropImg;
2016-07-24 20:45:11 +00:00
this.cropActionsBtn = this.modalCrop.find('[data-method]');
this.bindEvents();
}
2016-09-09 15:49:13 +00:00
getElement(selector) {
2016-07-24 20:45:11 +00:00
return $(selector, this.form);
2016-09-09 15:49:13 +00:00
}
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
bindEvents() {
const _this = this;
2016-07-24 20:45:11 +00:00
this.fileInput.on('change', function(e) {
_this.onFileInputChange(e, this);
this.value = null;
2016-07-24 20:45:11 +00:00
});
this.pickImageEl.on('click', this.onPickImageClick);
this.modalCrop.on('shown.bs.modal', this.onModalShow);
this.modalCrop.on('hidden.bs.modal', this.onModalHide);
this.uploadImageBtn.on('click', this.onUploadImageBtnClick);
this.cropActionsBtn.on('click', function() {
const btn = this;
2016-07-24 20:45:11 +00:00
return _this.onActionBtnClick(btn);
});
return (this.croppedImageBlob = null);
2016-09-09 15:49:13 +00:00
}
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
onPickImageClick() {
2016-07-24 20:45:11 +00:00
return this.fileInput.trigger('click');
2016-09-09 15:49:13 +00:00
}
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
onModalShow() {
const _this = this;
2016-07-24 20:45:11 +00:00
return this.modalCropImg.cropper({
viewMode: 1,
center: false,
aspectRatio: 1,
modal: true,
scalable: false,
2017-09-23 01:26:00 +00:00
rotatable: true,
checkOrientation: true,
2016-07-24 20:45:11 +00:00
zoomable: true,
dragMode: 'move',
guides: false,
zoomOnTouch: false,
zoomOnWheel: false,
cropBoxMovable: false,
cropBoxResizable: false,
toggleDragModeOnDblclick: false,
built() {
const $image = $(this);
const container = $image.cropper('getContainerData');
const { cropBoxWidth, cropBoxHeight } = _this;
2016-07-24 20:45:11 +00:00
return $image.cropper('setCropBoxData', {
width: cropBoxWidth,
height: cropBoxHeight,
left: (container.width - cropBoxWidth) / 2,
top: (container.height - cropBoxHeight) / 2,
2016-07-24 20:45:11 +00:00
});
},
2016-07-24 20:45:11 +00:00
});
2016-09-09 15:49:13 +00:00
}
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
onModalHide() {
2016-07-24 20:45:11 +00:00
return this.modalCropImg.attr('src', '').cropper('destroy');
2016-09-09 15:49:13 +00:00
}
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
onUploadImageBtnClick(e) {
e.preventDefault();
2016-07-24 20:45:11 +00:00
this.setBlob();
this.setPreview();
this.modalCrop.modal('hide');
return this.fileInput.val('');
2016-09-09 15:49:13 +00:00
}
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
onActionBtnClick(btn) {
const data = $(btn).data();
2016-07-24 20:45:11 +00:00
if (this.modalCropImg.data('cropper') && data.method) {
return this.modalCropImg.cropper(data.method, data.option);
2016-07-24 20:45:11 +00:00
}
2016-09-09 15:49:13 +00:00
}
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
onFileInputChange(e, input) {
2016-07-24 20:45:11 +00:00
return this.readFile(input);
2016-09-09 15:49:13 +00:00
}
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
readFile(input) {
const _this = this;
const reader = new FileReader();
2016-09-09 15:49:13 +00:00
reader.onload = () => {
2016-07-24 20:45:11 +00:00
_this.modalCropImg.attr('src', reader.result);
return _this.modalCrop.modal('show');
};
return reader.readAsDataURL(input.files[0]);
2016-09-09 15:49:13 +00:00
}
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
dataURLtoBlob(dataURL) {
let i = 0;
let len = 0;
const binary = atob(dataURL.split(',')[1]);
const array = [];
for (i = 0, len = binary.length; i < len; i += 1) {
array.push(binary.charCodeAt(i));
2016-07-24 20:45:11 +00:00
}
return new Blob([new Uint8Array(array)], {
type: 'image/png',
2016-07-24 20:45:11 +00:00
});
2016-09-09 15:49:13 +00:00
}
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
setPreview() {
const filename = this.fileInput.val().replace(FILENAMEREGEX, '');
2016-07-24 20:45:11 +00:00
this.previewImage.attr('src', this.dataURL);
return this.filename.text(filename);
2016-09-09 15:49:13 +00:00
}
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
setBlob() {
this.dataURL = this.modalCropImg
.cropper('getCroppedCanvas', {
width: 200,
height: 200,
})
.toDataURL('image/png');
return (this.croppedImageBlob = this.dataURLtoBlob(this.dataURL));
2016-09-09 15:49:13 +00:00
}
2016-07-24 20:45:11 +00:00
2016-09-09 15:49:13 +00:00
getBlob() {
2016-07-24 20:45:11 +00:00
return this.croppedImageBlob;
2016-09-09 15:49:13 +00:00
}
}
2016-07-24 20:45:11 +00:00
$.fn.glCrop = function(opts) {
return this.each(function() {
return $(this).data('glcrop', new GitLabCrop(this, opts));
});
};
2016-09-09 15:49:13 +00:00
})(window.gl || (window.gl = {}));