0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

re-organised newsletter modal components

This commit is contained in:
Kevin Ansfield 2022-04-27 09:15:12 +01:00 committed by Peter Zimon
parent c4ad61ac0f
commit 7099e9e0b6

View file

@ -0,0 +1,37 @@
<div class="modal-content">
<header class="modal-header" data-test-modal="confirm-newsletter-create">
<h1>{{@data.newsletter.name}}</h1>
</header>
<button type="button" class="close" role="button" title="Close" {{on "click" (fn @close false)}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
<div class="modal-body">
<p>
{{#if @data.optInExisting}}
{{#let (members-count-fetcher query=(hash filter="newsletters.status:active")) as |countFetcher|}}
This newsletter will be available to <strong>all members</strong>. Your {{#if countFetcher.count}}<strong>{{countFetcher.count}}</strong>{{/if}} existing subscriber{{#if (gt countFetcher.count 1)}}s{{/if}} will also be opted-in to receive it. Sound good?
{{/let}}
{{else}}
The newsletter will be available to <strong>all new members</strong>. Existing members wont be subscribed, but may visit their account area to opt-in to future emails.
{{/if}}
</p>
</div>
<div class="modal-footer">
<button
type="button"
class="gh-btn"
{{on "click" (fn @close false)}}
>
<span>Back to edit</span>
</button>
<button
type="button"
class="gh-btn gh-btn-black"
{{on "click" (fn @close true)}}
{{on-key "Enter"}}
>
<span>Create newsletter</span>
</button>
</div>
</div>