2019-04-02 11:55:57 +08:00
|
|
|
<div class="admin-title">
|
2020-02-03 21:22:14 +08:00
|
|
|
{{period-chooser period=period onChange=(action (mut period))}}
|
|
|
|
{{combo-box
|
|
|
|
content=searchTypeOptions
|
|
|
|
value=searchType
|
|
|
|
class="search-logs-filter"
|
|
|
|
onChange=(action (mut searchType))
|
|
|
|
}}
|
2019-04-02 11:55:57 +08:00
|
|
|
</div>
|
2017-12-20 10:41:31 +08:00
|
|
|
|
|
|
|
<h2>
|
2020-04-14 14:18:49 +08:00
|
|
|
{{#link-to "full-page-search" (query-params q=term)}}{{term}}{{/link-to}}
|
2017-12-20 10:41:31 +08:00
|
|
|
</h2>
|
|
|
|
|
|
|
|
{{#conditional-loading-spinner condition=refreshing}}
|
2019-03-29 11:54:49 +08:00
|
|
|
{{admin-graph model=model type="bar"}}
|
2018-01-16 18:29:22 +08:00
|
|
|
|
|
|
|
<br><br>
|
|
|
|
<h2> {{i18n "admin.logs.search_logs.header_search_results"}} </h2>
|
|
|
|
<br>
|
|
|
|
|
2020-04-14 14:18:49 +08:00
|
|
|
<div class="header-search-results">
|
2020-04-13 23:17:20 +08:00
|
|
|
{{#each model.search_result.posts as |result|}}
|
2020-04-14 14:18:49 +08:00
|
|
|
<div class="fps-result">
|
|
|
|
<div class="author">
|
2020-04-13 23:17:20 +08:00
|
|
|
<a href={{result.userPath}} data-user-card={{result.username}}>
|
|
|
|
{{avatar result imageSize="large"}}
|
2018-01-16 18:29:22 +08:00
|
|
|
</a>
|
2020-04-13 23:17:20 +08:00
|
|
|
</div>
|
2018-01-16 18:29:22 +08:00
|
|
|
|
2020-04-14 14:18:49 +08:00
|
|
|
<div class="fps-topic">
|
|
|
|
<div class="topic">
|
|
|
|
<a href={{result.url}} class="search-link">
|
2020-04-15 13:41:00 +08:00
|
|
|
{{topic-status topic=result.topic disableActions=true}}<span class="topic-title">{{#highlight-search highlight=term}}{{html-safe result.topic.fancyTitle}}{{/highlight-search}}</span>
|
2020-04-13 23:17:20 +08:00
|
|
|
</a>
|
|
|
|
|
2020-04-14 14:18:49 +08:00
|
|
|
<div class="search-category">
|
2020-04-13 23:17:20 +08:00
|
|
|
{{#if result.topic.category.parentCategory}}
|
|
|
|
{{category-link result.topic.category.parentCategory}}
|
|
|
|
{{/if}}
|
|
|
|
{{category-link result.topic.category hideParent=true}}
|
|
|
|
{{#each result.topic.tags as |tag|}}
|
|
|
|
{{discourse-tag tag}}
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
2018-01-16 18:29:22 +08:00
|
|
|
</div>
|
|
|
|
|
2020-04-14 14:18:49 +08:00
|
|
|
<div class="blurb container">
|
|
|
|
<span class="date">
|
2020-04-13 23:17:20 +08:00
|
|
|
{{format-age result.created_at}}
|
|
|
|
{{#if result.blurb}}
|
|
|
|
-
|
|
|
|
{{/if}}
|
|
|
|
</span>
|
|
|
|
|
2018-01-16 18:29:22 +08:00
|
|
|
{{#if result.blurb}}
|
2020-04-15 13:41:00 +08:00
|
|
|
{{#highlight-search highlight=term}}
|
2020-04-13 23:17:20 +08:00
|
|
|
{{html-safe result.blurb}}
|
2020-04-15 13:41:00 +08:00
|
|
|
{{/highlight-search}}
|
2018-01-16 18:29:22 +08:00
|
|
|
{{/if}}
|
2020-04-13 23:17:20 +08:00
|
|
|
</div>
|
2018-01-16 18:29:22 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-13 23:17:20 +08:00
|
|
|
{{/each}}
|
2018-01-16 18:29:22 +08:00
|
|
|
</div>
|
2017-12-20 10:41:31 +08:00
|
|
|
{{/conditional-loading-spinner}}
|