hide actions for preview until work out something better
Ted Unangst tedu@tedunangst.com
Fri, 11 Oct 2019 16:36:20 -0400
3 files changed,
5 insertions(+),
2 deletions(-)
M
views/honk.html
→
views/honk.html
@@ -1,5 +1,6 @@
<article class="honk {{ .Honk.Style }}" data-convoy="{{ .Honk.Convoy }}"> {{ $bonkcsrf := .BonkCSRF }} +{{ $IsPreview := .IsPreview }} {{ with .Honk }} <header> {{ if $bonkcsrf }}@@ -82,7 +83,7 @@ {{ end }}
{{ end }} </details> {{ end }} -{{ if $bonkcsrf }} +{{ if and $bonkcsrf (not $IsPreview) }} <p> <details class="actions"> <summary>Actions
M
views/honkpage.html
→
views/honkpage.html
@@ -18,8 +18,9 @@ {{ end }}
<div id="honksonpage"> <div> {{ $BonkCSRF := .HonkCSRF }} +{{ $IsPreview := .IsPreview }} {{ range .Honks }} -{{ template "honk.html" map "Honk" . "BonkCSRF" $BonkCSRF }} +{{ template "honk.html" map "Honk" . "BonkCSRF" $BonkCSRF "IsPreview" $IsPreview }} {{ end }} </div> </div>
M
web.go
→
web.go
@@ -1194,6 +1194,7 @@ templinfo["Honks"] = honks
templinfo["InReplyTo"] = r.FormValue("rid") templinfo["Noise"] = r.FormValue("noise") templinfo["SavedFile"] = donkxid + templinfo["IsPreview"] = true templinfo["ServerMessage"] = "honk preview" err := readviews.Execute(w, "honkpage.html", templinfo) if err != nil {