| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- (function(factory) {
- if(typeof define === 'function' && define.amd) {
- define(['jquery'], factory);
- } else if(typeof exports === 'object') {
- // Node / CommonJS
- factory(require('jquery'));
- } else {
- factory(jQuery);
- }
- })(function($) {
- 'use strict';
- var console = window.console || {
- log: function() {}
- };
- function CropAvatar($element) {
- this.$container = $element;
- this.$avatarView = this.$container.find('.avatar-view');
- this.$avatar = this.$avatarView.find('img');
- this.$avatarModal = $("body").find('#avatar-modal');
- this.$loading = $("#page-wrapper").find('.loading');
- this.$avatarForm = this.$avatarModal.find('.avatar-form');
- this.$avatarUpload = this.$avatarForm.find('.avatar-upload');
- this.$avatarSrc = this.$avatarForm.find('.avatar-src');
- this.$avatarData = this.$avatarForm.find('.avatar-data');
- this.$avatarInput = this.$avatarForm.find('.avatar-input');
- this.$avatarSave = this.$avatarForm.find('.avatar-save');
- this.$avatarBtns = this.$avatarForm.find('.avatar-btns');
- this.$avatarWrapper = this.$avatarModal.find('.avatar-wrapper');
- this.$avatarPreview = this.$avatarModal.find('.avatar-preview');
- this.init();
- }
- CropAvatar.prototype = {
- constructor: CropAvatar,
- support: {
- fileList: !!$('<input type="file">').prop('files'),
- blobURLs: !!window.URL && URL.createObjectURL,
- formData: !!window.FormData
- },
- init: function() {
- this.support.datauri = this.support.fileList && this.support.blobURLs;
- if(!this.support.formData) {
- this.initIframe();
- }
- this.initTooltip();
- this.initModal();
- this.addListener();
- },
- addListener: function() {
- this.$avatarView.on('click', $.proxy(this.click, this));
- this.$avatarInput.on('change', $.proxy(this.change, this));
- this.$avatarForm.on('submit', $.proxy(this.submit, this));
- this.$avatarBtns.on('click', $.proxy(this.rotate, this));
- },
- initTooltip: function() {
- this.$avatarView.tooltip({
- placement: 'bottom'
- });
- },
- initModal: function() {
- this.$avatarModal.modal({
- show: false
- });
- },
- initPreview: function() {
- var url = this.$avatar.attr('src');
- // this.$avatarPreview.empty().html('<img src="' + url + '">');
- },
- initIframe: function() {
- var target = 'upload-iframe-' + (new Date()).getTime(),
- $iframe = $('<iframe>').attr({
- name: target,
- src: ''
- }),
- _this = this;
- // Ready ifrmae
- $iframe.one('load', function() {
- // respond response
- $iframe.on('load', function() {
- var data;
- try {
- data = $(this).contents().find('body').text();
- } catch(e) {
- console.log(e.message);
- }
- if(data) {
- try {
- data = $.parseJSON(data);
- } catch(e) {
- console.log(e.message);
- }
- _this.submitDone(data);
- } else {
- _this.submitFail('Image upload failed!');
- }
- _this.submitEnd();
- });
- });
- this.$iframe = $iframe;
- this.$avatarForm.attr('target', target).after($iframe.hide());
- },
- click: function() {
- this.$avatarModal.modal('show');
- this.initPreview();
- },
- change: function() {
- var files,
- file;
- if(this.support.datauri) {
- files = this.$avatarInput.prop('files');
- if(files.length > 0) {
- file = files[0];
- if(this.isImageFile(file)) {
- if(this.url) {
- URL.revokeObjectURL(this.url); // Revoke the old one
- }
- this.url = URL.createObjectURL(file);
- this.startCropper();
- }
- }
- } else {
- file = this.$avatarInput.val();
- if(this.isImageFile(file)) {
- this.syncUpload();
- }
- }
- },
- submit: function() {
- if(!this.$avatarSrc.val() && !this.$avatarInput.val()) {
- return false;
- }
- if(this.support.formData) {
- this.ajaxUpload();
- return false;
- }
- },
- rotate: function(e) {
- var data;
- if(this.active) {
- data = $(e.target).data();
- if(data.method) {
- this.$img.cropper(data.method, data.option);
- }
- }
- },
- isImageFile: function(file) {
- if(file.type) {
- return /^image\/\w+$/.test(file.type);
- } else {
- return /\.(jpg|jpeg|png|gif)$/.test(file);
- }
- },
- startCropper: function() {
- var _this = this;
- if(this.active) {
- this.$img.cropper('replace', this.url);
- } else {
- this.$img = $('<img src="' + this.url + '">');
- this.$avatarWrapper.empty().html(this.$img);
- this.$img.cropper({
- aspectRatio: 1,
- preview: this.$avatarPreview.selector,
- strict: false,
- // crop: function(data) {
- // var json = [
- // '{"x":' + data.x,
- // '"y":' + data.y,
- // '"height":' + data.height,
- // '"width":' + data.width,
- // '"rotate":' + data.rotate + '}'
- // ].join();
- // _this.$avatarData.val(json);
- // }
- });
- this.active = true;
- }
- },
- stopCropper: function() {
- if(this.active) {
- this.$img.cropper('destroy');
- this.$img.remove();
- this.active = false;
- }
- },
- // ajaxUpload: function() {
- // var url = this.$avatarForm.attr('action'),
- // data = new FormData(this.$avatarForm[0]),
- // _this = this;
- //
- // $.ajax(url, {
- // headers: {
- // 'X-XSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
- // },
- // type: 'post',
- // data: data,
- // dataType: 'json',
- // processData: false,
- // contentType: false,
- //
- // beforeSend: function() {
- // _this.submitStart();
- // },
- //
- // success: function(data) {
- // _this.submitDone(data);
- // },
- //
- // error: function(XMLHttpRequest, textStatus, errorThrown) {
- // if (this.uploaded) {
- // this.uploaded = false;
- // this.cropDone();
- // // this.uploaded = true;this.support.datauri ||
- // // this.$avatarSrc.val(this.url);
- // // this.startCropper();
- // } else {
- // this.uploaded = true;
- // this.$avatarSrc.val(this.url);
- // this.startCropper();
- // this.cropDone();
- // }
- // },
- //
- // complete: function() {
- // _this.submitEnd();
- // }
- // });
- // },
- syncUpload: function() {
- this.$avatarSave.click();
- },
- submitStart: function() {
- this.$loading.fadeIn();
- },
- // submitDone: function(data) {
- // if($.isPlainObject(data)) {
- // if(data.result) {
- // this.url = data.result;
- // if(this.support.datauri || this.uploaded) {
- // this.uploaded = false;
- // this.cropDone();
- // } else {
- // this.uploaded = true;
- // this.$avatarSrc.val(this.url);
- // this.startCropper();
- // }
- // this.$avatarInput.val('');
- // } else if(data.message) {
- // this.alert(data.message);
- // }
- // } else {
- // this.alert('Failed to response');
- // }
- // },
- submitFail: function(msg) {
- this.alert(msg);
- },
- submitEnd: function() {
- this.$loading.fadeOut();
- },
- cropDone: function() {
- this.$avatarForm.get(0).reset();
- this.$avatar.attr('src', this.url);
- this.stopCropper();
- this.$avatarModal.modal('hide');
- },
- alert: function(msg) {
- var $alert = [
- '<div class="alert alert-danger avater-alert">',
- '<button type="button" class="close" data-dismiss="alert">×</button>',
- msg,
- '</div>'
- ].join('');
- this.$avatarUpload.after($alert);
- }
- };
- $(function() {
- return new CropAvatar($('#crop-avatar'));
- });
- });
|