2017-06-02 03:59:27 +00:00
|
|
|
const FileSender = require('./fileSender');
|
2017-06-21 21:31:21 +00:00
|
|
|
const { notify } = require('./utils');
|
2017-06-08 20:45:28 +00:00
|
|
|
const $ = require('jquery');
|
2017-06-01 22:10:00 +00:00
|
|
|
|
2017-06-22 21:50:57 +00:00
|
|
|
const Raven = window.Raven;
|
|
|
|
|
2017-06-06 21:24:51 +00:00
|
|
|
$(document).ready(function() {
|
2017-06-08 19:57:56 +00:00
|
|
|
// reset copy button
|
2017-06-20 19:23:12 +00:00
|
|
|
const $copyBtn = $('#copy-btn');
|
|
|
|
$copyBtn.attr('disabled', false);
|
|
|
|
$copyBtn.html('Copy');
|
2017-06-08 19:57:56 +00:00
|
|
|
|
2017-06-06 21:23:10 +00:00
|
|
|
$('#page-one').show();
|
2017-06-23 16:10:53 +00:00
|
|
|
$('#file-list').show();
|
2017-06-06 21:23:10 +00:00
|
|
|
$('#upload-progress').hide();
|
|
|
|
$('#share-link').hide();
|
2017-06-01 22:10:00 +00:00
|
|
|
|
2017-06-23 16:10:53 +00:00
|
|
|
for(let i=0; i<localStorage.length; i++) {
|
|
|
|
let id = localStorage.key(i);
|
|
|
|
checkUploads(id);
|
|
|
|
}
|
|
|
|
|
2017-06-08 19:57:56 +00:00
|
|
|
// copy link to clipboard
|
2017-06-20 19:23:12 +00:00
|
|
|
$copyBtn.click(() => {
|
2017-06-23 16:10:53 +00:00
|
|
|
var aux = document.createElement('input');
|
2017-06-06 21:24:51 +00:00
|
|
|
aux.setAttribute('value', $('#link').attr('value'));
|
2017-06-06 21:23:10 +00:00
|
|
|
document.body.appendChild(aux);
|
|
|
|
aux.select();
|
2017-06-06 21:24:51 +00:00
|
|
|
document.execCommand('copy');
|
2017-06-06 21:23:10 +00:00
|
|
|
document.body.removeChild(aux);
|
2017-06-20 19:23:12 +00:00
|
|
|
//disable button for 3s
|
2017-06-20 19:52:01 +00:00
|
|
|
$copyBtn.attr('disabled', true);
|
2017-06-20 19:23:12 +00:00
|
|
|
$copyBtn.html('Copied!');
|
2017-06-20 19:52:01 +00:00
|
|
|
window.setTimeout(() => {
|
2017-06-20 19:23:12 +00:00
|
|
|
$copyBtn.attr('disabled', false);
|
|
|
|
$copyBtn.html('Copy');
|
|
|
|
}, 3000);
|
2017-06-06 21:23:10 +00:00
|
|
|
});
|
2017-06-08 19:57:56 +00:00
|
|
|
|
|
|
|
// link back to home page
|
2017-06-06 21:24:51 +00:00
|
|
|
$('.send-new').click(() => {
|
2017-06-06 21:23:10 +00:00
|
|
|
$('#page-one').show();
|
|
|
|
$('#file-list').show();
|
|
|
|
$('#upload-progress').hide();
|
|
|
|
$('#share-link').hide();
|
2017-06-20 19:23:12 +00:00
|
|
|
$copyBtn.attr('disabled', false);
|
|
|
|
$copyBtn.html('Copy');
|
2017-06-06 21:23:10 +00:00
|
|
|
});
|
2017-06-01 22:12:30 +00:00
|
|
|
|
2017-06-08 19:57:56 +00:00
|
|
|
// on file upload by browse or drag & drop
|
|
|
|
window.onUpload = event => {
|
|
|
|
event.preventDefault();
|
2017-06-08 20:11:28 +00:00
|
|
|
let file = '';
|
2017-06-09 17:44:12 +00:00
|
|
|
if (event.type === 'drop') {
|
2017-06-08 19:57:56 +00:00
|
|
|
file = event.dataTransfer.files[0];
|
|
|
|
} else {
|
|
|
|
file = event.target.files[0];
|
|
|
|
}
|
2017-06-20 19:23:12 +00:00
|
|
|
|
2017-06-23 16:10:53 +00:00
|
|
|
const fileSender = new FileSender(file);
|
|
|
|
fileSender.on('progress', percentComplete => {
|
|
|
|
$('#page-one').hide();
|
|
|
|
$('#file-list').hide();
|
|
|
|
$('#upload-progress').show();
|
|
|
|
$('#upload-filename').innerHTML += file.name;
|
|
|
|
// update progress bar
|
|
|
|
document
|
|
|
|
.querySelector('#progress-bar')
|
|
|
|
.style.setProperty('--progress', percentComplete + '%');
|
|
|
|
$('#progress-text').html(`${percentComplete}%`);
|
|
|
|
|
|
|
|
});
|
|
|
|
fileSender.upload().then(info => {
|
|
|
|
const url = info.url.trim() + `#${info.secretKey}`.trim();
|
|
|
|
$('#link').attr('value', url);
|
|
|
|
|
|
|
|
localStorage.setItem(info.fileId, info.deleteToken);
|
|
|
|
|
|
|
|
$('#page-one').hide();
|
|
|
|
$('#file-list').hide();
|
|
|
|
$('#upload-progress').hide();
|
|
|
|
$('#share-link').show();
|
|
|
|
|
|
|
|
checkUploads(info.fileId, url);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
window.allowDrop = function(ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
};
|
|
|
|
|
|
|
|
//load previous uploads
|
|
|
|
function checkUploads(id, url='') {
|
|
|
|
return new Promise ((resolve, reject) => {
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
xhr.responseType = 'json';
|
|
|
|
xhr.onreadystatechange = () => {
|
|
|
|
if (xhr.readyState == 4 && xhr.status == 200) {
|
|
|
|
resolve(xhr.response);
|
|
|
|
}
|
|
|
|
else if (xhr.readyState == 4 && xhr.status == 404) {
|
|
|
|
reject('error code: ' + xhr.status);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
xhr.onerror = () => {
|
|
|
|
reject('There was a network error.');
|
|
|
|
};
|
|
|
|
xhr.open('get', '/file/' + id, true);
|
|
|
|
xhr.send();
|
|
|
|
}).then (response => {
|
|
|
|
populateFileList(response, url);
|
|
|
|
}, error => {
|
|
|
|
console.log(error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
//update file table with current files in localStorage
|
|
|
|
function populateFileList(file, url) {
|
|
|
|
console.log(file);
|
2017-06-09 17:44:12 +00:00
|
|
|
const $fileList = $('#uploaded-files');
|
|
|
|
const row = document.createElement('tr');
|
|
|
|
const name = document.createElement('td');
|
|
|
|
const link = document.createElement('td');
|
|
|
|
const expiry = document.createElement('td');
|
|
|
|
const del = document.createElement('td');
|
2017-06-20 19:23:12 +00:00
|
|
|
del.setAttribute('align', 'center');
|
2017-06-09 17:44:12 +00:00
|
|
|
const btn = document.createElement('button');
|
|
|
|
const popupDiv = document.createElement('div');
|
|
|
|
const $popupText = $('<span>', { class: 'popuptext' });
|
|
|
|
const cellText = document.createTextNode(file.name);
|
2017-06-23 16:10:53 +00:00
|
|
|
const progress = document.createElement('p');
|
2017-06-01 17:54:17 +00:00
|
|
|
|
2017-06-06 21:23:10 +00:00
|
|
|
name.appendChild(cellText);
|
2017-06-01 22:10:00 +00:00
|
|
|
|
2017-06-08 19:57:56 +00:00
|
|
|
// create delete button
|
|
|
|
btn.innerHTML = 'x';
|
|
|
|
btn.classList.add('delete-btn');
|
2017-06-23 16:10:53 +00:00
|
|
|
link.innerHTML = url;
|
2017-06-08 19:57:56 +00:00
|
|
|
|
|
|
|
// create popup
|
|
|
|
popupDiv.classList.add('popup');
|
2017-06-08 20:11:28 +00:00
|
|
|
$popupText.html(
|
2017-06-09 17:44:12 +00:00
|
|
|
'<span class="del-file">Delete</span><span class="nvm" > Nevermind</span>'
|
2017-06-08 20:11:28 +00:00
|
|
|
);
|
2017-06-06 21:23:10 +00:00
|
|
|
|
2017-06-23 16:10:53 +00:00
|
|
|
// delete file
|
|
|
|
$popupText.find('.del-file').click(e => {
|
|
|
|
FileSender.delete(
|
|
|
|
file.fileId,
|
|
|
|
localStorage.getItem(file.fileId)
|
|
|
|
).then(() => {
|
|
|
|
$(e.target).parents('tr').remove();
|
|
|
|
localStorage.removeItem(file.fileId);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-06-08 19:57:56 +00:00
|
|
|
// add data cells to table row
|
2017-06-06 21:23:10 +00:00
|
|
|
row.appendChild(name);
|
|
|
|
row.appendChild(link);
|
|
|
|
row.appendChild(expiry);
|
2017-06-08 19:57:56 +00:00
|
|
|
popupDiv.appendChild(btn);
|
|
|
|
$(popupDiv).append($popupText);
|
|
|
|
del.appendChild(popupDiv);
|
|
|
|
row.appendChild(del);
|
2017-06-06 21:23:10 +00:00
|
|
|
|
2017-06-23 16:10:53 +00:00
|
|
|
// show popup
|
|
|
|
del.addEventListener('click', toggleShow);
|
|
|
|
// hide popup
|
|
|
|
$popupText.find('.nvm').click(toggleShow);
|
2017-06-20 19:23:12 +00:00
|
|
|
|
2017-06-23 16:10:53 +00:00
|
|
|
$('tbody').append(row); //add row to table
|
2017-06-09 14:47:12 +00:00
|
|
|
|
2017-06-09 17:44:12 +00:00
|
|
|
function toggleShow() {
|
2017-06-09 13:45:06 +00:00
|
|
|
$popupText.toggleClass('show');
|
|
|
|
}
|
2017-06-23 16:10:53 +00:00
|
|
|
}
|
2017-06-01 22:10:00 +00:00
|
|
|
|
2017-06-06 21:24:51 +00:00
|
|
|
});
|