discourse/app/assets/javascripts/admin/addon/templates/user-badges.hbs
David Taylor d5c7b9f8df
FIX: Badge granting recursion error (#20750)
Moving the `grantBadge` action out of the actions hash caused it to clash with a method of the same name from the GrantBadgeController mixin. This commit renames the action.
2023-03-20 21:07:21 +00:00

99 lines
3.1 KiB
Handlebars

<div class="admin-controls">
<nav>
<ul class="nav nav-pills">
<li><LinkTo @route="adminUser" @model={{this.user}}>{{d-icon
"caret-left"
}}
&nbsp;{{this.user.username}}</LinkTo></li>
</ul>
</nav>
</div>
<ConditionalLoadingSpinner @condition={{this.loading}}>
<div class="admin-container user-badges">
<h2>{{i18n "admin.badges.grant_badge"}}</h2>
<br />
{{#if this.noGrantableBadges}}
<p>{{i18n "admin.badges.no_badges"}}</p>
{{else}}
<form class="form-horizontal">
<div class="control-group">
<label>{{i18n "admin.badges.badge"}}</label>
<ComboBox
@value={{this.selectedBadgeId}}
@content={{this.grantableBadges}}
@onChange={{action (mut this.selectedBadgeId)}}
@options={{hash filterable=true}}
/>
</div>
<div class="control-group">
<label>{{i18n "admin.badges.reason"}}</label>
<Input @type="text" @value={{this.badgeReason}} /><br /><small>{{i18n
"admin.badges.reason_help"
}}</small>
</div>
<DButton
@class="btn-primary"
@action={{this.performGrantBadge}}
@type="submit"
@label="admin.badges.grant"
/>
</form>
{{/if}}
<table id="user-badges">
<tbody>
<tr>
<th>{{i18n "admin.badges.badge"}}</th>
<th>{{i18n "admin.badges.granted_by"}}</th>
<th class="reason">{{i18n "admin.badges.reason"}}</th>
<th>{{i18n "admin.badges.granted_at"}}</th>
<th></th>
</tr>
{{#each this.groupedBadges as |userBadge|}}
<tr>
<td><UserBadge
@badge={{userBadge.badge}}
@count={{userBadge.count}}
/></td>
<td>
<LinkTo @route="adminUser" @model={{userBadge.badge.granted_by}}>
{{avatar userBadge.granted_by imageSize="tiny"}}
{{userBadge.granted_by.username}}
</LinkTo>
</td>
<td class="reason">
{{#if userBadge.postUrl}}
<a href={{userBadge.postUrl}}>{{userBadge.topic_title}}</a>
{{/if}}
</td>
<td>{{age-with-tooltip userBadge.granted_at}}</td>
<td>
{{#if userBadge.grouped}}
<DButton
@action={{action "expandGroup" userBadge}}
@label="admin.badges.expand"
/>
{{else}}
<DButton
@class="btn-danger"
@action={{action "revokeBadge" userBadge}}
@label="admin.badges.revoke"
/>
{{/if}}
</td>
</tr>
{{else}}
<tr>
<td colspan="5">
<p>{{i18n
"admin.badges.no_user_badges"
name=this.user.username
}}</p>
</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</ConditionalLoadingSpinner>