bookshelf-doc/DocGen4/LeanInk/Output.lean

216 lines
6.3 KiB
Plaintext
Raw Normal View History

/-
Copyright (c) 2022 Henrik Böving. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Authors: Henrik Böving, Xubai Wang
-/
import DocGen4.Output.Base
import DocGen4.Output.ToHtmlFormat
import Lean.Data.Json
import LeanInk.Annotation.Alectryon
namespace LeanInk.Annotation.Alectryon
open DocGen4 Output
open scoped DocGen4.Jsx
2022-06-20 16:39:55 +00:00
structure AlectryonContext where
counter : Nat
2022-07-26 10:52:41 +00:00
abbrev AlectryonT := StateT AlectryonContext
abbrev AlectryonM := AlectryonT HtmlM
2022-06-20 16:39:55 +00:00
def getNextButtonLabel : AlectryonM String := do
let val ← get
let newCounter := val.counter + 1
set { val with counter := newCounter }
return s!"plain-lean4-lean-chk{val.counter}"
2022-06-20 16:39:55 +00:00
2022-06-20 17:21:50 +00:00
def TypeInfo.toHtml (tyi : TypeInfo) : AlectryonM Html := do
pure
<div class="alectryon-type-info-wrapper">
<small class="alectryon-type-info">
<div class="alectryon-goals">
<blockquote class="alectryon-goal">
<div class="goal-hyps">
<span class="hyp-type">
<var>{tyi.name}</var>
<b>: </b>
<span>[← DocGen4.Output.infoFormatToHtml tyi.type.fst]</span>
</span>
</div>
</blockquote>
</div>
</small>
</div>
2022-06-20 16:39:55 +00:00
def Token.processSemantic (t : Token) : Html :=
match t.semanticType with
| some "Name.Attribute" => <span class="na">{t.raw}</span>
| some "Name.Variable" => <span class="nv">{t.raw}</span>
| some "Keyword" => <span class="k">{t.raw}</span>
| _ => Html.text t.raw
2022-06-20 16:39:55 +00:00
def Token.toHtml (t : Token) : AlectryonM Html := do
2022-06-20 17:21:50 +00:00
-- Right now t.link is always none from LeanInk, ignore it
-- TODO: render docstring
let mut parts := #[]
if let some tyi := t.typeinfo then
parts := parts.push <| ← tyi.toHtml
2022-06-20 16:39:55 +00:00
parts := parts.push t.processSemantic
2022-06-20 17:21:50 +00:00
pure
-- TODO: Show rest of token
<span class="alectryon-token">
2022-06-20 17:21:50 +00:00
[parts]
</span>
2022-06-20 17:21:50 +00:00
def Contents.toHtml : Contents → AlectryonM Html
| .string value =>
pure
<span class="alectryon-wsp">
{value}
</span>
2022-06-20 17:21:50 +00:00
| .experimentalTokens values => do
let values ← values.mapM Token.toHtml
pure
<span class="alectryon-wsp">
[values]
</span>
2022-06-20 16:39:55 +00:00
def Hypothesis.toHtml (h : Hypothesis) : AlectryonM Html := do
let mut hypParts := #[<var>[h.names.intersperse ", " |>.map Html.text |>.toArray]</var>]
2022-07-26 13:12:29 +00:00
if h.body.snd != "" then
2022-06-20 16:39:55 +00:00
hypParts := hypParts.push
<span class="hyp-body">
<b>:= </b>
<span>[← infoFormatToHtml h.body.fst]</span>
</span>
2022-06-20 16:39:55 +00:00
hypParts := hypParts.push
<span class="hyp-type">
<b>: </b>
<span >[← infoFormatToHtml h.type.fst]</span>
</span>
2022-06-20 16:39:55 +00:00
pure
<span>
[hypParts]
</span>
2022-06-20 16:39:55 +00:00
def Goal.toHtml (g : Goal) : AlectryonM Html := do
let mut hypotheses := #[]
for hyp in g.hypotheses do
let rendered ← hyp.toHtml
hypotheses := hypotheses.push rendered
hypotheses := hypotheses.push <br/>
2022-07-26 13:12:29 +00:00
let conclusionHtml ←
match g.conclusion with
| .typed info _ => infoFormatToHtml info
| .untyped str => pure #[Html.text str]
2022-07-26 13:12:29 +00:00
2022-06-20 16:39:55 +00:00
pure
<blockquote class="alectryon-goal">
<div class="goal-hyps">
[hypotheses]
</div>
2022-06-20 16:39:55 +00:00
<span class="goal-separator">
<hr><span class="goal-name">{g.name}</span></hr>
</span>
2022-06-20 16:39:55 +00:00
<div class="goal-conclusion">
2022-07-26 13:12:29 +00:00
[conclusionHtml]
</div>
</blockquote>
2022-06-20 16:39:55 +00:00
def Message.toHtml (m : Message) : AlectryonM Html := do
pure
<blockquote class="alectryon-message">
-- TODO: This might have to be done in a fancier way
{m.contents}
</blockquote>
2022-06-20 16:39:55 +00:00
def Sentence.toHtml (s : Sentence) : AlectryonM Html := do
let messages :=
if s.messages.size > 0 then
#[
<div class="alectryon-messages">
[← s.messages.mapM Message.toHtml]
</div>
2022-06-20 16:39:55 +00:00
]
else
#[]
let goals :=
if s.goals.size > 0 then
-- TODO: Alectryon has a "alectryon-extra-goals" here, implement it
#[
<div class="alectryon-goals">
[← s.goals.mapM Goal.toHtml]
</div>
2022-06-20 16:39:55 +00:00
]
else
#[]
let buttonLabel ← getNextButtonLabel
pure
<span class="alectryon-sentence">
<input class="alectryon-toggle" id={buttonLabel} style="display: none" type="checkbox"/>
<label class="alectryon-input" for={buttonLabel}>
{← s.contents.toHtml}
</label>
2022-06-20 16:39:55 +00:00
<small class="alectryon-output">
[messages]
[goals]
</small>
</span>
2022-06-20 16:39:55 +00:00
2022-06-20 17:21:50 +00:00
def Text.toHtml (t : Text) : AlectryonM Html := t.contents.toHtml
2022-06-20 16:39:55 +00:00
def Fragment.toHtml : Fragment → AlectryonM Html
| .text value => value.toHtml
| .sentence value => value.toHtml
def baseHtml (content : Array Html) : AlectryonM Html := do
let banner :=
<div «class»="alectryon-banner">
Built with <a href="https://github.com/leanprover/doc-gen4">doc-gen4</a>, running Lean4.
Bubbles (<span class="alectryon-bubble"></span>) indicate interactive fragments: hover for details, tap to reveal contents.
Use <kbd>Ctrl+↑</kbd> <kbd>Ctrl+↓</kbd> to navigate, <kbd>Ctrl+🖱️</kbd> to focus.
On Mac, use <kbd>Cmd</kbd> instead of <kbd>Ctrl</kbd>.
2022-06-20 16:39:55 +00:00
</div>
pure
<html lang="en" class="alectryon-standalone">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href={s!"{← getRoot}src/alectryon.css"}/>
<link rel="stylesheet" href={s!"{← getRoot}src/pygments.css"}/>
<link rel="stylesheet" href={s!"{← getRoot}src/docutils_basic.css"}/>
<link rel="shortcut icon" href={s!"{← getRoot}favicon.ico"}/>
2022-06-20 16:39:55 +00:00
<script defer="true" src={s!"{← getRoot}src/alectryon.js"}></script>
2022-06-20 16:39:55 +00:00
</head>
<body>
<article class="alectryon-root alectryon-centered">
{banner}
<pre class="alectryon-io highlight">
[content]
</pre>
</article>
</body>
</html>
2022-07-26 10:52:41 +00:00
def annotationsToFragments (as : List Annotation.Annotation) : AnalysisM (List Fragment) := do
let config ← read
annotateFileWithCompounds [] config.inputFileContents as
2022-07-26 10:52:41 +00:00
-- TODO: rework monad mess
def renderAnnotations (as : List Annotation.Annotation) : HtmlT AnalysisM Html := do
let fs ← annotationsToFragments as
let (html, _) ← fs.mapM Fragment.toHtml >>= (baseHtml ∘ List.toArray) |>.run { counter := 0 }
return html
2022-07-26 10:52:41 +00:00
end LeanInk.Annotation.Alectryon