123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- //https://css-tricks.com/drag-and-drop-file-uploading/
- function imageInit(){
- // feature detection for drag&drop upload
- var isAdvancedUpload = function()
- {
- var div = document.createElement( 'div' );
- return ( ( 'draggable' in div ) || ( 'ondragstart' in div && 'ondrop' in div ) ) && 'FormData' in window && 'FileReader' in window;
- }();
- // applying the effect for every form
- var forms = document.querySelectorAll( '.box' );
- Array.prototype.forEach.call( forms, function( form )
- {
- var input = form.querySelector( 'input[type="file"]' ),
- label = form.querySelector( 'label' ),
- errorMsg = form.querySelector( '.box__error span' ),
- restart = form.querySelectorAll( '.box__restart' ),
- droppedFiles = false,
- showFiles = function( files )
- {
- label.textContent = files.length > 1 ? ( input.getAttribute( 'data-multiple-caption' ) || '' ).replace( '{count}', files.length ) : files[ 0 ].name;
- },
- triggerFormSubmit = function()
- {
- $('#imgUpload').submit();
- //var event = document.createEvent( 'HTMLEvents' );
- //event.initEvent( 'submit', true, false );
- //form.dispatchEvent( event );
- };
- // letting the server side to know we are going to make an Ajax request
- var ajaxFlag = document.createElement( 'input' );
- ajaxFlag.setAttribute( 'type', 'hidden' );
- ajaxFlag.setAttribute( 'name', 'ajax' );
- ajaxFlag.setAttribute( 'value', 1 );
- form.appendChild( ajaxFlag );
- // automatically submit the form on file select
- input.addEventListener( 'change', function( e )
- {
- showFiles( e.target.files );
- triggerFormSubmit();
- });
- // drag&drop files if the feature is available
- if( isAdvancedUpload )
- {
- form.classList.add( 'has-advanced-upload' ); // letting the CSS part to know drag&drop is supported by the browser
- [ 'drag', 'dragstart', 'dragend', 'dragover', 'dragenter', 'dragleave', 'drop' ].forEach( function( event )
- {
- form.addEventListener( event, function( e )
- {
- // preventing the unwanted behaviours
- e.preventDefault();
- e.stopPropagation();
- });
- });
- [ 'dragover', 'dragenter' ].forEach( function( event )
- {
- form.addEventListener( event, function()
- {
- form.classList.add( 'is-dragover' );
- });
- });
- [ 'dragleave', 'dragend', 'drop' ].forEach( function( event )
- {
- form.addEventListener( event, function()
- {
- form.classList.remove( 'is-dragover' );
- });
- });
- form.addEventListener( 'drop', function( e )
- {
- droppedFiles = e.dataTransfer.files; // the files that were dropped
- showFiles( droppedFiles );
-
- triggerFormSubmit();
- e.dataTransfer.files = [];
- });
- }
- // if the form was submitted
-
- $('#imgUpload').submit(function(e){
- // preventing the duplicate submissions if the current one is in progress
- if( form.classList.contains( 'is-uploading' ) ) return false;
- form.classList.add( 'is-uploading' );
- form.classList.remove( 'is-error' );
-
- var station = $('#pattern_station').text();
- var pattern = $('#pattern_ID').text();
- var curCount = $('#image_count').text();
- var language = $('#image_language option:selected').text();
-
-
- if( isAdvancedUpload ) // ajax file upload for modern browsers
- {
- e.preventDefault();
- // gathering the form data
- var ajaxData;
-
-
- if( droppedFiles )
- {
- ajaxData = new FormData();
- Array.prototype.forEach.call( droppedFiles, function( file )
- {
- ajaxData.append( input.getAttribute( 'name' ), file );
- });
- }
- else{
- ajaxData = new FormData( form );
- }
- ajaxData.append("language", language)
-
-
-
- /*
- $.ajax({
- type: "POST",
- url: form.getAttribute( 'action' ),
- headers: {"content-id": "pattern"},
- data: ajaxData,
- contentType: false,
- processData: false,
- success: function(res) {
- getPattern(station, pattern)
- input.value = "";
- },
- error: function (request, status, error) {
- alert(request.responseText + status + error);
- }
- });
- */
-
- //Original Upload:
-
- // ajax request
- var ajax = new XMLHttpRequest();
- ajax.open( form.getAttribute( 'method' ), form.getAttribute( 'action' ), false );
-
- ajax.onload = function()
- {
- form.classList.remove( 'is-uploading' );
- if( ajax.status >= 200 && ajax.status < 400 )
- {
- getPattern(station, pattern)
-
- input.value = "";
- //imageInit();
- //form.classList.add('is-success');
-
- //old upload php: saveImages(station, pattern, curCount, language, ajax.responseText);
-
- }
- else alert( 'Error. Please, contact the webmaster!' );
- };
- ajax.onerror = function()
- {
- form.classList.remove( 'is-uploading' );
- alert( 'Error. Please, try again!' );
- };
- ajax.send( ajaxData );
-
-
-
- form.classList.remove( 'is-uploading' );
- form.classList.remove( 'is-error', 'is-success' );
-
- e.target.files = [];
- input.value = "";
- droppedFiles = false;
-
-
- }
- else // fallback Ajax solution upload for older browsers
- {
-
- var iframeName = 'uploadiframe' + new Date().getTime(),
- iframe = document.createElement( 'iframe' );
- $iframe = $( '<iframe name="' + iframeName + '" style="display: none;"></iframe>' );
- iframe.setAttribute( 'name', iframeName );
- iframe.style.display = 'none';
- document.body.appendChild( iframe );
- form.setAttribute( 'target', iframeName );
- iframe.addEventListener( 'load', function()
- {
- var data = JSON.parse( iframe.contentDocument.body.innerHTML );
- form.classList.remove( 'is-uploading' )
- form.classList.add( data.success == true ? 'is-success' : 'is-error' )
- form.removeAttribute( 'target' );
- if( !data.success ) errorMsg.textContent = data.error;
- iframe.parentNode.removeChild( iframe );
- });
- }
-
- /*
- if(e.preventDefault){ e.preventDefault()}
- else{e.stop()};
- e.returnValue = false;
- e.stopPropagation();
- */
- });
- // restart the form if has a state of error/success
- Array.prototype.forEach.call( restart, function( entry )
- {
- entry.addEventListener( 'click', function( e )
- {
- e.preventDefault();
- form.classList.remove( 'is-error', 'is-success' );
- input.click();
- });
- });
- // Firefox focus bug fix for file input
- input.addEventListener( 'focus', function(){ input.classList.add( 'has-focus' ); });
- input.addEventListener( 'blur', function(){ input.classList.remove( 'has-focus' ); });
- });
- }
- $(document).ready(function() {
- imageInit();
- });
|