Ghost/ghost/admin/app/components/dashboard/dashboard-v5.hbs

82 lines
3.2 KiB
Handlebars
Raw Normal View History

<section {{did-insert this.onInsert}}>
{{#if this.isLoading }}
<GhLoadingSpinner />
{{else}}
{{#if this.areMembersEnabled}}
<section class="gh-dashboard5-section gh-dashboard5-anchor">
<article class="gh-dashboard5-box">
<Dashboard::V5::Charts::Anchor
@days={{this.days}}
@onDaysChange={{this.onDaysChange}}
@daysOptions={{this.daysOptions}}
@selected={{this.selectedDaysOption}}
/>
</article>
</section>
{{#if this.areNewslettersEnabled}}
<section class="gh-dashboard5-split">
<section class="gh-dashboard5-split">
<section class="gh-dashboard5-section gh-dashboard5-engagement">
<Dashboard::V5::Charts::Engagement />
</section>
<section class="gh-dashboard5-section gh-dashboard5-email">
<Dashboard::V5::Charts::Email />
</section>
</section>
<section class="gh-dashboard5-section gh-dashboard5-rate">
<Dashboard::V5::Charts::EmailOpenRate />
</section>
</section>
{{else}}
<section class="gh-dashboard5-section gh-dashboard5-engagement">
<Dashboard::V5::Charts::Engagement />
</section>
{{/if}}
{{else}}
{{#if this.areNewslettersEnabled}}
<section class="gh-dashboard5-split">
<section class="gh-dashboard5-split">
<section class="gh-dashboard5-section gh-dashboard5-engagement">
<Dashboard::V5::Charts::Engagement />
</section>
<section class="gh-dashboard5-section gh-dashboard5-email">
<Dashboard::V5::Charts::Email />
</section>
</section>
<section class="gh-dashboard5-section gh-dashboard5-rate">
<Dashboard::V5::Charts:EmailOpenRate />
</section>
</section>
{{/if}}
{{/if}}
<section class="gh-dashboard5-split">
<section class="gh-dashboard5-section gh-dashboard5-posts">
<article class="gh-dashboard5-box">
<Dashboard::V5::Charts::RecentPosts />
</article>
</section>
<section class="gh-dashboard5-section gh-dashboard5-activity">
<article class="gh-dashboard5-box">
<Dashboard::V5::Charts::RecentActivity />
</article>
</section>
</section>
<Dashboard::V5::Resources::Help />
{{!--
<Dashboard::V5::Resources::WhatsNew />
<Dashboard::V5::Resources::LatestNewsletters />
<Dashboard::V5::Resources::StaffPicks />
--}}
{{/if}}
<Dashboard::V5::Prototype::ControlPanel />
</section>