Tagged timeline improvments and visible now

This commit is contained in:
localhost_frssoft 2022-12-14 02:56:26 +03:00
parent f729e29a8d
commit e924503f2d
3 changed files with 22 additions and 3 deletions

View File

@ -162,9 +162,11 @@ func (s *service) TimelinePage(c *client, tType, instance, listId, maxID,
}
title = "The Whole Known Network"
case "tag":
statuses, err = c.GetTimelineHashtag(c.ctx, tag, false, &pg)
if err != nil {
return err
if len(tag) > 0 {
statuses, err = c.GetTimelineHashtag(c.ctx, tag, false, &pg)
if err != nil {
return err
}
}
title = "Tag timeline"
@ -203,6 +205,9 @@ func (s *service) TimelinePage(c *client, tType, instance, listId, maxID,
if len(instance) > 0 {
v.Set("instance", instance)
}
if len(tag) > 0 {
v.Set("tag", tag)
}
if len(listId) > 0 {
v.Set("list", listId)
}
@ -215,6 +220,9 @@ func (s *service) TimelinePage(c *client, tType, instance, listId, maxID,
if len(instance) > 0 {
v.Set("instance", instance)
}
if len(tag) > 0 {
v.Set("tag", tag)
}
if len(listId) > 0 {
v.Set("list", listId)
}

View File

@ -22,6 +22,7 @@
<a class="nav-link" href="/search" accesskey="6" title="Search (6)">search</a>
</div>
<div>
<a class="nav-link" href="/timeline/tag">tag</a>
<a class="nav-link" href="/lists" accesskey="7" title="Lists (7)">lists</a>
<a class="nav-link" href="/settings" target="_top" accesskey="8" title="Settings (8)">settings</a>
<form class="signout" action="/signout" method="post" target="_top">

View File

@ -14,6 +14,16 @@
<button type="submit"> Submit </button>
</form>
{{end}}
{{if eq .Type "tag"}}
<form class="search-form" action="/timeline/tag" method="GET">
<span class="post-form-field">
<label for="tag"> Tag </label>
<input id="tag" name="tag" value="">
</span>
<button type="submit"> Submit </button>
</form>
{{end}}
{{range .Statuses}}
{{template "status.tmpl" (WithContext . $.Ctx)}}