2018-08-07 00:51:32 +02:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// P A C K A G E S
|
|
|
|
|
|
|
|
const dedent = require("dedent");
|
2018-08-29 01:57:18 +02:00
|
|
|
const html = require("choo/html");
|
|
|
|
const raw = require("choo/html/raw");
|
2018-08-07 00:51:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// E X P O R T
|
|
|
|
|
2018-08-08 01:15:34 +02:00
|
|
|
module.exports = exports = () => dedent`
|
2018-08-07 00:51:32 +02:00
|
|
|
<section class="tour">
|
|
|
|
<ul class="tour__sidebar">
|
|
|
|
${raw(sidebar())}
|
|
|
|
</ul>
|
2018-08-10 00:17:47 +02:00
|
|
|
<section class="tour__content">${raw(example1())}</section>
|
2018-08-07 00:51:32 +02:00
|
|
|
</section>
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-08-08 22:20:53 +02:00
|
|
|
function sidebar() { // TODO: Save tutorial position to localStorage
|
2018-08-07 00:51:32 +02:00
|
|
|
return dedent`
|
2018-08-10 00:17:47 +02:00
|
|
|
<li class="tour__sidebar__example" data-action="tour, example 1" data-example="1">
|
2018-08-08 22:20:53 +02:00
|
|
|
<button type="button">Resolve a claim</button>
|
2018-08-07 00:51:32 +02:00
|
|
|
<span>Get details of media (aka, "claim" metadata)</span>
|
|
|
|
</li>
|
|
|
|
|
2018-08-10 00:17:47 +02:00
|
|
|
<li class="tour__sidebar__example" data-action="tour, example 2" data-example="2">
|
2018-08-08 22:20:53 +02:00
|
|
|
<button type="button">Publish content</button>
|
2018-08-07 00:51:32 +02:00
|
|
|
<span>Create a meme and upload it to the LBRY blockchain</span>
|
|
|
|
</li>
|
|
|
|
|
2018-08-10 00:17:47 +02:00
|
|
|
<li class="tour__sidebar__example" data-action="tour, example 3" data-example="3">
|
2018-08-08 22:20:53 +02:00
|
|
|
<button type="button">Support with LBC</button>
|
2018-08-07 00:51:32 +02:00
|
|
|
<span>Support creators on LBRY with a tip, on us!</span>
|
|
|
|
</li>
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
2018-08-08 01:15:34 +02:00
|
|
|
|
|
|
|
|
2018-08-10 00:17:47 +02:00
|
|
|
function example1() {
|
2018-08-07 00:51:32 +02:00
|
|
|
return html`
|
2018-08-11 00:29:06 +02:00
|
|
|
<div class="tour__content__urlbar" id="tour-url">
|
2018-08-08 22:20:53 +02:00
|
|
|
<span>lbry://</span><input id="fetch-claim-uri" placeholder=" Enter a LBRY address or select an example below" type="text"/>
|
|
|
|
<button class="button" data-action="execute claim" type="button">Resolve</button>
|
2018-08-08 01:15:34 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="tour__content__trends" id="tour-loader"></div>
|
2018-08-08 22:20:53 +02:00
|
|
|
<div id="tour-results"></div>
|
2018-08-07 00:51:32 +02:00
|
|
|
`;
|
|
|
|
}
|