lbry.tech/.vuepress/components/Step2.vue

226 lines
7.9 KiB
Vue
Raw Normal View History

<template>
<section class="hook__page" id="step2-page">
2018-05-10 10:25:47 +02:00
<div v-images-loaded="imagesLoaded">
<header class="hook__page__hero">
<div class="inner-wrap">
<h1>Publish your content on the blockchain</h1>
<p>Upload an image to the blockchain and you are able to view it on the <a href="http://explorer.lbry.io" title="LBRY Blockchain Explorer" target="_blank">LBRY Blockchain Explorer</a>.</p>
</div>
</header>
2018-05-12 00:22:08 +02:00
<aside class="hook__page__content">
<div class="inner-wrap">
<div class="hook__page__content__meme left">
2018-05-18 11:55:50 +02:00
<img v-bind:src="backgroundImage" id="base-image" alt="" />
2018-05-12 00:22:08 +02:00
<canvas id="meme-canvas" width="400" height="300">Sorry, canvas not supported</canvas>
2018-05-18 11:55:50 +02:00
<!--
2018-05-12 00:22:08 +02:00
<div class="hook__page__content__meme__uploader">
Upload an image
<image-uploader
:quality="0.8"
:autoRotate=true
:maxWidth="400"
outputFormat="string"
:preview=false
@input="setImage"
@onComplete="imageUploaded"
></image-uploader>
</div>
2018-05-18 11:55:50 +02:00
-->
<img v-for="image in images" v-bind:src="image.src" v-on:click="chooseImage(image.src)" class="thumbnail" v-bind:class="{'selected': backgroundImage == image.src}" v-bind:alt="image.alt">
2018-05-10 10:25:47 +02:00
</div>
2018-05-12 00:22:08 +02:00
<form class="hook__page__content__meme right">
2018-05-18 11:55:50 +02:00
<h2>Image Text</h2>
2018-05-12 00:22:08 +02:00
<fieldset>
<label for="meme-top-line">Top line</label>
<input name="meme-top-line" id="meme-top-line" type="text" v-model="topLine" placeholder="Top line" required/>
</fieldset>
<fieldset>
<label for="meme-bottom-line">Bottom line</label>
<input name="meme-bottom-line" id="meme-bottom-line" type="text" v-model="bottomLine" placeholder="Bottom line" required/>
</fieldset>
2018-05-18 11:55:50 +02:00
<h2 class="metadata">Metadata</h2>
2018-05-12 00:22:08 +02:00
<fieldset>
<label for="meme-title">Title</label>
<input name="meme-title" id="meme-title" type="text" v-model="title" placeholder="Title" required/>
</fieldset>
<fieldset>
<label for="meme-description">Description</label>
2018-05-18 11:55:50 +02:00
<textarea name="meme-description" id="meme-description" type="text" v-model="description" placeholder="Description" required>{{ description}}</textarea>
2018-05-12 00:22:08 +02:00
</fieldset>
<fieldset>
<label for="meme-language">Language</label>
2018-05-18 11:55:50 +02:00
<select name="meme-language" id="meme-language" v-model="language">
<option value="EN">English</option>
<option value="FR">French</option>
<option value="ES">Spanish</option>
<option value="DE">German</option>
<option value="IT">Italian</option>
<option value="ZH">Chinese (Mandarin)</option>
<option value="AR">Arabic</option>
<option value="RU">Russian</option>
<option value="JP">Japanese</option>
<option value="">Not specified</option>
</select>
2018-05-12 00:22:08 +02:00
</fieldset>
<fieldset>
<label for="meme-license">License</label>
2018-05-18 11:55:50 +02:00
<select name="meme-license" id="meme-license" v-model="license" required>
<option value="Public Domain">Public Domain</option>
<option value="Creative Commons Attribution 4.0 International">Creative Commons Attribution 4.0 International</option>
<option value="Creative Commons Attribution-ShareAlike 4.0 International">Creative Commons Attribution-ShareAlike 4.0 International</option>
<option value="Creative Commons Attribution-NoDerivatives 4.0 International">Creative Commons Attribution-NoDerivatives 4.0 International</option>
<option value="Creative Commons Attribution-NonCommercial 4.0 International">Creative Commons Attribution-NonCommercial 4.0 International</option>
<option value="Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International</option>
<option value="Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International">Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International</option>
<option value="None">None</option>
</select>
2018-05-12 00:22:08 +02:00
</fieldset>
<fieldset>
<label><input type="checkbox" v-model="nsfw" name="nsfw"/>NSFW</label>
</fieldset>
<fieldset>
<input type="submit" class="__button-black" v-on:click="submit" value="Submit"/>
</fieldset>
2018-05-10 10:25:47 +02:00
</form>
2018-05-12 00:22:08 +02:00
<div class="xs12" v-if="isLoading">
<div class="loader"></div>
</div>
</div>
</aside>
2018-05-10 10:25:47 +02:00
</div>
</section>
</template>
<script>
import imagesLoaded from 'vue-images-loaded'
import { ImageUploader } from 'vue-image-upload-resize'
2018-04-20 15:17:16 +02:00
import EventBus from '../event-bus';
export default {
directives: {
imagesLoaded
},
components: {
ImageUploader
},
2018-05-18 11:55:50 +02:00
data () {
2018-05-18 11:55:50 +02:00
var images = [
{
src: 'https://spee.ch/4f6b953e605a602434246743fd246d3e1fd4f5fd/carlsagan2.jpeg',
alt: 'Carl Sagan'
},
{
src: 'https://spee.ch/2f90f2d91441a4d33d3d4eb82bdfc4c56ec742c7/doge-meme.jpeg',
alt: 'Doge'
},
{
src: 'https://spee.ch/40ac6818bbac87a208722bf4467653341d460908/lbry-green.png',
alt: 'LBRY Logo With Green Background'
}
];
return {
valid: false,
isLoading: false,
topLine: 'This is an example meme',
bottomLine: 'that I made',
title: '',
2018-05-18 11:55:50 +02:00
description: 'Check out this image I published to LBRY via lbry.tech',
author: '',
language: 'EN',
license: 'Public Domain',
nsfw: false,
2018-05-18 11:55:50 +02:00
images: images,
backgroundImage: images[0].src,
textFieldRules: [
v => !!v || 'Field is required'
],
}
},
methods: {
updateCanvas () {
var canvasWidth = 400;
var canvasHeight = 300;
var canvas = document.getElementById('meme-canvas');
var ctx = canvas.getContext('2d');
var img = document.getElementById('base-image');
ctx.clearRect(0, 0, canvasWidth, canvasHeight);
ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight, 0, 0, canvasWidth, canvasHeight);
ctx.lineWidth = 4;
2018-05-18 11:55:50 +02:00
ctx.font = 'bold 28px Karla';
ctx.strokeStyle = 'black';
ctx.fillStyle = 'white';
ctx.textAlign = 'center';
ctx.textBaseline = 'top';
2018-05-18 11:55:50 +02:00
ctx.lineJoin = 'round';
ctx.strokeText(this.topLine.toUpperCase(), canvasWidth / 2, 20);
ctx.fillText(this.topLine.toUpperCase(), canvasWidth / 2, 20);
ctx.strokeText(this.bottomLine.toUpperCase(), canvasWidth / 2, (canvasHeight - 40));
ctx.fillText(this.bottomLine.toUpperCase(), canvasWidth / 2, (canvasHeight - 40));
},
submit () {
// TODO: Do the upload
2018-04-27 12:30:56 +02:00
EventBus.$emit('HookFileUploaded', 'txhashhere');
},
imagesLoaded (instance) {
var component = this;
// Make sure the font is loaded
2018-05-18 11:55:50 +02:00
document.fonts.load('bold 28px Karla').then(function() {
component.updateCanvas();
});
},
2018-05-18 11:55:50 +02:00
chooseImage (src) {
var component = this;
component.backgroundImage = src;
component.updateCanvas();
},
setImage (file) {
var component = this;
document.getElementById('base-image').src = file;
// allow one second to load the image
setTimeout(component.updateCanvas, 1000);
},
imageUploaded () {
}
},
created () {
},
watch: {
topLine () {
this.updateCanvas();
},
bottomLine () {
this.updateCanvas();
}
},
name: 'Step2'
2018-05-10 10:25:47 +02:00
};
</script>