Merge pull request #23 from lbryio/upload
publish tool update - added drag and drop
This commit is contained in:
commit
ed50cde09e
4 changed files with 105 additions and 49 deletions
|
@ -1,3 +1,14 @@
|
||||||
|
#drop-zone {
|
||||||
|
border: 1px dashed lightgrey;
|
||||||
|
padding: 1em;
|
||||||
|
height: 200px;
|
||||||
|
width: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
.all-claims-img {
|
.all-claims-img {
|
||||||
height: 200px;
|
height: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#image-preview {
|
||||||
|
display: none;
|
||||||
|
}
|
|
@ -5,23 +5,25 @@
|
||||||
{{> publish}}
|
{{> publish}}
|
||||||
{{> links}}
|
{{> links}}
|
||||||
{{> documentation}}
|
{{> documentation}}
|
||||||
{{> bugs}}
|
|
||||||
{{> contribute}}
|
{{> contribute}}
|
||||||
|
{{> bugs}}
|
||||||
|
|
||||||
<script src="/socket.io/socket.io.js"></script>
|
<script src="/socket.io/socket.io.js"></script>
|
||||||
<script src="/siofu/client.js"></script>
|
<script src="/siofu/client.js"></script>
|
||||||
<script>
|
<script>
|
||||||
|
// define variables
|
||||||
var socket = io();
|
var socket = io();
|
||||||
var uploader = new SocketIOFileUpload(socket);
|
var uploader = new SocketIOFileUpload(socket);
|
||||||
|
var stagedFile = null;
|
||||||
|
|
||||||
|
/* helper functions */
|
||||||
|
// create a progress animation
|
||||||
function createProgressBar(element, size){
|
function createProgressBar(element, size){
|
||||||
var x = 1;
|
var x = 1;
|
||||||
var adder = 1;
|
var adder = 1;
|
||||||
function addOne(){
|
function addOne(){
|
||||||
var bars = '<p>|';
|
var bars = '<p>|';
|
||||||
for (var i = 0; i < x; i++){
|
for (var i = 0; i < x; i++){ bars += ' | '; }
|
||||||
bars += ' | ';
|
|
||||||
}
|
|
||||||
bars += '</p>';
|
bars += '</p>';
|
||||||
element.innerHTML = bars;
|
element.innerHTML = bars;
|
||||||
if (x === size){
|
if (x === size){
|
||||||
|
@ -33,60 +35,97 @@
|
||||||
};
|
};
|
||||||
setInterval(addOne, 300);
|
setInterval(addOne, 300);
|
||||||
}
|
}
|
||||||
|
// preview file and stage the image for upload
|
||||||
function previewFile(){
|
function previewAndStageFile(selectedFile){
|
||||||
var preview = document.querySelector('img'); //selects the query named img
|
var preview = document.getElementById('image-preview');
|
||||||
var claimName = document.querySelector('input[name=name]');
|
var dropzone = document.getElementById('drop-zone');
|
||||||
var selectedFile = document.querySelector('input[name=file]').files[0];
|
|
||||||
var previewReader = new FileReader();
|
var previewReader = new FileReader();
|
||||||
|
|
||||||
|
preview.style.display = 'block';
|
||||||
|
dropzone.style.display = 'none';
|
||||||
|
|
||||||
previewReader.onloadend = function () {
|
previewReader.onloadend = function () {
|
||||||
preview.src = previewReader.result;
|
preview.src = previewReader.result;
|
||||||
};
|
};
|
||||||
|
|
||||||
if (selectedFile) {
|
if (selectedFile) {
|
||||||
previewReader.readAsDataURL(selectedFile); // reads the data and sets the img src
|
previewReader.readAsDataURL(selectedFile); // reads the data and sets the img src
|
||||||
claimName.value = selectedFile.name.substring(0, selectedFile.name.indexOf('.'));
|
document.getElementById('publish-name').value = selectedFile.name.substring(0, selectedFile.name.indexOf('.')); // updates metadata inputs
|
||||||
|
stagedFile = [selectedFile]; // stores the selected file for upload
|
||||||
} else {
|
} else {
|
||||||
preview.src = '';
|
preview.src = '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// update the publish status
|
||||||
function updatePublishStatus(msg){
|
function updatePublishStatus(msg){
|
||||||
document.getElementById('publish-status').innerHTML = msg;
|
document.getElementById('publish-status').innerHTML = msg;
|
||||||
}
|
}
|
||||||
|
// process the drop-zone drop
|
||||||
|
function drop_handler(ev) {
|
||||||
|
console.log("drop");
|
||||||
|
ev.preventDefault();
|
||||||
|
// if dropped items aren't files, reject them
|
||||||
|
var dt = ev.dataTransfer;
|
||||||
|
if (dt.items) {
|
||||||
|
if (dt.items[0].kind == 'file') {
|
||||||
|
var droppedFile = dt.items[0].getAsFile();
|
||||||
|
previewAndStageFile(droppedFile);
|
||||||
|
} else {
|
||||||
|
console.log("no files were found")
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
console.log("no items were found")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// prevent the browser's default drag behavior
|
||||||
|
function dragover_handler(ev) {
|
||||||
|
ev.preventDefault();
|
||||||
|
}
|
||||||
|
// remove all of the drag data
|
||||||
|
function dragend_handler(ev) {
|
||||||
|
var dt = ev.dataTransfer;
|
||||||
|
if (dt.items) {
|
||||||
|
for (var i = 0; i < dt.items.length; i++) {
|
||||||
|
dt.items.remove(i);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
ev.dataTransfer.clearData();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
uploader.listenOnSubmit(document.getElementById('publish-submit'), document.getElementById('siofu_input'));
|
/* configure the submit button */
|
||||||
|
|
||||||
document.getElementById('publish-submit').addEventListener('click', function(event){
|
document.getElementById('publish-submit').addEventListener('click', function(event){
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
if (stagedFile) {
|
||||||
|
uploader.submitFiles(stagedFile);
|
||||||
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
/* socketio-file-upload listeners */
|
||||||
uploader.addEventListener('start', function(event){
|
uploader.addEventListener('start', function(event){
|
||||||
var name = document.getElementById('publish-name').value;
|
var name = document.getElementById('publish-name').value;
|
||||||
var license = document.getElementById('publish-license').value;
|
var license = document.getElementById('publish-license').value;
|
||||||
var nsfw = document.getElementById('publish-nsfw').value;
|
var nsfw = document.getElementById('publish-nsfw').value;
|
||||||
// set meta data
|
|
||||||
event.file.meta.name = name;
|
event.file.meta.name = name;
|
||||||
event.file.meta.license = license;
|
event.file.meta.license = license;
|
||||||
event.file.meta.nsfw = nsfw;
|
event.file.meta.nsfw = nsfw;
|
||||||
// set the html of the publish area
|
// re-set the html in the publish area
|
||||||
document.getElementById('publish').innerHTML = '<div id="publish-status"></div><div id="progress-bar"></div>';
|
document.getElementById('publish-active-area').innerHTML = '<div id="publish-status"></div><div id="progress-bar"></div>';
|
||||||
// start the progress bar
|
// start a progress animation
|
||||||
createProgressBar(document.getElementById('progress-bar'), 12);
|
createProgressBar(document.getElementById('progress-bar'), 12);
|
||||||
});
|
});
|
||||||
|
|
||||||
uploader.addEventListener('progress', function(event){
|
uploader.addEventListener('progress', function(event){
|
||||||
var percent = event.bytesLoaded / event.file.size * 100;
|
var percent = event.bytesLoaded / event.file.size * 100;
|
||||||
updatePublishStatus('File is ' + percent.toFixed(2) + '% loaded to the server');
|
updatePublishStatus('File is ' + percent.toFixed(2) + '% loaded to the server');
|
||||||
})
|
});
|
||||||
|
|
||||||
|
/* socket.io message listeners */
|
||||||
socket.on('publish-status', function(msg){
|
socket.on('publish-status', function(msg){
|
||||||
updatePublishStatus(msg);
|
updatePublishStatus(msg);
|
||||||
})
|
});
|
||||||
|
|
||||||
socket.on('publish-failure', function(msg){
|
socket.on('publish-failure', function(msg){
|
||||||
document.getElementById('publish').innerHTML = '<p>' + msg + '</p><p> --(✖╭╮✖)→ </p>';
|
document.getElementById('publish-active-area').innerHTML = '<p>' + msg + '</p><p> --(✖╭╮✖)→ </p>';
|
||||||
})
|
});
|
||||||
|
|
||||||
socket.on('publish-complete', function(msg){
|
socket.on('publish-complete', function(msg){
|
||||||
var publishResults = '<p>Your publish is complete!</p>';
|
var publishResults = '<p>Your publish is complete!</p>';
|
||||||
publishResults += '<p>Your Claim ID is: ' + msg.result.claim_id + '</p>';
|
publishResults += '<p>Your Claim ID is: ' + msg.result.claim_id + '</p>';
|
||||||
|
@ -95,6 +134,6 @@
|
||||||
publishResults += '<p>Here is a direct link to your asset: <a href="https://spee.ch/' + msg.name + '/' + msg.result.claim_id + '">spee.ch/' + msg.name + '/' + msg.result.claim_id + '</a></p>';
|
publishResults += '<p>Here is a direct link to your asset: <a href="https://spee.ch/' + msg.name + '/' + msg.result.claim_id + '">spee.ch/' + msg.name + '/' + msg.result.claim_id + '</a></p>';
|
||||||
publishResults += '<p><i>NOTE: the transaction still needs to be mined by the network before you can access it! This may take a few minutes. To to view the transaction on the blockchain explorer click the Transaction ID link above.</i></p>';
|
publishResults += '<p><i>NOTE: the transaction still needs to be mined by the network before you can access it! This may take a few minutes. To to view the transaction on the blockchain explorer click the Transaction ID link above.</i></p>';
|
||||||
publishResults += '<p><a href="/">Reload to publish another asset</a></p>';
|
publishResults += '<p><a href="/">Reload to publish another asset</a></p>';
|
||||||
document.getElementById('publish').innerHTML = publishResults;
|
document.getElementById('publish-active-area').innerHTML = publishResults;
|
||||||
})
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<h2>Documentation</h2>
|
<h2>Documentation</h2>
|
||||||
<h3>Site Navigation</h3>
|
<h3>Site Navigation</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong><a href="/">spee.ch</a></strong>.
|
<li><strong><a href="/">spee.ch</a></strong>
|
||||||
<ul>
|
<ul>
|
||||||
<li>To publish a file, navigate to the homepage.</li>
|
<li>To publish a file, navigate to the homepage.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
<div id="publish">
|
<div id="publish">
|
||||||
<h2>Publish Your Own</h2>
|
<h2>Publish Your Own</h2>
|
||||||
|
<div id="publish-active-area">
|
||||||
<form id="publish-form" action="" method="" enctype="multipart/form-data">
|
<form id="publish-form" action="" method="" enctype="multipart/form-data">
|
||||||
<input type="file" id="siofu_input" name="file" accept="video/*,image/*" onchange="previewFile()" enctype="multipart/form-data"/>
|
<div id="drop-zone" ondrop="drop_handler(event);" ondragover="dragover_handler(event);" ondragend="dragend_handler(event)">
|
||||||
<br/>
|
<p>Drag and drop your file here, or choose your file below.</p>
|
||||||
|
|
||||||
|
<input type="file" id="siofu_input" name="file" accept="video/*,image/*" onchange="previewAndStageFile(event.target.files[0])" enctype="multipart/form-data"/>
|
||||||
|
</div>
|
||||||
<img id="image-preview" src="" height="200" alt="Image preview..."/>
|
<img id="image-preview" src="" height="200" alt="Image preview..."/>
|
||||||
<br/>
|
<br/>
|
||||||
Name: <input type="text" id="publish-name" name="name" value="name"/>
|
Name: <input type="text" id="publish-name" name="name" value="name"/>
|
||||||
|
@ -18,5 +22,7 @@
|
||||||
</select>
|
</select>
|
||||||
<p><i>By clicking 'Publish' I attest that I have read and agree to the <a href="https://lbry.io/termsofservice" target="_blank">LBRY terms of service</a>.</i></p>
|
<p><i>By clicking 'Publish' I attest that I have read and agree to the <a href="https://lbry.io/termsofservice" target="_blank">LBRY terms of service</a>.</i></p>
|
||||||
<button id="publish-submit">Publish</button>
|
<button id="publish-submit">Publish</button>
|
||||||
|
<button id="publish-reset">Reset</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
Loading…
Reference in a new issue