nitter/src/views/general.nim
2019-08-07 22:02:19 +02:00

59 lines
1.8 KiB
Nim

import karax/[karaxdsl, vdom]
import ../utils
const doctype = "<!DOCTYPE html>\n"
proc renderMain*(body: VNode; title="Nitter"; titleText=""; desc="";
`type`="article"; video=""; images: seq[string] = @[]): string =
let node = buildHtml(html(lang="en")):
head:
link(rel="stylesheet", `type`="text/css", href="/style.css")
title:
if titleText.len > 0:
text titleText & " | " & title
else:
text title
meta(name="og:type", content=`type`)
meta(name="og:title", content=titleText)
meta(name="og:description", content=desc)
meta(name="og:site_name", content="Twitter")
for url in images:
meta(name="og:image", content=getSigUrl(url, "pic"))
if video.len > 0:
meta(name="og:video:url", content=video)
meta(name="og:video:secure_url", content=video)
meta(name="og:video:type", content="text/html")
meta(name="og:video:width", content="1200")
meta(name="og:video:height", content="675")
body:
nav(id="nav", class="nav-bar container"):
tdiv(class="inner-nav"):
tdiv(class="item"):
a(href="/", class="site-name"): text title
tdiv(id="content", class="container"):
body
result = doctype & $node
proc renderSearch*(): VNode =
buildHtml(tdiv(class="panel")):
tdiv(class="search-panel"):
form(`method`="post", action="search"):
input(`type`="text", name="query", placeholder="Enter usernames...")
button(`type`="submit"): text "🔎"
proc renderError*(error: string): VNode =
buildHtml(tdiv(class="panel")):
tdiv(class="error-panel"):
span: text error
proc showError*(error: string; title: string): string =
renderMain(renderError(error), title=title, titleText="Error")