Files
comfychan/web/views/board.templ
T
2025-04-24 19:14:27 -04:00

169 lines
4.7 KiB
Templ

package views
import (
"fmt"
"github.com/dominicf2001/comfychan/internal/database"
"github.com/dominicf2001/comfychan/internal/util"
"github.com/dominicf2001/comfychan/web/views/shared"
"strconv"
)
templ BoardHeader(board database.Board) {
<header class="board-header">
<img src={ fmt.Sprintf("/static/media/banners/%s.png", board.Slug) }/>
<h1>
{ fmt.Sprintf("/%s/ - %s", board.Slug, board.Name) }
</h1>
<p>{ board.Tag }</p>
</header>
}
templ Board(board database.Board, isAdmin bool) {
@shared.Layout() {
@BoardHeader(board)
<div class="new-post-container">
<button
_="on load hide #newPostForm
on click hide me then show #newPostForm"
id="newThreadBtn"
>[New Thread]</button>
@shared.NewPostForm(board, fmt.Sprintf("/%s/threads", board.Slug), true)
</div>
<hr/>
<div id="boardActionBar">
<span>Image size: </span>
<select onchange="resizeCatalogPreviewImgs()" id="selectSortBy">
<option selected value="small">Small</option>
<option value="large">Large</option>
</select>
<input style="margin-left: 10px;" oninput="applyCatalogSearch()" id="catalogSearch" placeholder="Search"/>
<a style _="on click trigger refreshPosts on body" class="link-button">[Refresh]</a>
</div>
<hr/>
<div
hx-get={ fmt.Sprintf("/hx/%s/catalog", board.Slug) }
hx-trigger="load, refreshPosts from:body"
_="on htmx:afterRequest
call resizeCatalogPreviewImgs()
then call applyCatalogSearch()"
></div>
}
}
type CatalogThreadPreview struct {
Subject string
Body string
ThreadId int
ThreadURL string
ThumbPath string
ReplyCount int
IpCount int
Pinned bool
Locked bool
}
type CatalogContext struct {
IsAdmin bool
BoardSlug string
}
templ ThreadsCatalog(previews []CatalogThreadPreview, catalogContext CatalogContext) {
<div id="catalog">
for _, preview := range previews {
{{ replyCount := strconv.FormatInt(int64(preview.ReplyCount), 10) }}
{{ ipCount := strconv.FormatInt(int64(preview.IpCount), 10) }}
{{ elThreadId := fmt.Sprintf("thread-%d", preview.ThreadId) }}
<div id={ elThreadId } class="catalog-preview">
<a href={ templ.URL(preview.ThreadURL) }>
<img
loading="lazy"
class="catalog-preview-img"
src={ fmt.Sprintf("/static/media/posts/thumb/%s",
preview.ThumbPath) }
/>
</a>
<strong class="catalog-preview-counts">
R: { replyCount } / I: { ipCount }
if catalogContext.IsAdmin {
<span
id={ fmt.Sprintf("%s-admintoggle", elThreadId) }
class="link-button"
style="font-size:10px;margin-left:5px;"
_={ fmt.Sprintf(`on click call #%s-dialog.showModal()`, elThreadId) }
>
M
</span>
}
</strong>
<h1 class="thread-title">
<span class="thread-icons">
if preview.Locked {
<img src="/static/media/icons/lock.svg" alt="Locked" class="icon"/>
}
if preview.Pinned {
<img src="/static/media/icons/pin.svg" alt="Pinned" class="icon"/>
}
</span>
<a href={ templ.URL(preview.ThreadURL) } class="catalog-preview-link">
{ preview.Subject }
</a>
</h1>
<p>
@templ.Raw(util.EnrichPost(preview.Body))
</p>
<dialog
id={ elThreadId + "-dialog" }
class="admin-dialog"
>
<h1>{ elThreadId }</h1>
<button
class="link-button"
hx-delete={ fmt.Sprintf("/admin/threads/%d", preview.ThreadId) }
hx-swap="none"
_="on htmx:afterRequest trigger refreshPosts on body"
hx-confirm="Are you sure you wish to delete this thread?"
>Delete</button>
<button
class="link-button"
hx-patch={ fmt.Sprintf("/admin/threads/%d/pin?pinned=%t", preview.ThreadId, !preview.Pinned) }
hx-swap="none"
_="on htmx:afterRequest trigger refreshPosts on body"
hx-confirm="Are you sure you wish to toggle pin this thread?"
>
if preview.Pinned {
Unpin
} else {
Pin
}
</button>
<button
class="link-button"
hx-patch={ fmt.Sprintf("/admin/threads/%d/lock?locked=%t", preview.ThreadId, !preview.Locked) }
hx-swap="none"
_="on htmx:afterRequest trigger refreshPosts on body"
hx-confirm="Are you sure you wish to toggle lock this thread?"
>
if preview.Locked {
Unlock
} else {
Lock
}
</button>
<button
class="link-button"
hx-delete={ fmt.Sprintf("/admin/threads/%d", preview.ThreadId) }
hx-swap="none"
_="on htmx:afterRequest trigger refreshPosts on body"
hx-confirm="Are you sure you wish to delete this thread?"
>Delete</button>
<button
class="admin-dialog-close-btn link-button"
_={ fmt.Sprintf("on click call #%s-dialog.close()", elThreadId) }
>Close</button>
</dialog>
</div>
}
</div>
<hr/>
}