Ghost/ghost/admin/app/components/gh-distribution-action-select.hbs
Naz 107ed0e1f3 Added post distribution labels to publish menu
refs https://github.com/TryGhost/Team/issues/947

- With email-only posts there's a new "send" status that deserved it's own publishing action in the post publish menu. With with addition the post ended up having few more publishing states: publish, send, and publish&send. In addition to all this there's a "schedule" option. An addition of the "send" only select option there became a need to persist the "email_only" flag when the option was changed in the publish menu. Such persistance was not done before from the publishing menu and led a whole chain of additional methods being passed down from publishmenu component all the way down to distribution-action-select component
- At this moment only a happy path work properly when selecting one of the publishing options and publishing. More states will need to be handled for scheduled, unblished, etc. states of the post
2021-08-26 23:37:51 +04:00

17 lines
589 B
Handlebars

<span class="gh-publishmenu-select">
<PowerSelect
@options={{this.availablePublishActions}}
@renderInPlace={{true}}
@selected={{this.distributionValue}}
@onChange={{this.setDistributionAction}}
@searchEnabled={{false}}
@id="publish-action"
@name="publish-action"
@triggerComponent="gh-power-select/trigger"
@triggerClass="ember-power-select-inline"
@dropdownClass="gh-publishmenu-select-dropdown"
as |availablePublishAction|
>
{{availablePublishAction.name}}
</PowerSelect>
</span>