| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- $(function(){
- var ul = null;
- $('.drop a').click(function(){
- // Simulate a click on the file input button
- // to show the file browser dialog
- $(this).parent().find('input').click();
- ul = $(this).parent().find('ul');
- });
- // Initialize the jQuery File Upload plugin
- $('.upload').fileupload({
- // This element will accept file drag/drop uploading
- dropZone: $('.drop'),
- // This function is called when a file is added to the queue;
- // either via the browse button, or via drag/drop:
- add: function (e, data) {
-
- var tpl = $('<li class="working"><input type="text" value="0" data-width="48" data-height="48"'+
- ' data-fgColor="#0788a5" data-readOnly="1" data-bgColor="#3e4043" /><p></p><span></span></li>');
- // Append the file name and file size
- tpl.find('p').text('')
- .append('<i></i>');
- // Add the HTML to the UL element
- data.context = tpl.appendTo(ul);
- // Initialize the knob plugin
- tpl.find('input').knob();
- // Listen for clicks on the cancel icon
- tpl.find('span').click(function(){
- if(tpl.hasClass('working')){
- jqXHR.abort();
- }
- tpl.fadeOut(function(){
- tpl.remove();
- });
- });
- // Automatically upload the file once it is added to the queue
- var jqXHR = data.submit();
- },
- progress: function(e, data){
- // Calculate the completion percentage of the upload
- var progress = parseInt(data.loaded / data.total * 100, 10);
- // Update the hidden input field and trigger a change
- // so that the jQuery knob plugin knows to update the dial
- data.context.find('input').val(progress).change();
- if(progress == 100){
- data.context.removeClass('working');
- }
- },
- fail:function(e, data){
- // Something has gone wrong!
- data.context.addClass('error');
- },
-
- done: function(e,data) {
- $('.uploadedFile').val(data.files[0].name);
- }
- });
- // Prevent the default action when a file is dropped on the window
- $(document).on('drop dragover', function (e) {
- e.preventDefault();
- });
- // Helper function that formats the file sizes
- function formatFileSize(bytes) {
- if (typeof bytes !== 'number') {
- return '';
- }
- if (bytes >= 1000000000) {
- return (bytes / 1000000000).toFixed(2) + ' GB';
- }
- if (bytes >= 1000000) {
- return (bytes / 1000000).toFixed(2) + ' MB';
- }
- return (bytes / 1000).toFixed(2) + ' KB';
- }
- });
|