2013-10-07 00:44:17 +02:00
|
|
|
$(function()
|
|
|
|
{
|
2013-10-09 17:50:07 +02:00
|
|
|
var tags = [];
|
|
|
|
$.getJSON('/tags?json', function(data)
|
|
|
|
{
|
|
|
|
tags = data['tags'];
|
|
|
|
});
|
2013-10-07 00:44:17 +02:00
|
|
|
|
2013-10-09 17:50:07 +02:00
|
|
|
var handler = $('#file-handler');
|
2013-10-07 00:44:17 +02:00
|
|
|
handler.on('dragenter', function(e)
|
|
|
|
{
|
|
|
|
$(this).addClass('active');
|
|
|
|
});
|
|
|
|
|
|
|
|
handler.on('dragleave', function(e)
|
|
|
|
{
|
|
|
|
$(this).removeClass('active');
|
|
|
|
});
|
|
|
|
|
|
|
|
handler.on('dragover', function(e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
});
|
|
|
|
|
|
|
|
handler.on('drop', function(e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
handleFiles(e.originalEvent.dataTransfer.files);
|
|
|
|
$(this).trigger('dragleave');
|
|
|
|
});
|
|
|
|
|
|
|
|
handler.on('click', function(e)
|
|
|
|
{
|
|
|
|
$(':file').show().focus().trigger('click').hide();
|
|
|
|
});
|
|
|
|
|
|
|
|
$(':file').change(function(e)
|
|
|
|
{
|
|
|
|
handleFiles(this.files);
|
|
|
|
});
|
|
|
|
|
2013-10-19 16:16:09 +02:00
|
|
|
$('.post .move-down-trigger, .post .move-up-trigger').on('click', function()
|
|
|
|
{
|
|
|
|
var dir = $(this).hasClass('move-down-trigger') ? 'd' : 'u';
|
|
|
|
var post = $(this).parents('.post');
|
|
|
|
if (dir == 'u')
|
|
|
|
post.insertBefore(post.prev('.post'));
|
|
|
|
else
|
|
|
|
post.insertAfter(post.next('.post'));
|
|
|
|
});
|
2013-10-07 00:44:17 +02:00
|
|
|
$('.post .remove-trigger').on('click', function()
|
|
|
|
{
|
|
|
|
$(this).parents('.post').slideUp(function()
|
|
|
|
{
|
|
|
|
$(this).remove();
|
|
|
|
});
|
2013-10-09 00:58:49 +02:00
|
|
|
if ($('#upload-step2 .post').length == 1)
|
|
|
|
{
|
|
|
|
$('#upload-step2').slideUp();
|
|
|
|
$('#upload-no-posts').slideDown();
|
|
|
|
}
|
2013-10-07 00:44:17 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2013-10-19 16:00:47 +02:00
|
|
|
function sendNextPost()
|
2013-10-07 00:44:17 +02:00
|
|
|
{
|
2013-10-09 00:58:49 +02:00
|
|
|
var posts = $('#upload-step2 .post');
|
2013-10-07 00:44:17 +02:00
|
|
|
if (posts.length == 0)
|
|
|
|
{
|
2013-10-19 16:00:47 +02:00
|
|
|
uploadFinished();
|
2013-10-07 00:44:17 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-19 16:00:47 +02:00
|
|
|
var postDom = posts.first();
|
|
|
|
var url = postDom.find('form').attr('action') + '?json';
|
|
|
|
var file = postDom.data('file');
|
|
|
|
var tags = postDom.find('[name=tags]').val();
|
|
|
|
var safety = postDom.find('[name=safety]:checked').val();
|
2013-10-19 20:58:51 +02:00
|
|
|
var source = postDom.find('[name=source]').val();
|
2013-10-19 16:00:47 +02:00
|
|
|
var fd = new FormData();
|
|
|
|
fd.append('file', file);
|
|
|
|
fd.append('tags', tags);
|
|
|
|
fd.append('safety', safety);
|
2013-10-19 20:58:51 +02:00
|
|
|
fd.append('source', source);
|
2013-10-19 16:00:47 +02:00
|
|
|
|
|
|
|
var ajaxData =
|
2013-10-09 00:58:49 +02:00
|
|
|
{
|
2013-10-19 16:00:47 +02:00
|
|
|
url: url,
|
|
|
|
data: fd,
|
|
|
|
processData: false,
|
|
|
|
contentType: false,
|
|
|
|
dataType: 'json',
|
|
|
|
type: 'POST',
|
|
|
|
success: function(data)
|
2013-10-09 00:58:49 +02:00
|
|
|
{
|
|
|
|
if (data['success'])
|
|
|
|
{
|
|
|
|
postDom.slideUp(function()
|
2013-10-07 00:44:17 +02:00
|
|
|
{
|
2013-10-19 16:00:47 +02:00
|
|
|
postDom.remove();
|
|
|
|
sendNextPost();
|
2013-10-09 00:58:49 +02:00
|
|
|
});
|
2013-10-07 00:44:17 +02:00
|
|
|
}
|
2013-10-09 00:58:49 +02:00
|
|
|
else
|
|
|
|
{
|
2013-10-19 15:19:47 +02:00
|
|
|
postDom.find('.alert').html(data['errorHtml']).slideDown();
|
2013-10-19 16:00:47 +02:00
|
|
|
enableUpload();
|
2013-10-09 00:58:49 +02:00
|
|
|
}
|
|
|
|
}
|
2013-10-19 16:00:47 +02:00
|
|
|
};
|
2013-10-07 00:44:17 +02:00
|
|
|
|
2013-10-19 16:00:47 +02:00
|
|
|
$.ajax(ajaxData);
|
|
|
|
}
|
|
|
|
|
|
|
|
function uploadFinished()
|
|
|
|
{
|
|
|
|
window.location.href = $('#upload-step2').attr('data-redirect-url');
|
|
|
|
}
|
|
|
|
|
|
|
|
function disableUpload()
|
|
|
|
{
|
|
|
|
var theSubmit = $('#the-submit');
|
|
|
|
theSubmit.addClass('inactive');
|
|
|
|
var posts = $('#upload-step2 .post');
|
|
|
|
posts.find(':input').attr('readonly', true);
|
|
|
|
posts.addClass('inactive');
|
|
|
|
}
|
|
|
|
|
|
|
|
function enableUpload()
|
|
|
|
{
|
|
|
|
var theSubmit = $('#the-submit');
|
|
|
|
theSubmit.removeClass('inactive');
|
|
|
|
var posts = $('#upload-step2 .post');
|
|
|
|
posts.removeClass('inactive');
|
|
|
|
posts.find(':input').attr('readonly', false);
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#the-submit').click(function(e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
var theSubmit = $(this);
|
|
|
|
disableUpload();
|
|
|
|
sendNextPost();
|
2013-10-07 00:44:17 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
function handleFiles(files)
|
|
|
|
{
|
|
|
|
$('#upload-step1').fadeOut(function()
|
|
|
|
{
|
|
|
|
for (var i = 0; i < files.length; i ++)
|
|
|
|
{
|
|
|
|
var file = files[i];
|
|
|
|
var postDom = $('#post-template').clone(true);
|
2013-10-09 00:58:49 +02:00
|
|
|
postDom.find('form').submit(false);
|
2013-10-07 00:44:17 +02:00
|
|
|
postDom.removeAttr('id');
|
|
|
|
postDom.data('file', file);
|
|
|
|
$('.file-name strong', postDom).text(file.name);
|
|
|
|
$('.posts').append(postDom);
|
|
|
|
|
2013-10-09 17:50:07 +02:00
|
|
|
postDom.show();
|
|
|
|
var tagItOptions =
|
2013-10-13 12:28:16 +02:00
|
|
|
{
|
|
|
|
caseSensitive: true,
|
2013-10-09 17:50:07 +02:00
|
|
|
availableTags: tags,
|
|
|
|
placeholderText: $('.tags input').attr('placeholder')
|
|
|
|
};
|
|
|
|
$('.tags input', postDom).tagit(tagItOptions);
|
|
|
|
|
2013-10-07 00:44:17 +02:00
|
|
|
if (!file.type.match('image.*'))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-10-07 10:56:19 +02:00
|
|
|
var img = postDom.find('img')
|
2013-10-07 00:44:17 +02:00
|
|
|
var reader = new FileReader();
|
2013-10-07 10:56:19 +02:00
|
|
|
reader.onload = (function(theFile, img)
|
2013-10-07 00:44:17 +02:00
|
|
|
{
|
|
|
|
return function(e)
|
|
|
|
{
|
|
|
|
/*img.css('max-width', img.css('width'));
|
|
|
|
img.css('max-height', img.css('height'));
|
|
|
|
img.css('width', 'auto');
|
|
|
|
img.css('height', 'auto');*/
|
|
|
|
img.css('background-image', 'none');
|
|
|
|
img.attr('src', e.target.result);
|
|
|
|
};
|
2013-10-07 10:56:19 +02:00
|
|
|
})(file, img);
|
2013-10-07 00:44:17 +02:00
|
|
|
reader.readAsDataURL(file);
|
|
|
|
}
|
|
|
|
$('#upload-step2').fadeIn(function()
|
|
|
|
{
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|