2023-05-28 01:34:18 +00:00
|
|
|
<div class="ui attached segment reactions" data-action-url="{{$.ActionURL}}">
|
2017-12-03 23:14:26 +00:00
|
|
|
{{range $key, $value := .Reactions}}
|
2023-05-28 01:34:18 +00:00
|
|
|
{{$hasReacted := $value.HasUser $.ctxData.SignedUserID}}
|
|
|
|
<a role="button" class="ui label basic{{if $hasReacted}} primary{{end}}{{if not $.ctxData.IsSigned}} disabled{{end}} comment-reaction-button"
|
2024-01-15 01:42:59 +00:00
|
|
|
data-tooltip-content
|
|
|
|
title="{{$value.GetFirstUsers}}{{if gt ($value.GetMoreUserCount) 0}} {{ctx.Locale.Tr "repo.reactions_more" $value.GetMoreUserCount}}{{end}}"
|
|
|
|
aria-label="{{$value.GetFirstUsers}}{{if gt ($value.GetMoreUserCount) 0}} {{ctx.Locale.Tr "repo.reactions_more" $value.GetMoreUserCount}}{{end}}"
|
2023-05-28 01:34:18 +00:00
|
|
|
data-tooltip-placement="bottom-start"
|
|
|
|
data-reaction-content="{{$key}}" data-has-reacted="{{$hasReacted}}">
|
2020-04-28 18:05:39 +00:00
|
|
|
<span class="reaction">{{ReactionToEmoji $key}}</span>
|
|
|
|
<span class="reaction-count">{{len $value}}</span>
|
2017-12-03 23:14:26 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2019-12-27 23:43:56 +00:00
|
|
|
{{if AllowedReactions}}
|
2023-04-07 14:39:08 +00:00
|
|
|
{{template "repo/issue/view_content/add_reaction" dict "ctxData" $.ctxData "ActionURL" .ActionURL}}
|
2019-12-01 22:57:24 +00:00
|
|
|
{{end}}
|
2023-05-28 01:34:18 +00:00
|
|
|
</div>
|