/* global $, send */ "use strict"; initializeTour(); if (window.location.href.search && window.location.href.split("?url=")[1]) { // pre-fill example one if search parameter exists const searchParameter = window.location.href.split("?url=")[1]; fetchMetadata(1, searchParameter); } $("body").on("click", "[data-action]", event => { event.preventDefault(); let exampleNumber; const data = event.currentTarget.dataset; if (!parseInt($(".tour__sidebar__example.active")[0].dataset.example)) return; exampleNumber = parseInt($(".tour__sidebar__example.active")[0].dataset.example); switch(data.action) { case "choose claim": fetchMetadata(exampleNumber, data.claimId); break; case "execute claim": if (!$("#fetch-claim-uri").val()) return; fetchMetadata(exampleNumber, $("#fetch-claim-uri").val()); break; case "tour, example 1": if ($("#tour-loader").hasClass("tour__content__meme")) { $("#tour-loader").removeClass("tour__content__meme").addClass("tour__content__trends"); } if ($("#tour-url")[0].style.display === "none") $("#tour-url").show(); $(".tour__sidebar__example").removeClass("active"); $(".tour__sidebar__example:nth-child(1)").addClass("active"); $("#tour-loader").html(""); $("#tour-results").html(""); send(JSON.stringify({ "message": `request for ${data.action}` })); break; case "tour, example 2": if ($("#tour-loader").hasClass("tour__content__trends")) { $("#tour-loader").removeClass("tour__content__trends").addClass("tour__content__meme"); } $("#tour-url").hide(); $(".tour__sidebar__example").removeClass("active"); $(".tour__sidebar__example:nth-child(2)").addClass("active"); $("#tour-loader").html(""); $("#tour-results").html(""); send(JSON.stringify({ "message": `request for ${data.action}` })); break; case "tour, example 3": if ($("#tour-loader").hasClass("tour__content__meme")) { $("#tour-loader").removeClass("tour__content__meme").addClass("tour__content__trends"); } if ($("#tour-url")[0].style.display === "none") $("#tour-url").show(); $(".tour__sidebar__example").removeClass("active"); $(".tour__sidebar__example:nth-child(3)").addClass("active"); $("#tour-loader").html(""); $("#tour-results").html(""); send(JSON.stringify({ "message": `request for ${data.action}` })); break; case "upload image": fetchMetadata(exampleNumber, getMemeInfo()); break; default: break; } }); $("body").on("click", ".tour__content__meme__canvas__thumbnail", event => { $(".tour__content__meme__canvas__thumbnail").removeClass("selected"); event.currentTarget.className += " selected"; updateCanvas(event.currentTarget); }); $("#fetch-claim-uri").on("keyup", function (e) { const key = e.keyCode ? e.keyCode : e.which; if (key === 13 && $("#fetch-claim-uri").val()) fetchMetadata(1, $("#fetch-claim-uri").val()); }); $("body").on("keyup", "#meme-top-line, #meme-bottom-line", () => updateCanvas()); // H E L P E R S function detectLanguageAndUpdate() { // eslint-disable-line const compare = (array1, array2) => array2.filter(value => array2.indexOf(value)); // compare two arrays and get match(es) const memeLocaleObject = $("#meme-language").children(); const memeLocales = []; const userLocales = []; for (const language of navigator.languages) userLocales.push(language); for (const key in memeLocaleObject) { if (memeLocaleObject[key] && memeLocaleObject[key].value) memeLocales.push(memeLocaleObject[key].value); } if ( memeLocales.length && userLocales.length && compare(memeLocales, userLocales).length ) $("#meme-language").children(`option[value="${compare(memeLocales, userLocales)[0]}"]`).attr("selected", true); } function initializeTour() { $("#fetch-claim-uri").val("").focus(); // reset $(".tour__sidebar__example:nth-child(1)").addClass("active"); send(JSON.stringify({ "message": "landed on tour" })); /* TODO: - Account for someone wanting to make multiple resolves */ } function fetchMetadata(exampleNumber, data) { if (!exampleNumber) return; switch(exampleNumber) { case 1: send(JSON.stringify({ "claim": data, "message": "fetch metadata", "method": "resolve", "example": exampleNumber })); $("#fetch-claim-uri").val(data); $("#tour-results").html(`
# With the LBRY daemon running locally, you can use this in your Terminal
curl --header "Content-Type: application/json" --data '{ "method": "resolve", "params": { "uri": "${data}" }}' http://localhost:5279
`);
$("#tour-loader").hide();
break;
case 2:
send(JSON.stringify({
"data": data,
"message": "fetch metadata",
"method": "publish",
"example": exampleNumber
}));
break;
case 3:
send(JSON.stringify({
"claim": data,
"message": "fetch metadata",
"method": "wallet_send",
"example": exampleNumber
}));
$("#fetch-claim-uri").val(data);
$("#tour-results").html(`
# If you have the LBRY desktop app, you can run this in your Terminal
curl "http://localhost:5279" --data "{ 'method': 'wallet_send', 'params': { 'claim_id': '${data}', 'amount': '0.01' } }"
`);
$("#tour-loader").hide();
break;
default:
break;
}
}
function getMemeInfo() { // TODO: Error handling
const info = {
description: $("#meme-description").val(),
file_path: $("#meme-canvas")[0].toDataURL("image/jpeg", 0.6),
language: $("#meme-language").val(),
license: $("#meme-license").val(),
name: $("#meme-title").val(),
nsfw: $("#meme-nsfw-flag")[0].checked,
title: $("#meme-title").val()
};
/*
info.description = $("#meme-description").val();
info.file_path = $("#meme-canvas")[0].toDataURL("image/jpeg", 0.6);
info.language = $("#meme-language").val();
info.license = $("#meme-license").val();
info.name = $("#meme-title").val();
info.nsfw = $("#meme-nsfw-flag")[0].checked;
info.title = $("#meme-title").val();
*/
return info;
}
function clearCanvas(canvas) {
const ctx = canvas.getContext("2d");
ctx.save();
ctx.globalCompositeOperation = "copy";
ctx.strokeStyle = "transparent";
ctx.beginPath();
ctx.lineTo(0, 0);
ctx.stroke();
ctx.restore();
}
function initCanvas() { // eslint-disable-line
const canvas = document.getElementById("meme-canvas");
const canvasWidth = 400;
const canvasHeight = 300;
const ctx = canvas.getContext("2d");
const img = document.getElementById("base-image");
clearCanvas(canvas);
ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight, 0, 0, canvasWidth, canvasHeight);
ctx.fillStyle = "white";
ctx.font = "bold 28px Karla";
ctx.lineJoin = "round";
ctx.lineWidth = 4;
ctx.strokeStyle = "black";
ctx.textAlign = "center";
ctx.textBaseline = "top";
ctx.strokeText($("#meme-top-line").val().toUpperCase(), canvasWidth / 2, 20);
ctx.strokeText($("#meme-bottom-line").val().toUpperCase(), canvasWidth / 2, (canvasHeight - 40));
ctx.fillText($("#meme-top-line").val().toUpperCase(), canvasWidth / 2, 20);
ctx.fillText($("#meme-bottom-line").val().toUpperCase(), canvasWidth / 2, (canvasHeight - 40));
}
function updateCanvas(imageSource) {
const canvas = document.getElementById("meme-canvas");
const canvasWidth = 400;
const canvasHeight = 300;
const ctx = canvas.getContext("2d");
const img = document.getElementById("base-image");
clearCanvas(canvas);
if (imageSource) {
ctx.drawImage(imageSource, 0, 0, canvasWidth, canvasHeight, 0, 0, canvasWidth, canvasHeight);
img.src = imageSource.src;
} ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight, 0, 0, canvasWidth, canvasHeight);
ctx.strokeText($("#meme-top-line").val().toUpperCase(), canvasWidth / 2, 20);
ctx.strokeText($("#meme-bottom-line").val().toUpperCase(), canvasWidth / 2, (canvasHeight - 40));
ctx.fillText($("#meme-top-line").val().toUpperCase(), canvasWidth / 2, 20);
ctx.fillText($("#meme-bottom-line").val().toUpperCase(), canvasWidth / 2, (canvasHeight - 40));
}