1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-01-19 07:02:51 +00:00
mycorrhiza/views/nav.qtpl.go
Timur Ismagilov f54cfe44ff Drop the hypha tabs
TODO:
* Make the hotkeys work again
* Compensate the lack of the tabs on other pages
2021-08-09 00:19:55 +05:00

265 lines
6.4 KiB
Go

// Code generated by qtc from "nav.qtpl". DO NOT EDIT.
// See https://github.com/valyala/quicktemplate for details.
//line views/nav.qtpl:1
package views
//line views/nav.qtpl:1
import "net/http"
//line views/nav.qtpl:2
import "strings"
//line views/nav.qtpl:3
import "github.com/bouncepaw/mycorrhiza/user"
//line views/nav.qtpl:4
import "github.com/bouncepaw/mycorrhiza/hyphae"
//line views/nav.qtpl:6
import (
qtio422016 "io"
qt422016 "github.com/valyala/quicktemplate"
)
//line views/nav.qtpl:6
var (
_ = qtio422016.Copy
_ = qt422016.AcquireByteBuffer
)
//line views/nav.qtpl:6
func streamhyphaInfoEntry(qw422016 *qt422016.Writer, h *hyphae.Hypha, u *user.User, action, displayText string) {
//line views/nav.qtpl:6
qw422016.N().S(`
`)
//line views/nav.qtpl:7
if u.CanProceed(action) {
//line views/nav.qtpl:7
qw422016.N().S(`
<li class="hypha-info__entry hypha-info__entry_`)
//line views/nav.qtpl:8
qw422016.E().S(action)
//line views/nav.qtpl:8
qw422016.N().S(`">
<a class="hypha-info__link" href="/`)
//line views/nav.qtpl:9
qw422016.E().S(action)
//line views/nav.qtpl:9
qw422016.N().S(`/`)
//line views/nav.qtpl:9
qw422016.E().S(h.Name)
//line views/nav.qtpl:9
qw422016.N().S(`">`)
//line views/nav.qtpl:9
qw422016.E().S(displayText)
//line views/nav.qtpl:9
qw422016.N().S(`</a>
</li>
`)
//line views/nav.qtpl:11
}
//line views/nav.qtpl:11
qw422016.N().S(`
`)
//line views/nav.qtpl:12
}
//line views/nav.qtpl:12
func writehyphaInfoEntry(qq422016 qtio422016.Writer, h *hyphae.Hypha, u *user.User, action, displayText string) {
//line views/nav.qtpl:12
qw422016 := qt422016.AcquireWriter(qq422016)
//line views/nav.qtpl:12
streamhyphaInfoEntry(qw422016, h, u, action, displayText)
//line views/nav.qtpl:12
qt422016.ReleaseWriter(qw422016)
//line views/nav.qtpl:12
}
//line views/nav.qtpl:12
func hyphaInfoEntry(h *hyphae.Hypha, u *user.User, action, displayText string) string {
//line views/nav.qtpl:12
qb422016 := qt422016.AcquireByteBuffer()
//line views/nav.qtpl:12
writehyphaInfoEntry(qb422016, h, u, action, displayText)
//line views/nav.qtpl:12
qs422016 := string(qb422016.B)
//line views/nav.qtpl:12
qt422016.ReleaseByteBuffer(qb422016)
//line views/nav.qtpl:12
return qs422016
//line views/nav.qtpl:12
}
//line views/nav.qtpl:14
func streamhyphaInfo(qw422016 *qt422016.Writer, rq *http.Request, h *hyphae.Hypha) {
//line views/nav.qtpl:14
qw422016.N().S(`
`)
//line views/nav.qtpl:16
u := user.FromRequest(rq)
//line views/nav.qtpl:17
qw422016.N().S(`
<nav class="hypha-info">
<ul class="hypha-info__list">
`)
//line views/nav.qtpl:20
if h.HasAttachment() {
//line views/nav.qtpl:20
streamhyphaInfoEntry(qw422016, h, u, "attachment", "manage the attachment")
//line views/nav.qtpl:20
}
//line views/nav.qtpl:20
qw422016.N().S(`
`)
//line views/nav.qtpl:21
streamhyphaInfoEntry(qw422016, h, u, "history", "view history")
//line views/nav.qtpl:21
qw422016.N().S(`
`)
//line views/nav.qtpl:22
streamhyphaInfoEntry(qw422016, h, u, "rename-ask", "rename")
//line views/nav.qtpl:22
qw422016.N().S(`
`)
//line views/nav.qtpl:23
streamhyphaInfoEntry(qw422016, h, u, "delete-ask", "delete")
//line views/nav.qtpl:23
qw422016.N().S(`
`)
//line views/nav.qtpl:24
streamhyphaInfoEntry(qw422016, h, u, "text", "view markup")
//line views/nav.qtpl:24
qw422016.N().S(`
</ul>
</nav>
`)
//line views/nav.qtpl:27
}
//line views/nav.qtpl:27
func writehyphaInfo(qq422016 qtio422016.Writer, rq *http.Request, h *hyphae.Hypha) {
//line views/nav.qtpl:27
qw422016 := qt422016.AcquireWriter(qq422016)
//line views/nav.qtpl:27
streamhyphaInfo(qw422016, rq, h)
//line views/nav.qtpl:27
qt422016.ReleaseWriter(qw422016)
//line views/nav.qtpl:27
}
//line views/nav.qtpl:27
func hyphaInfo(rq *http.Request, h *hyphae.Hypha) string {
//line views/nav.qtpl:27
qb422016 := qt422016.AcquireByteBuffer()
//line views/nav.qtpl:27
writehyphaInfo(qb422016, rq, h)
//line views/nav.qtpl:27
qs422016 := string(qb422016.B)
//line views/nav.qtpl:27
qt422016.ReleaseByteBuffer(qb422016)
//line views/nav.qtpl:27
return qs422016
//line views/nav.qtpl:27
}
//line views/nav.qtpl:29
func streamsiblingHyphaeHTML(qw422016 *qt422016.Writer, siblings string) {
//line views/nav.qtpl:29
qw422016.N().S(`
<aside class="sibling-hyphae layout-card">
<h2 class="sibling-hyphae__title layout-card__title">Sibling hyphae</h2>
`)
//line views/nav.qtpl:32
qw422016.N().S(siblings)
//line views/nav.qtpl:32
qw422016.N().S(`
</aside>
`)
//line views/nav.qtpl:34
}
//line views/nav.qtpl:34
func writesiblingHyphaeHTML(qq422016 qtio422016.Writer, siblings string) {
//line views/nav.qtpl:34
qw422016 := qt422016.AcquireWriter(qq422016)
//line views/nav.qtpl:34
streamsiblingHyphaeHTML(qw422016, siblings)
//line views/nav.qtpl:34
qt422016.ReleaseWriter(qw422016)
//line views/nav.qtpl:34
}
//line views/nav.qtpl:34
func siblingHyphaeHTML(siblings string) string {
//line views/nav.qtpl:34
qb422016 := qt422016.AcquireByteBuffer()
//line views/nav.qtpl:34
writesiblingHyphaeHTML(qb422016, siblings)
//line views/nav.qtpl:34
qs422016 := string(qb422016.B)
//line views/nav.qtpl:34
qt422016.ReleaseByteBuffer(qb422016)
//line views/nav.qtpl:34
return qs422016
//line views/nav.qtpl:34
}
//line views/nav.qtpl:36
func StreamSubhyphaeHTML(qw422016 *qt422016.Writer, subhyphae string) {
//line views/nav.qtpl:36
qw422016.N().S(`
`)
//line views/nav.qtpl:37
if strings.TrimSpace(subhyphae) != "" {
//line views/nav.qtpl:37
qw422016.N().S(`
<section class="subhyphae">
<h2 class="subhyphae__title">Subhyphae</h2>
<nav class="subhyphae__nav">
<ul class="subhyphae__list">
`)
//line views/nav.qtpl:42
qw422016.N().S(subhyphae)
//line views/nav.qtpl:42
qw422016.N().S(`
</ul>
</nav>
</section>
`)
//line views/nav.qtpl:46
}
//line views/nav.qtpl:46
qw422016.N().S(`
`)
//line views/nav.qtpl:47
}
//line views/nav.qtpl:47
func WriteSubhyphaeHTML(qq422016 qtio422016.Writer, subhyphae string) {
//line views/nav.qtpl:47
qw422016 := qt422016.AcquireWriter(qq422016)
//line views/nav.qtpl:47
StreamSubhyphaeHTML(qw422016, subhyphae)
//line views/nav.qtpl:47
qt422016.ReleaseWriter(qw422016)
//line views/nav.qtpl:47
}
//line views/nav.qtpl:47
func SubhyphaeHTML(subhyphae string) string {
//line views/nav.qtpl:47
qb422016 := qt422016.AcquireByteBuffer()
//line views/nav.qtpl:47
WriteSubhyphaeHTML(qb422016, subhyphae)
//line views/nav.qtpl:47
qs422016 := string(qb422016.B)
//line views/nav.qtpl:47
qt422016.ReleaseByteBuffer(qb422016)
//line views/nav.qtpl:47
return qs422016
//line views/nav.qtpl:47
}