140 lines
4.8 KiB
Vue
140 lines
4.8 KiB
Vue
<template>
|
|
<section class="hook__page" id="step3-page">
|
|
|
|
<header class="hook__page__hero">
|
|
<div class="inner-wrap">
|
|
<h1>Support your favorite content creators with LBRY</h1>
|
|
<p>Send LBRY coins to claim addresses and the owner will receive it in their wallet.</p>
|
|
<p>To send LBC to someone, you need either their wallet address or claim ID. You can get claim IDs by using the resolve method in <a href="#" v-on:click.prevent.stop="goTo(1)">the first step</a>, or you can use the examples below.</p>
|
|
|
|
<div class="hook__page__hero__support">
|
|
<input type="text" v-model="claimId" placeholder="Claim ID goes here"/>
|
|
<input type="number" v-model="amount" disabled title="You can set this value to any amount of LBC in your wallet, but for demonstration purposes we have hardcoded it to 0.01"><span>LBC</span>
|
|
<a href="#" v-on:click="send" class="button">Execute</a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="xs12" v-if="exampleCode != ''">
|
|
<pre v-highlightjs="exampleCode"><code class="bash"></code></pre>
|
|
</div>
|
|
|
|
<div class="xs12" v-if="isLoading">
|
|
<div class="loader"></div>
|
|
</div>
|
|
|
|
<div class="xs12" v-if="jsonData">
|
|
<p>Success! Here is the response:</p>
|
|
<pre v-highlightjs="jsonData" class="json-example"><code class="json"></code></pre>
|
|
</div>
|
|
|
|
<template v-if="!isLoading && !jsonData">
|
|
<aside class="hook__page__content">
|
|
<div class="inner-wrap">
|
|
<p style="text-align: center;">Click on below claims to support them!</p>
|
|
|
|
<div class="hook__page__content__card">
|
|
<img src="https://spee.ch/0654f2e2322ccfefa02a956d252df9ac7611d8b0/placeholder-itsadisaster.jpeg" v-on:click="chooseClaim('fbdcd44a97810522d23d5f1335b8ca04be9d776c')">
|
|
|
|
<div v-on:click="chooseClaim('fbdcd44a97810522d23d5f1335b8ca04be9d776c')">
|
|
<h4>It's a Disaster</h4>
|
|
<p class="account">Anonymous</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="hook__page__content__card">
|
|
<img src="https://spee.ch/b1bd330e048fc22dc7bf941c33dd8245eef492c1/unbubbled.png" v-on:click="chooseClaim('de7f7fa33e8d879b2bae7238d2bdf827a39f9301')">
|
|
|
|
<div v-on:click="chooseClaim('de7f7fa33e8d879b2bae7238d2bdf827a39f9301')">
|
|
<h4>Unbubbled with Jamie King, Ep1.1 — Bitcoin, Boom or Bust</h4>
|
|
<p class="account">@Unbubbled</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="hook__page__content__card">
|
|
<img src="https://spee.ch/9880947df41af880bc19724ceddd1cce957a07e2/placeholder-fortninte.jpeg" v-on:click="chooseClaim('5b7c7a202201033d99e1be2930d290c127c0f4fe')">
|
|
|
|
<div v-on:click="chooseClaim('5b7c7a202201033d99e1be2930d290c127c0f4fe')">
|
|
<h4>FORTNITE TOP STREAM MOMENTS — Nickatnyte & GamingwithMolt</h4>
|
|
<p class="account">@nickatnyte</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="hook__page__content__card">
|
|
<img src="https://spee.ch/a3b8258478ad88954f42f6ac3427eab380720f60/placeholder-lbrymine.png" v-on:click="chooseClaim('a1372cf5523885f5923237bfe522f02f5f054362')">
|
|
|
|
<div v-on:click="chooseClaim('a1372cf5523885f5923237bfe522f02f5f054362')">
|
|
<h4>LBRY Coin (LBC) GPU Miner for AMD and NVIDIA</h4>
|
|
<p class="account">Anonymous</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
</template>
|
|
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import EventBus from '../event-bus';
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
claimId: '',
|
|
amount: 0.01,
|
|
exampleCode: '',
|
|
isLoading: false,
|
|
jsonData: ''
|
|
}
|
|
},
|
|
methods: {
|
|
send () {
|
|
var component = this;
|
|
component.jsonData = '';
|
|
component.isLoading = true;
|
|
component.exampleCode = '# Example code using the daemon\ncurl \'http://localhost:5279\' --data \'{"method":"wallet_send","params":{"claim_id":"' + this.address + '","amount":' + this.amount + '}}\'';
|
|
this.$http.get('//beta.lbry.tech/forward?method=wallet_send&claim_id=' + this.address + '&amount=' + this.amount).then(function(response) {
|
|
component.isLoading = false;
|
|
component.jsonData = JSON.stringify(response.body, null, ' ');
|
|
});
|
|
},
|
|
chooseClaim (address) {
|
|
var component = this;
|
|
component.address = address;
|
|
component.send();
|
|
},
|
|
goTo (page) {
|
|
EventBus.$emit('HookStepUpdate', page);
|
|
}
|
|
},
|
|
name: 'Step3'
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
@import '../scss/variables';
|
|
|
|
#step3-page {
|
|
.card {
|
|
.card__title {
|
|
height: 9rem;
|
|
h4 {
|
|
text-align: left;
|
|
font-size: 1rem;
|
|
}
|
|
.account {
|
|
color: $primary-color;
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
.btn {
|
|
background-color: $primary-color;
|
|
border-color: $primary-color;
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
</style>
|