mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
e4891e3462
refs: https://github.com/TryGhost/Team/issues/1507 - changed the layout over to use css grids instead of the random flex and divs - cleaned up the based dashboard-v5 file so its rendering much cleaner components - refactored and took out a ton of old css that wasn't needed anymore - moved the dashboard-v5 css into it's own css file to keep things cleaner - includes a few stylistic changes along the way
54 lines
2.9 KiB
Handlebars
54 lines
2.9 KiB
Handlebars
<section class="gh-dashboard5-section gh-dashboard5-recent-activity">
|
|
<article class="gh-dashboard5-box">
|
|
<div class="gh-dashboard5-list" data-test-dashboard-member-activity>
|
|
<div class="gh-dashboard5-list-header">
|
|
<div class="gh-dashboard5-list-title">Recent activity</div>
|
|
</div>
|
|
|
|
<div class="gh-dashboard5-list-body">
|
|
{{#let (members-event-fetcher filter=(members-event-filter excludeEmailEvents=true) pageSize=5) as |eventsFetcher|}}
|
|
{{#if eventsFetcher.isError}}
|
|
<div class="gh-dashboard5-list-error">
|
|
<p>There was an error loading events</p>
|
|
{{#if eventsFetcher.errorMessage}}
|
|
<code>{{eventsFetcher.errorMessage}}</code>
|
|
{{/if}}
|
|
</div>
|
|
{{/if}}
|
|
{{#if eventsFetcher.isLoading}}
|
|
<div class="gh-dashboard5-list-loading">
|
|
<p>Loading...</p>
|
|
</div>
|
|
{{else}}
|
|
{{#if eventsFetcher.data}}
|
|
{{#each eventsFetcher.data as |event|}}
|
|
{{#let (parse-member-event event) as |parsedEvent|}}
|
|
<div class="gh-dashboard5-list-item" data-test-dashboard-member-activity-item>
|
|
<LinkTo class="member-details" @route="member" @model="{{parsedEvent.memberId}}">
|
|
<GhMemberAvatar @member={{parsedEvent.member}} @containerClass="w8 h8 mr3 flex-shrink-0" />
|
|
{{parsedEvent.subject}}
|
|
<span>
|
|
{{parsedEvent.action}}
|
|
{{parsedEvent.object}}
|
|
{{parsedEvent.info}}
|
|
</span>
|
|
</LinkTo>
|
|
<span class="gh-dashboard-activity-time">{{moment-from-now parsedEvent.timestamp}}</span>
|
|
</div>
|
|
{{/let}}
|
|
{{/each}}
|
|
{{else}}
|
|
<div class="gh-dashboard5-list-empty" data-test-no-member-activities>
|
|
<p>No activity yet.</p>
|
|
</div>
|
|
{{/if}}
|
|
{{/if}}
|
|
{{/let}}
|
|
</div>
|
|
<div class="gh-dashboard5-list-footer">
|
|
<LinkTo @route="members-activity" @query={{reset-query-params "members-activity"}}>See all activity →</LinkTo>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
</section>
|