"use strict"; // I M P O R T import html from "choo/html"; // U T I L import config from "@root/config"; // E X P O R T export default pagePath => { let githubUrl = `https://github.com/${config.github.repo}/edit/${config.github.branch}`; switch(pagePath) { case "": githubUrl = `${githubUrl}/app/views/home.js`; break; case "/api": githubUrl = `${githubUrl}/app/views/api.js`; break; case "/api/blockchain": githubUrl = "https://github.com/lbryio/lbrycrd/blob/add_api_docs_scripts/contrib/devtools/generated/api_v1.json"; break; case "/api/sdk": githubUrl = "https://github.com/lbryio/lbry/blob/master/docs/api.json"; break; default: githubUrl = `${githubUrl}/documents${pagePath}.md`; break; } return html` ${config.github.linkText} `; };