discourse/app/assets/javascripts/admin/addon/templates/logs/screened-emails.hbs
Martin Brennan e26a1175d7
FEATURE: Initial version of experimental admin search (#31299)
This feature allows admins to find what they are
looking for in the admin interface via a search modal.
This replaces the admin sidebar filter
as the focus of the Ctrl+/ command, but the sidebar
filter can also still be used. Perhaps at some point
we may remove it or change the shortcut.

The search modal presents the following data for filtering:

* A list of all admin pages, the same as the sidebar,
   except also showing "third level" pages like
   "Email > Skipped"
* All site settings
* Themes
* Components
* Reports

Admins can also filter which types of items are shown in the modal,
for example hiding Settings if they know they are looking for a Page.

In this PR, I also have the following fixes:

* Site setting filters now clear when moving between
   filtered site setting pages, previously it was super
   sticky from Ember
* Many translations were moved around, instead of being
   in various namespaces for the sidebar links and the admin
   page titles and descriptions, now everything is under
   `admin.config` namespace, this makes it way easier to reuse
   this text for pages, search, and sidebar, and if you change it
   in one place then it is changed everywhere.

---------

Co-authored-by: Ella <ella.estigoy@gmail.com>
2025-02-21 11:59:24 +10:00

65 lines
No EOL
2.2 KiB
Handlebars
Vendored

<DPageSubheader
@descriptionLabel={{i18n
"admin.config.staff_action_logs.sub_pages.screened_emails.header_description"
}}
/>
<DButton
@action={{this.exportScreenedEmailList}}
@title="admin.export_csv.button_title.screened_email"
@icon="download"
@label="admin.export_csv.button_text"
class="btn-default screened-email-export"
/>
<br />
<ConditionalLoadingSpinner @condition={{this.loading}}>
{{#if this.model.length}}
<table class="screened-emails grid">
<thead>
<th class="first email">{{i18n "admin.logs.screened_emails.email"}}</th>
<th class="action">{{i18n "admin.logs.action"}}</th>
<th class="match_count">{{i18n "admin.logs.match_count"}}</th>
<th class="last_match_at">{{i18n "admin.logs.last_match_at"}}</th>
<th class="created_at">{{i18n "admin.logs.created_at"}}</th>
<th class="ip_address">{{i18n "admin.logs.ip_address"}}</th>
<th class="action"></th>
</thead>
<tbody>
{{#each this.model as |item|}}
<tr class="admin-list-item">
<td class="col first email">
<div
class="overflow-ellipsis"
title={{item.email}}
>{{item.email}}</div>
</td>
<td class="action">{{item.actionName}}</td>
<td class="match_count"><div class="label">{{i18n
"admin.logs.match_count"
}}</div>{{item.match_count}}</td>
<td class="last_match_at"><div class="label">{{i18n
"admin.logs.last_match_at"
}}</div>{{age-with-tooltip item.last_match_at}}</td>
<td class="created_at"><div class="label">{{i18n
"admin.logs.created_at"
}}</div>{{age-with-tooltip item.created_at}}</td>
<td class="ip_address">{{item.ip_address}}</td>
<td class="action">
<DButton
@action={{fn this.clearBlock item}}
@icon="check"
@label="admin.logs.screened_emails.actions.allow"
/>
</td>
</tr>
{{/each}}
</tbody>
</table>
{{else}}
{{i18n "search.no_results"}}
{{/if}}
</ConditionalLoadingSpinner>