mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
8f58dd92dd
closes https://github.com/TryGhost/Ghost/issues/8536, closes https://github.com/TryGhost/Ghost/issues/8500 - Post save button will now display publish/un-publish/schedule/un-schedule/re-schedule/update - On successful save button will display published/un-published/scheduled/un-scheduled/re-scheduled/updated
42 lines
1.6 KiB
Handlebars
42 lines
1.6 KiB
Handlebars
{{#basic-dropdown verticalPosition="below" onOpen=(action "open") onClose=(action "close") as |dd|}}
|
|
{{#dd.trigger class="gh-btn gh-btn-outline gh-publishmenu-trigger"}}
|
|
<span data-test-publishmenu-trigger>{{triggerText}} {{inline-svg "arrow-down"}}</span>
|
|
{{/dd.trigger}}
|
|
|
|
{{#dd.content class="gh-publishmenu-dropdown"}}
|
|
{{#if (eq postState "published")}}
|
|
{{gh-publishmenu-published
|
|
saveType=saveType
|
|
setSaveType=(action "setSaveType")}}
|
|
|
|
{{else if (eq postState "scheduled")}}
|
|
{{gh-publishmenu-scheduled
|
|
post=post
|
|
saveType=saveType
|
|
isClosing=isClosing
|
|
setSaveType=(action "setSaveType")}}
|
|
|
|
{{else}}
|
|
{{gh-publishmenu-draft
|
|
post=post
|
|
saveType=saveType
|
|
setSaveType=(action "setSaveType")}}
|
|
{{/if}}
|
|
|
|
{{!--
|
|
save button needs to be outside of menu components so it doesn't lose state
|
|
or cancel the task when the post status updates and switches components
|
|
--}}
|
|
<footer class="gh-publishmenu-footer">
|
|
<button class="gh-btn gh-btn-outline gh-btn-link" {{action dd.actions.close}} data-test-publishmenu-cancel>
|
|
<span>Cancel</span>
|
|
</button>
|
|
{{gh-task-button buttonText
|
|
task=save
|
|
successText=successText
|
|
class="gh-btn gh-btn-blue gh-publishmenu-button gh-btn-icon"
|
|
data-test-publishmenu-save=true}}
|
|
</footer>
|
|
{{/dd.content}}
|
|
{{/basic-dropdown}}
|