2019-04-06 11:01:49 +03:00
|
|
|
<header class="gh-publishmenu-heading">Ready to publish your {{post.displayName}}?</header>
|
2017-04-11 16:39:45 +03:00
|
|
|
<section class="gh-publishmenu-content">
|
2019-11-08 07:46:38 +03:00
|
|
|
<div class="gh-publishmenu-section">
|
|
|
|
<div class="gh-publishmenu-radio {{if (eq saveType "publish") "active"}}" {{action "setSaveType" "publish" on="click"}}>
|
|
|
|
<div class="gh-publishmenu-radio-button" data-test-publishmenu-published-option></div>
|
|
|
|
<div class="gh-publishmenu-radio-content">
|
|
|
|
<div class="gh-publishmenu-radio-label">Set it live now</div>
|
|
|
|
<div class="gh-publishmenu-radio-desc">Publish this {{post.displayName}} immediately</div>
|
|
|
|
</div>
|
2017-04-11 16:39:45 +03:00
|
|
|
</div>
|
2019-11-08 07:46:38 +03:00
|
|
|
<div class="gh-publishmenu-radio {{if (eq saveType "schedule") "active"}}" {{action "setSaveType" "schedule" on="click"}}>
|
|
|
|
<div class="gh-publishmenu-radio-button" data-test-publishmenu-scheduled-option></div>
|
|
|
|
<div class="gh-publishmenu-radio-content">
|
|
|
|
<div class="gh-publishmenu-radio-label">Schedule it for later</div>
|
|
|
|
{{gh-date-time-picker
|
|
|
|
date=post.publishedAtBlogDate
|
|
|
|
time=post.publishedAtBlogTime
|
|
|
|
setDate=(action "setDate")
|
|
|
|
setTime=(action "setTime")
|
|
|
|
errors=post.errors
|
|
|
|
dateErrorProperty="publishedAtBlogDate"
|
|
|
|
timeErrorProperty="publishedAtBlogTime"
|
|
|
|
minDate=_minDate
|
|
|
|
}}
|
|
|
|
<div class="gh-publishmenu-radio-desc">Set automatic future publish date</div>
|
|
|
|
</div>
|
2017-04-11 16:39:45 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-11-07 11:37:26 +03:00
|
|
|
|
2019-11-26 15:20:49 +03:00
|
|
|
{{#if (and this.canSendEmail this.session.user.isOwnerOrAdmin)}}
|
|
|
|
<div class="gh-publishmenu-section">
|
|
|
|
<div class="gh-publishmenu-radio gh-publishmenu-email">
|
|
|
|
{{#if this.backgroundLoader.isRunning}}
|
|
|
|
<div class="gh-loading-spinner" style="zoom: 50%"></div>
|
|
|
|
{{else}}
|
|
|
|
<div class="gh-publishmenu-email-label {{if disableEmailOption "pe-none"}}">
|
|
|
|
<label class="gh-publishmenu-radio-label {{unless this.memberCount "midgrey"}}" for="email-when-published-checkbox">Send by email</label>
|
|
|
|
{{#if this.memberCount}}
|
|
|
|
<div class="gh-publishmenu-radio-desc">Deliver post to members</div>
|
|
|
|
{{else}}
|
|
|
|
<div class="gh-publishmenu-radio-desc">You haven't got any members</div>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
<div class="for-switch small {{if disableEmailOption "pe-none"}}">
|
|
|
|
<div class="switch container" for="email-when-published-checkbox">
|
|
|
|
<Input
|
|
|
|
@checked={{this.sendEmailWhenPublished}}
|
|
|
|
@type="checkbox"
|
|
|
|
@id="email-when-published-checkbox"
|
|
|
|
@name="email-when-published"
|
|
|
|
@disabled={{disableEmailOption}}
|
|
|
|
/>
|
|
|
|
<span class="input-toggle-component gh-publishmenu-email-checkbox"
|
|
|
|
{{on "click" (toggle "sendEmailWhenPublished" this)}}></span>
|
|
|
|
</div>
|
2019-11-08 07:46:38 +03:00
|
|
|
</div>
|
2019-11-26 15:20:49 +03:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
2019-11-04 08:41:38 +03:00
|
|
|
</div>
|
2019-11-04 09:38:30 +03:00
|
|
|
{{/if}}
|
2017-04-11 16:39:45 +03:00
|
|
|
</section>
|
2019-11-04 12:13:18 +03:00
|
|
|
|