Ghost/ghost/admin/app/components/editor/modals/publish-flow.hbs
Kevin Ansfield 3f0e46c7b0 Added initial tests for new publish flow
refs https://github.com/TryGhost/Team/issues/1586

- added test helper for enabling/disabling members and helpers for disabling mailgun and newsletters
- added `loginAsRole` helper that alleviates duplication of user+role creation and also handles log-out before log-in so it's easier to mix different role tests within a block that has a default role setup in `beforeEach()`
- cleaned up editor tests that were skipped due to using the old publish flow
- added `Publish flow` acceptance test suite with an initial batch of tests
2022-05-30 19:12:16 +01:00

62 lines
2.5 KiB
Handlebars

<div class="flex flex-column h-100 items-center overflow-auto" data-test-modal="publish-flow">
<header class="gh-publish-header">
<button class="gh-btn-editor gh-publish-back-button" title="Close" type="button" {{on "click" @close}} data-test-button="close-publish-flow">
<span>{{svg-jar "arrow-left"}} Editor</span>
</button>
{{#if (and (not this.emailErrorMessage) (not this.isComplete))}}
<div class="flex items-center pe-auto h-100">
<button
type="button"
class="gh-btn gh-btn-editor gh-editor-preview-trigger"
{{on "click" @data.togglePreviewPublish}}
data-test-button="publish-flow-preview"
>
<span>Preview</span>
</button>
<button
type="button"
class="gh-btn gh-btn-editor darkgrey gh-publish-trigger active"
title="Close"
{{on "click" @close}}
data-test-button="publish-flow-publish"
>
<span>Publish</span>
</button>
<div class="settings-menu-toggle-spacer"></div>
</div>
{{/if}}
</header>
<div class="gh-publish-settings-container {{unless @data.skipAnimation "fade-in"}}">
{{#if this.emailErrorMessage}}
<Editor::Modals::PublishFlow::CompleteWithEmailError
@emailErrorMessage={{this.emailErrorMessage}}
@publishOptions={{@data.publishOptions}}
@close={{@close}}
/>
{{else if this.isConfirming}}
<Editor::Modals::PublishFlow::Confirm
@publishOptions={{@data.publishOptions}}
@recipientType={{this.recipientType}}
@saveTask={{this.saveTask}}
@cancel={{this.toggleConfirm}}
@close={{@close}}
/>
{{else if this.isComplete}}
<Editor::Modals::PublishFlow::Complete
@publishOptions={{@data.publishOptions}}
@recipientType={{this.recipientType}}
@postCount={{this.postCount}}
@close={{@close}}
/>
{{else}}
<Editor::Modals::PublishFlow::Options
@publishOptions={{@data.publishOptions}}
@recipientType={{this.recipientType}}
@confirm={{this.toggleConfirm}}
@close={{@close}}
/>
{{/if}}
</div>
</div>