mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
fa224988e5
refs https://github.com/TryGhost/Team/issues/1277 - changed breadcrumb for activity - added back in three columns for activity when not filtered - made adjustments to visual look and feel
43 lines
2.1 KiB
Handlebars
43 lines
2.1 KiB
Handlebars
{{#if this.activities}}<h4 class="gh-main-section-header small bn">Activity</h4>{{/if}}
|
|
<div class="gh-main-section-content bordered {{if this.activities "" "mt8"}}">
|
|
<div class="gh-member-feed" ...attributes>
|
|
<div class="flex-auto flex flex-column items-stretch {{if this.activities "justify-between" "h-100 justify-center"}}">
|
|
<div>
|
|
{{#if this.activities}}
|
|
{{#each this.firstActivities as |activity|}}
|
|
<GhMemberActivityFeedItem @activity={{activity}} />
|
|
{{/each}}
|
|
|
|
{{#liquid-if this.isShowingAll class="show-overflow"}}
|
|
{{#each this.remainingActivities as |activity|}}
|
|
<GhMemberActivityFeedItem @activity={{activity}} />
|
|
{{/each}}
|
|
{{/liquid-if}}
|
|
|
|
{{#if (feature "membersActivityFeed")}}
|
|
<LinkTo class="gh-btn gh-member-btn-expandfeed" @route="members-activity" @query={{hash excludedEvents=null member=@member.id}}><span>View all activity</span></LinkTo>
|
|
{{else}}
|
|
{{#if (and this.remainingActivities (not this.isShowingAll))}}
|
|
<button
|
|
type="button"
|
|
class="gh-btn gh-member-btn-expandfeed"
|
|
data-test-button="view-all-activity"
|
|
{{on "click" this.showAll}}
|
|
>
|
|
<span>View all activity</span>
|
|
</button>
|
|
{{/if}}
|
|
{{/if}}
|
|
{{else}}
|
|
<div class="gh-members-no-data gh-members-no-list">
|
|
<div class="lightgrey">{{svg-jar "no-data-list"}}</div>
|
|
<h4>Activity</h4>
|
|
<p>
|
|
All events related to this member will be shown here.
|
|
</p>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |