2018-07-03 11:14:53 +08:00
|
|
|
<div class="admin-title">
|
2022-06-30 18:30:50 +08:00
|
|
|
<PeriodChooser @period={{period}} @onChange={{action (mut period)}} />
|
|
|
|
<ComboBox @content={{searchTypeOptions}} @value={{searchType}} @class="search-logs-filter" @onChange={{action (mut searchType)}} />
|
2018-07-03 11:14:53 +08:00
|
|
|
</div>
|
2017-11-15 08:13:50 +08:00
|
|
|
|
2022-06-30 18:30:50 +08:00
|
|
|
<ConditionalLoadingSpinner @condition={{loading}}>
|
2017-11-15 08:13:50 +08:00
|
|
|
{{#if model.length}}
|
|
|
|
|
2018-07-03 11:14:53 +08:00
|
|
|
<table class="search-logs-list grid">
|
|
|
|
<thead>
|
|
|
|
<th class="col heading term">{{i18n "admin.logs.search_logs.term"}}</th>
|
|
|
|
<th class="col heading">{{i18n "admin.logs.search_logs.searches"}}</th>
|
2018-12-18 21:43:46 +08:00
|
|
|
<th class="col heading">{{i18n "admin.logs.search_logs.click_through_rate"}}</th>
|
2018-07-03 11:14:53 +08:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2017-11-15 08:13:50 +08:00
|
|
|
{{#each model as |item|}}
|
2018-07-03 11:14:53 +08:00
|
|
|
<tr class="admin-list-item">
|
|
|
|
<td class="col term">
|
2022-06-30 18:30:50 +08:00
|
|
|
<LinkTo @route="adminSearchLogs.term" @query={{hash term=item.term period=period}} class="test">
|
2019-03-29 10:39:44 +08:00
|
|
|
{{item.term}}
|
2022-06-30 18:30:50 +08:00
|
|
|
</LinkTo>
|
2018-07-03 11:14:53 +08:00
|
|
|
</td>
|
|
|
|
<td class="col"><div class="label">{{i18n "admin.logs.search_logs.searches"}}</div>{{item.searches}}</td>
|
2018-12-18 21:43:46 +08:00
|
|
|
<td class="col"><div class="label">{{i18n "admin.logs.search_logs.click_through_rate"}}</div>{{item.ctr}}%</td>
|
2018-07-03 11:14:53 +08:00
|
|
|
</tr>
|
2017-11-15 08:13:50 +08:00
|
|
|
{{/each}}
|
2018-07-03 11:14:53 +08:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2017-11-15 08:13:50 +08:00
|
|
|
|
|
|
|
{{else}}
|
|
|
|
{{i18n "search.no_results"}}
|
|
|
|
{{/if}}
|
2022-06-30 18:30:50 +08:00
|
|
|
</ConditionalLoadingSpinner>
|