fix: use json.Marshal for hx-vals in watchlist templates
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
package watchlist
|
||||
|
||||
import "fmt"
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"mal/web/shared"
|
||||
)
|
||||
|
||||
templ CardButton(
|
||||
animeID int,
|
||||
@@ -17,7 +21,14 @@ templ CardButton(
|
||||
hx-delete={ string(templ.URL(fmt.Sprintf("/api/watchlist/%d?from=card", animeID))) }
|
||||
} else {
|
||||
hx-post="/api/watchlist/card"
|
||||
hx-vals={ fmt.Sprintf(`{"anime_id": "%d", "anime_title": "%s", "anime_title_english": "%s", "anime_title_japanese": "%s", "anime_image": "%s", "airing": "%v"}`, animeID, title, titleEnglish, titleJapanese, imageURL, airing) }
|
||||
hx-vals={ shared.HxVals(map[string]interface{}{
|
||||
"anime_id": animeID,
|
||||
"anime_title": title,
|
||||
"anime_title_english": titleEnglish,
|
||||
"anime_title_japanese": titleJapanese,
|
||||
"anime_image": imageURL,
|
||||
"airing": airing,
|
||||
}) }
|
||||
}
|
||||
hx-target="this"
|
||||
hx-swap="outerHTML"
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
package watchlist
|
||||
|
||||
import "fmt"
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"mal/web/shared"
|
||||
)
|
||||
|
||||
templ WatchlistDropdown(
|
||||
animeID int,
|
||||
@@ -13,11 +17,11 @@ templ WatchlistDropdown(
|
||||
) {
|
||||
<div class="relative inline-block" id="watchlist-dropdown">
|
||||
<button
|
||||
type="button"
|
||||
class="inline-flex h-8 cursor-pointer items-center gap-2 bg-(--panel-soft) px-2 text-xs text-(--text)"
|
||||
onclick="toggleDropdown()"
|
||||
data-dropdown-trigger
|
||||
>
|
||||
type="button"
|
||||
if currentStatus != "" {
|
||||
{ formatStatus(currentStatus) }
|
||||
} else {
|
||||
@@ -38,11 +42,11 @@ templ WatchlistDropdown(
|
||||
@StatusOption(animeID, animeTitle, animeTitleEnglish, animeTitleJapanese, animeImage, "plan_to_watch", currentStatus, airing)
|
||||
if currentStatus != "" {
|
||||
<button
|
||||
type="button"
|
||||
class="flex w-full cursor-pointer items-center justify-between bg-transparent px-2.5 py-2 text-left text-xs text-(--text-muted) hover:bg-(--panel-soft) hover:text-(--danger)"
|
||||
hx-delete={ string(templ.URL(fmt.Sprintf("/api/watchlist/%d", animeID))) }
|
||||
hx-target="#watchlist-dropdown"
|
||||
hx-swap="outerHTML swap:150ms"
|
||||
type="button"
|
||||
>
|
||||
Remove from list
|
||||
</button>
|
||||
@@ -67,7 +71,15 @@ templ StatusOption(
|
||||
templ.KV("bg-(--panel-soft) text-(--text)", status == currentStatus),
|
||||
}
|
||||
hx-post="/api/watchlist"
|
||||
hx-vals={ fmt.Sprintf(`{"anime_id": "%d", "anime_title": "%s", "anime_title_english": "%s", "anime_title_japanese": "%s", "anime_image": "%s", "status": "%s", "airing": "%v"}`, animeID, animeTitle, animeTitleEnglish, animeTitleJapanese, animeImage, status, airing) }
|
||||
hx-vals={ shared.HxVals(map[string]interface{}{
|
||||
"anime_id": animeID,
|
||||
"anime_title": animeTitle,
|
||||
"anime_title_english": animeTitleEnglish,
|
||||
"anime_title_japanese": animeTitleJapanese,
|
||||
"anime_image": animeImage,
|
||||
"status": status,
|
||||
"airing": airing,
|
||||
}) }
|
||||
hx-target="#watchlist-dropdown"
|
||||
hx-swap="outerHTML swap:150ms"
|
||||
>
|
||||
|
||||
11
web/shared/hx_vals.go
Normal file
11
web/shared/hx_vals.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package shared
|
||||
|
||||
import "encoding/json"
|
||||
|
||||
func HxVals(v map[string]interface{}) string {
|
||||
b, err := json.Marshal(v)
|
||||
if err != nil {
|
||||
return "{}"
|
||||
}
|
||||
return string(b)
|
||||
}
|
||||
Reference in New Issue
Block a user