2019-12-13 17:20:29 +03:00
|
|
|
<header class="gh-publishmenu-heading">Ready to publish your {{this.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">
|
2019-12-13 17:20:29 +03:00
|
|
|
<div class="gh-publishmenu-radio {{if (eq this.saveType "publish") "active"}}" {{action "setSaveType" "publish" on="click"}}>
|
2019-11-08 07:46:38 +03:00
|
|
|
<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>
|
2019-12-13 17:20:29 +03:00
|
|
|
<div class="gh-publishmenu-radio-desc">Publish this {{this.post.displayName}} immediately</div>
|
2019-11-08 07:46:38 +03:00
|
|
|
</div>
|
2017-04-11 16:39:45 +03:00
|
|
|
</div>
|
2019-12-13 17:20:29 +03:00
|
|
|
<div class="gh-publishmenu-radio {{if (eq this.saveType "schedule") "active"}}" {{action "setSaveType" "schedule" on="click"}}>
|
2019-11-08 07:46:38 +03:00
|
|
|
<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>
|
2020-01-16 18:14:03 +03:00
|
|
|
<GhDateTimePicker
|
|
|
|
@date={{this.post.publishedAtBlogDate}}
|
|
|
|
@time={{this.post.publishedAtBlogTime}}
|
|
|
|
@setDate={{action "setDate"}}
|
|
|
|
@setTime={{action "setTime"}}
|
|
|
|
@setTypedDateError={{this.setTypedDateError}}
|
|
|
|
@errors={{this.post.errors}}
|
|
|
|
@dateErrorProperty="publishedAtBlogDate"
|
|
|
|
@timeErrorProperty="publishedAtBlogTime"
|
|
|
|
@minDate={{this._minDate}}
|
|
|
|
@isActive={{eq this.saveType "schedule"}}
|
|
|
|
/>
|
2019-11-08 07:46:38 +03:00
|
|
|
<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}}
|
2019-12-13 17:20:29 +03:00
|
|
|
<div class="gh-publishmenu-email-label {{if this.disableEmailOption "pe-none"}}">
|
2019-11-26 15:20:49 +03:00
|
|
|
<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>
|
2019-12-13 17:20:29 +03:00
|
|
|
<div class="for-switch small {{if this.disableEmailOption "pe-none"}}">
|
2019-11-26 15:20:49 +03:00
|
|
|
<div class="switch container" for="email-when-published-checkbox">
|
|
|
|
<Input
|
|
|
|
@checked={{this.sendEmailWhenPublished}}
|
|
|
|
@type="checkbox"
|
|
|
|
@id="email-when-published-checkbox"
|
|
|
|
@name="email-when-published"
|
2019-12-13 17:20:29 +03:00
|
|
|
@disabled={{this.disableEmailOption}}
|
2019-11-26 15:20:49 +03:00
|
|
|
/>
|
|
|
|
<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
|
|
|
|