this repo has no description
1{{ define "user/fragments/follow" }}
2 <button
3 id="followBtn"
4 class="btn mt-2 w-full flex gap-2 items-center group"
5 {{ if eq .FollowStatus.String "IsNotFollowing" }}
6 hx-post="/follow?subject={{ .UserDid }}"
7 {{ else }}
8 hx-delete="/follow?subject={{ .UserDid }}"
9 {{ end }}
10
11 hx-trigger="click"
12 hx-target="#followBtn"
13 hx-swap="outerHTML">
14 {{ if eq .FollowStatus.String "IsNotFollowing" }}
15 Follow
16 {{ else }}
17 Unfollow
18 {{ end }}
19 {{ i "loader-circle" "w-4 h-4 animate-spin hidden group-[.htmx-request]:inline" }}
20 </button>
21{{ end }}