mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 12:44:57 +03:00
b7fd0c04b6
Refs https://www.notion.so/ghost/Switch-breadcrumb-style-513a624c0e0d490ca39a2fdb97a6971a - Updated the copy to follow the common breadcrumb pattern
65 lines
2.7 KiB
Handlebars
65 lines
2.7 KiB
Handlebars
<section class="gh-canvas gh-members-activity">
|
|
<GhCanvasHeader class="gh-canvas-header">
|
|
<div class="flex flex-column">
|
|
{{#if this.userRecord}}
|
|
<div class="gh-canvas-breadcrumb">
|
|
<LinkTo @route="settings">
|
|
Settings
|
|
</LinkTo>
|
|
{{svg-jar "arrow-right-small"}}
|
|
<LinkTo @route="settings.history" @query={{reset-query-params "settings.history"}} data-test-link="history-back">
|
|
History
|
|
</LinkTo>
|
|
{{svg-jar "arrow-right-small"}} User
|
|
</div>
|
|
<h2 class="gh-canvas-title" data-test-screen-title>
|
|
{{or this.userRecord.name this.userRecord.email}}
|
|
</h2>
|
|
{{else}}
|
|
<div class="gh-canvas-breadcrumb">
|
|
<LinkTo @route="settings">
|
|
Settings
|
|
</LinkTo>
|
|
{{svg-jar "arrow-right-small"}} History
|
|
</div>
|
|
<h2 class="gh-canvas-title" data-test-screen-title>
|
|
History
|
|
</h2>
|
|
{{/if}}
|
|
</div>
|
|
<div class="view-actions">
|
|
<Settings::History::EventFilter
|
|
@excludedEvents={{this.excludedEvents}}
|
|
@excludedResources={{this.excludedResources}}
|
|
@onChange={{this.changeExcludedItems}} />
|
|
|
|
<Settings::History::Search
|
|
@selected={{this.userRecord}}
|
|
@onChange={{this.changeUser}} />
|
|
</div>
|
|
</GhCanvasHeader>
|
|
<div class="view-container">
|
|
{{#let (history-event-fetcher filter=(history-event-filter excludedEvents=this.fullExcludedEvents excludedResources=this.fullExcludedResources user=this.user) pageSize=50) as |eventsFetcher|}}
|
|
{{#if eventsFetcher.data}}
|
|
<div class="gh-list-scrolling">
|
|
<Settings::History::Table @events={{eventsFetcher.data}} />
|
|
|
|
{{#if (not (or eventsFetcher.isLoading eventsFetcher.hasReachedEnd))}}
|
|
<GhScrollTrigger @enter={{eventsFetcher.loadNextPage}} @triggerOffset={{250}} />
|
|
{{/if}}
|
|
</div>
|
|
{{else}}
|
|
{{#unless eventsFetcher.isLoading}}
|
|
<Settings::History::NoEvents @filter={{or this.user this.excludedResources}} />
|
|
{{/unless}}
|
|
{{/if}}
|
|
|
|
{{#if eventsFetcher.isLoading}}
|
|
<div class="no-posts-box"><GhLoadingSpinner /></div>
|
|
{{/if}}
|
|
{{/let}}
|
|
</div>
|
|
</section>
|
|
|
|
{{outlet}}
|