Ghost/ghost/admin/app/components/gh-editor-post-status.hbs
Kevin Ansfield dd7985a2fd Fixed tests
refs 1cfa0ae58e

- `- Saved` indicator was not correctly behind labs flag
2021-07-07 11:53:06 +01:00

33 lines
1.3 KiB
Handlebars

<div data-test-editor-post-status ...attributes>
{{#if this.isSaving}}
Saving...
{{else if (or @post.isPublished @post.pastScheduledTime)}}
Published
{{#if (or (eq @post.email.status "submitting") (eq @post.email.status "submitting"))}}
and sending to {{gh-pluralize @post.email.emailCount "member"}}
{{else if (eq @post.email.status "submitted")}}
and sent to {{gh-pluralize @post.email.emailCount "member"}}
{{/if}}
{{#if (feature "savedIndicator")}}
{{if (not @hasDirtyAttributes) "- Saved"}}
{{/if}}
{{else if @post.isScheduled}}
<time datetime="{{@post.publishedAtUTC}}" class="ml1 green f8" data-test-schedule-countdown>
Will be published
{{#if @post.emailRecipientFilter}}
and sent to <GhRecipientFilterCount @filter={{@post.emailRecipientFilter}} />
{{/if}}
{{this.scheduledTime}}
</time>
{{#if (feature "savedIndicator")}}
{{if (not @hasDirtyAttributes) "- Saved"}}
{{/if}}
{{else if @post.isNew}}
New
{{else}}
Draft
{{#if (feature "savedIndicator")}}
{{if (not @hasDirtyAttributes) "- Saved"}}
{{/if}}
{{/if}}
</div>