updated the post publish links
This commit is contained in:
parent
d278c4d4bb
commit
192f0de4da
7 changed files with 175 additions and 159 deletions
|
@ -117,7 +117,7 @@ module.exports = {
|
||||||
// return the claim
|
// return the claim
|
||||||
resolve(claim.dataValues);
|
resolve(claim.dataValues);
|
||||||
// 3. otherwise use daemon to retrieve it
|
// 3. otherwise use daemon to retrieve it
|
||||||
} else {
|
} else {
|
||||||
// 4. get the claim and serve it
|
// 4. get the claim and serve it
|
||||||
getClaimAndHandleResponse(freePublicClaimUri, resolve, reject);
|
getClaimAndHandleResponse(freePublicClaimUri, resolve, reject);
|
||||||
}
|
}
|
||||||
|
|
159
public/assets/js/claimPublish.js
Normal file
159
public/assets/js/claimPublish.js
Normal file
|
@ -0,0 +1,159 @@
|
||||||
|
// define variables
|
||||||
|
var socket = io();
|
||||||
|
var uploader = new SocketIOFileUpload(socket);
|
||||||
|
var stagedFiles = null;
|
||||||
|
|
||||||
|
/* helper functions */
|
||||||
|
// create a progress animation
|
||||||
|
function createProgressBar(element, size){
|
||||||
|
var x = 1;
|
||||||
|
var adder = 1;
|
||||||
|
function addOne(){
|
||||||
|
var bars = '<p>|';
|
||||||
|
for (var i = 0; i < x; i++){ bars += ' | '; }
|
||||||
|
bars += '</p>';
|
||||||
|
element.innerHTML = bars;
|
||||||
|
if (x === size){
|
||||||
|
adder = -1;
|
||||||
|
} else if ( x === 0){
|
||||||
|
adder = 1;
|
||||||
|
}
|
||||||
|
x += adder;
|
||||||
|
};
|
||||||
|
setInterval(addOne, 300);
|
||||||
|
}
|
||||||
|
// preview file and stage the image for upload
|
||||||
|
function previewAndStageFile(selectedFile){
|
||||||
|
var preview = document.getElementById('image-preview');
|
||||||
|
var dropzone = document.getElementById('drop-zone');
|
||||||
|
var previewReader = new FileReader();
|
||||||
|
|
||||||
|
preview.style.display = 'block';
|
||||||
|
dropzone.style.display = 'none';
|
||||||
|
|
||||||
|
previewReader.onloadend = function () {
|
||||||
|
preview.src = previewReader.result;
|
||||||
|
};
|
||||||
|
|
||||||
|
if (selectedFile) {
|
||||||
|
console.log(selectedFile);
|
||||||
|
previewReader.readAsDataURL(selectedFile); // reads the data and sets the img src
|
||||||
|
document.getElementById('publish-name').value = selectedFile.name.substring(0, selectedFile.name.indexOf('.')); // updates metadata inputs
|
||||||
|
stagedFiles = [selectedFile]; // stores the selected file for upload
|
||||||
|
} else {
|
||||||
|
preview.src = '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// update the publish status
|
||||||
|
function updatePublishStatus(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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* configure the submit button */
|
||||||
|
document.getElementById('publish-submit').addEventListener('click', function(event){
|
||||||
|
event.preventDefault();
|
||||||
|
// make sure a file was selected
|
||||||
|
if (stagedFiles) {
|
||||||
|
// make sure only 1 file was selected
|
||||||
|
if (stagedFiles.length > 1) {
|
||||||
|
alert("Only one file allowed at a time");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// make sure the content type is acceptable
|
||||||
|
switch (stagedFiles[0].type) {
|
||||||
|
case "image/png":
|
||||||
|
case "image/jpeg":
|
||||||
|
case "image/gif":
|
||||||
|
case "video/mp4":
|
||||||
|
uploader.submitFiles(stagedFiles);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
alert("Only .png, .jpeg, .gif, and .mp4 files are currently supported");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
/* socketio-file-upload listeners */
|
||||||
|
uploader.addEventListener('start', function(event){
|
||||||
|
var name = document.getElementById('publish-name').value;
|
||||||
|
var license = document.getElementById('publish-license').value;
|
||||||
|
var nsfw = document.getElementById('publish-nsfw').value;
|
||||||
|
event.file.meta.name = name;
|
||||||
|
event.file.meta.license = license;
|
||||||
|
event.file.meta.nsfw = nsfw;
|
||||||
|
event.file.meta.type = stagedFiles[0].type;
|
||||||
|
// re-set the html in the publish area
|
||||||
|
document.getElementById('publish-active-area').innerHTML = '<div id="publish-status"></div><div id="progress-bar"></div>';
|
||||||
|
// start a progress animation
|
||||||
|
createProgressBar(document.getElementById('progress-bar'), 12);
|
||||||
|
});
|
||||||
|
uploader.addEventListener('progress', function(event){
|
||||||
|
var percent = event.bytesLoaded / event.file.size * 100;
|
||||||
|
updatePublishStatus('File is ' + percent.toFixed(2) + '% loaded to the server');
|
||||||
|
});
|
||||||
|
|
||||||
|
/* socket.io message listeners */
|
||||||
|
socket.on('publish-status', function(msg){
|
||||||
|
updatePublishStatus(msg);
|
||||||
|
});
|
||||||
|
socket.on('publish-failure', function(msg){
|
||||||
|
document.getElementById('publish-active-area').innerHTML = '<p>' + JSON.stringify(msg) + '</p><p> --(✖╭╮✖)→ </p><strong>For help, post the above error text in the #speech channel on the <a href="https://lbry.slack.com/" target="_blank">lbry slack</a></strong>';
|
||||||
|
});
|
||||||
|
|
||||||
|
socket.on('publish-complete', function(msg){
|
||||||
|
var publishResults;
|
||||||
|
var directUrl = '/' + msg.name + '/' + msg.result.claim_id;
|
||||||
|
// build new publish area
|
||||||
|
publishResults = '<p><span id="tweet-meme-button"></span>Your publish is complete! Go ahead, share it with the world!</p>';
|
||||||
|
publishResults += '<p>Check it out, here: <a target="_blank" href="' + directUrl + '">view it here!</a></p>';
|
||||||
|
publishResults += '<p><a target="_blank" href="https://explorer.lbry.io/#!/transaction/' + msg.result.txid + '">View the transaction details</a></p>';
|
||||||
|
publishResults += '<a href="/"><button>Reload</button></a></p>';
|
||||||
|
// update publish area
|
||||||
|
document.getElementById('publish-active-area').innerHTML = publishResults;
|
||||||
|
// add a tweet button
|
||||||
|
twttr.widgets
|
||||||
|
.createShareButton(
|
||||||
|
'https://spee.ch/' + directUrl,
|
||||||
|
document.getElementById('tweet-meme-button'),
|
||||||
|
{
|
||||||
|
text: 'Check out my image, hosted for free on the distributed awesomeness that is the LBRY blockchain!',
|
||||||
|
hashtags: 'LBRY',
|
||||||
|
via: 'lbryio'
|
||||||
|
})
|
||||||
|
.then( function( el ) {
|
||||||
|
console.log('Tweet button added.');
|
||||||
|
});
|
||||||
|
});
|
|
@ -117,15 +117,15 @@ socket.on('publish-complete', function(msg){
|
||||||
var directUrl = '/' + msg.name + '/' + msg.result.claim_id;
|
var directUrl = '/' + msg.name + '/' + msg.result.claim_id;
|
||||||
// build new publish area
|
// build new publish area
|
||||||
publishResults = '<p><span id="tweet-meme-button"></span>Your publish is complete! Go ahead, share it with the world!</p>';
|
publishResults = '<p><span id="tweet-meme-button"></span>Your publish is complete! Go ahead, share it with the world!</p>';
|
||||||
publishResults += '<p>Check it out, here: <a target="_blank" href="' + directUrl + '">spee.ch/' + directUrl + '</a>!</p>';
|
publishResults += '<p>Check it out, here: <a target="_blank" href="' + directUrl + '">view it here!</a></p>';
|
||||||
publishResults += '<p>Your Transaction ID is: <a target="_blank" href="https://explorer.lbry.io/#!/transaction?id=' + msg.result.txid + '">' + msg.result.txid + '</a></p>';
|
publishResults += '<p><a target="_blank" href="https://explorer.lbry.io/#!/transaction/' + msg.result.txid + '">View the transaction details</a></p>';
|
||||||
publishResults += '<p><a href="/meme-fodder/play">Reload to publish another</a></p>';
|
publishResults += '<a href="/"><button>Reload</button></a></p>';
|
||||||
// update publish area
|
// update publish area
|
||||||
document.getElementById('publish-active-area').innerHTML = publishResults;
|
document.getElementById('publish-active-area').innerHTML = publishResults;
|
||||||
// add a tweet button
|
// add a tweet button
|
||||||
twttr.widgets
|
twttr.widgets
|
||||||
.createShareButton(
|
.createShareButton(
|
||||||
directUrl,
|
'https://spee.ch/' + directUrl,
|
||||||
document.getElementById('tweet-meme-button'),
|
document.getElementById('tweet-meme-button'),
|
||||||
{
|
{
|
||||||
text: 'Check out my meme creation on the LBRY blockchain!',
|
text: 'Check out my meme creation on the LBRY blockchain!',
|
||||||
|
|
|
@ -14,151 +14,9 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
|
||||||
|
|
||||||
<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>
|
|
||||||
// define variables
|
|
||||||
var socket = io();
|
|
||||||
var uploader = new SocketIOFileUpload(socket);
|
|
||||||
var stagedFiles = null;
|
|
||||||
|
|
||||||
/* helper functions */
|
<script src="/assets/js/claimPublish.js"></script>
|
||||||
// create a progress animation
|
|
||||||
function createProgressBar(element, size){
|
|
||||||
var x = 1;
|
|
||||||
var adder = 1;
|
|
||||||
function addOne(){
|
|
||||||
var bars = '<p>|';
|
|
||||||
for (var i = 0; i < x; i++){ bars += ' | '; }
|
|
||||||
bars += '</p>';
|
|
||||||
element.innerHTML = bars;
|
|
||||||
if (x === size){
|
|
||||||
adder = -1;
|
|
||||||
} else if ( x === 0){
|
|
||||||
adder = 1;
|
|
||||||
}
|
|
||||||
x += adder;
|
|
||||||
};
|
|
||||||
setInterval(addOne, 300);
|
|
||||||
}
|
|
||||||
// preview file and stage the image for upload
|
|
||||||
function previewAndStageFile(selectedFile){
|
|
||||||
var preview = document.getElementById('image-preview');
|
|
||||||
var dropzone = document.getElementById('drop-zone');
|
|
||||||
var previewReader = new FileReader();
|
|
||||||
|
|
||||||
preview.style.display = 'block';
|
|
||||||
dropzone.style.display = 'none';
|
|
||||||
|
|
||||||
previewReader.onloadend = function () {
|
|
||||||
preview.src = previewReader.result;
|
|
||||||
};
|
|
||||||
|
|
||||||
if (selectedFile) {
|
|
||||||
console.log(selectedFile);
|
|
||||||
previewReader.readAsDataURL(selectedFile); // reads the data and sets the img src
|
|
||||||
document.getElementById('publish-name').value = selectedFile.name.substring(0, selectedFile.name.indexOf('.')); // updates metadata inputs
|
|
||||||
stagedFiles = [selectedFile]; // stores the selected file for upload
|
|
||||||
} else {
|
|
||||||
preview.src = '';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// update the publish status
|
|
||||||
function updatePublishStatus(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();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* configure the submit button */
|
|
||||||
document.getElementById('publish-submit').addEventListener('click', function(event){
|
|
||||||
event.preventDefault();
|
|
||||||
// make sure a file was selected
|
|
||||||
if (stagedFiles) {
|
|
||||||
// make sure only 1 file was selected
|
|
||||||
if (stagedFiles.length > 1) {
|
|
||||||
alert("Only one file allowed at a time");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// make sure the content type is acceptable
|
|
||||||
switch (stagedFiles[0].type) {
|
|
||||||
case "image/png":
|
|
||||||
case "image/jpeg":
|
|
||||||
case "image/gif":
|
|
||||||
case "video/mp4":
|
|
||||||
uploader.submitFiles(stagedFiles);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
alert("Only .png, .jpeg, .gif, and .mp4 files are currently supported");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
/* socketio-file-upload listeners */
|
|
||||||
uploader.addEventListener('start', function(event){
|
|
||||||
var name = document.getElementById('publish-name').value;
|
|
||||||
var license = document.getElementById('publish-license').value;
|
|
||||||
var nsfw = document.getElementById('publish-nsfw').value;
|
|
||||||
event.file.meta.name = name;
|
|
||||||
event.file.meta.license = license;
|
|
||||||
event.file.meta.nsfw = nsfw;
|
|
||||||
event.file.meta.type = stagedFiles[0].type;
|
|
||||||
// re-set the html in the publish area
|
|
||||||
document.getElementById('publish-active-area').innerHTML = '<div id="publish-status"></div><div id="progress-bar"></div>';
|
|
||||||
// start a progress animation
|
|
||||||
createProgressBar(document.getElementById('progress-bar'), 12);
|
|
||||||
});
|
|
||||||
uploader.addEventListener('progress', function(event){
|
|
||||||
var percent = event.bytesLoaded / event.file.size * 100;
|
|
||||||
updatePublishStatus('File is ' + percent.toFixed(2) + '% loaded to the server');
|
|
||||||
});
|
|
||||||
|
|
||||||
/* socket.io message listeners */
|
|
||||||
socket.on('publish-status', function(msg){
|
|
||||||
updatePublishStatus(msg);
|
|
||||||
});
|
|
||||||
socket.on('publish-failure', function(msg){
|
|
||||||
document.getElementById('publish-active-area').innerHTML = '<p>' + JSON.stringify(msg) + '</p><p> --(✖╭╮✖)→ </p><strong>For help, post the above error text in the #speech channel on the <a href="https://lbry.slack.com/" target="_blank">lbry slack</a></strong>';
|
|
||||||
});
|
|
||||||
socket.on('publish-complete', function(msg){
|
|
||||||
var publishResults;
|
|
||||||
var directUrl = '/' + msg.name + '/' + msg.result.claim_id;
|
|
||||||
|
|
||||||
publishResults = '<p>Your publish is complete!</p>';
|
|
||||||
publishResults += '<p>Check it out, here: <a target="_blank" href="' + directUrl + '">view it here!</a></p>';
|
|
||||||
publishResults += '<p><a target="_blank" href="https://explorer.lbry.io/#!/transaction/' + msg.result.txid + '">View the transaction details</a></p>';
|
|
||||||
publishResults += '<a href="/"><button>Reload</button></a></p>';
|
|
||||||
document.getElementById('publish-active-area').innerHTML = publishResults;
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
|
@ -1,17 +1,18 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
{{> topBar}}
|
{{> topBar}}
|
||||||
{{ image }}
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
{{> memeMaker}}
|
{{> memeFodderMaker}}
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
{{> memeResults}}
|
{{> memeFodderResults}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/assets/js/memeDraw.js"></script>
|
|
||||||
|
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
|
||||||
|
|
||||||
<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 src="/assets/js/memeDraw.js"></script>
|
||||||
<script src="/assets/js/memePublish.js"></script>
|
<script src="/assets/js/memePublish.js"></script>
|
|
@ -8,8 +8,8 @@
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<h3>Congratulations, you found the /meme-fodder game</h3>
|
<h3>Congratulations, you found the /meme-fodder game</h3>
|
||||||
<p>Here's how it's played...</p>
|
<p>Here's how it's played...</p>
|
||||||
<p>Create a meme based on the current /meme-fodder claim using the tools below. Got a masterpiece? <a href="https://twitter.com/hashtag/LBRYMemeFodder" target="_blank">Share it with the community</a> and see what they think!</p>
|
<p>Create a meme based on the current <i>lbry://meme-fodder</i> claim using the tools below. Got a masterpiece? <a href="https://twitter.com/hashtag/LBRYMemeFodder" target="_blank">Share it with the community</a> and see what they think!</p>
|
||||||
<p>Note: <i>/meme-fodder</i> will always use the public, free image at the claim <a href="lbry://meme-fodder">lbry://meme-fodder</a>. Want to put a different image on the chopping block? Go publish it!</p>
|
<p><i>Spee.ch/meme-fodder/play</i> will always use the public, free image that owns the claim <a href="lbry://meme-fodder">lbry://meme-fodder</a>. Want to put a different image on the chopping block? Go publish it!</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -48,6 +48,4 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
|
|
Loading…
Reference in a new issue