discourse/app/assets/javascripts/admin/addon/templates/user-badges.hbs
Amanda Alves Branquinho 71a8d48d21
DEV: add outlet wrapper for small user list (#29763)
* DEV: add outlet wrapper for small user list

* DEV: use value transformer to extend small user attrs function

* Update app/assets/javascripts/discourse/app/components/small-user-list.gjs

Co-authored-by: Jarek Radosz <jradosz@gmail.com>

---------

Co-authored-by: Jarek Radosz <jradosz@gmail.com>
2024-11-20 19:22:02 -03:00

116 lines
3.6 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.noAvailableBadges}}
<p>{{i18n "admin.badges.no_badges"}}</p>
{{else}}
<PluginOutlet
@name="badge-granter-form"
@outletArgs={{hash
availableBadges=this.availableBadges
userBadges=this.userBadges
user=this.user
}}
>
<form class="form-horizontal">
<div class="control-group">
<label>{{i18n "admin.badges.badge"}}</label>
<ComboBox
@value={{this.selectedBadgeId}}
@content={{this.availableBadges}}
@onChange={{fn (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
@action={{this.performGrantBadge}}
@label="admin.badges.grant"
type="submit"
class="btn-primary"
/>
</form>
</PluginOutlet>
{{/if}}
<PluginOutlet
@name="badge-granter-table"
@outletArgs={{hash
groupedBadges=this.groupedBadges
revokeBadge=this.revokeBadge
expandGroup=this.expandGroup
}}
>
<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.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={{fn this.expandGroup userBadge}}
@label="admin.badges.expand"
/>
{{else}}
<DButton
@action={{fn this.revokeBadge userBadge}}
@label="admin.badges.revoke"
class="btn-danger"
/>
{{/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>
</PluginOutlet>
</div>
</ConditionalLoadingSpinner>