From f559170a3956e0b7515355367aa6fb942a31536c Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Wed, 11 May 2022 17:00:20 +0100 Subject: [PATCH] Added email limit checks and email disabled messaging to publish flow closes https://github.com/TryGhost/Team/issues/1584 refs https://github.com/TryGhost/Team/issues/1605 - added email limit check to PublishOptions setup - moved email disabled messaging from the email recipients option to the publish type option - it was confusing to have the email publish type options disabled without any indication of why, with the message hidden within the closed email recipients option --- .../modals/publish-flow/options.hbs | 27 ++++----- .../editor-labs/publish-management.js | 34 +++++++++--- .../publish-options/email-recipients.hbs | 55 ++++++++----------- .../publish-options/publish-type.hbs | 17 +++++- ghost/admin/app/helpers/publish-options.js | 4 +- .../app/styles/components/publishmenu.css | 10 +++- 6 files changed, 90 insertions(+), 57 deletions(-) diff --git a/ghost/admin/app/components/editor-labs/modals/publish-flow/options.hbs b/ghost/admin/app/components/editor-labs/modals/publish-flow/options.hbs index f820ad9534..605daacf2b 100644 --- a/ghost/admin/app/components/editor-labs/modals/publish-flow/options.hbs +++ b/ghost/admin/app/components/editor-labs/modals/publish-flow/options.hbs @@ -32,7 +32,11 @@ {{#unless @publishOptions.emailUnavailable}}
{{#if @publishOptions.willEmail}} - {{else}} -
+ - {{/if}} - +
+ Not sent to any members +
+ {{svg-jar "arrow-down" class="icon-expand"}} -
+ {{/if}} {{#liquid-if (eq this.openSection "emailRecipients")}}
diff --git a/ghost/admin/app/components/editor-labs/publish-management.js b/ghost/admin/app/components/editor-labs/publish-management.js index 1991034cc9..13eba3f05b 100644 --- a/ghost/admin/app/components/editor-labs/publish-management.js +++ b/ghost/admin/app/components/editor-labs/publish-management.js @@ -19,6 +19,7 @@ const CONFIRM_EMAIL_MAX_POLL_LENGTH = 15 * 1000; export class PublishOptions { // passed in services config = null; + limit = null; settings = null; store = null; @@ -89,6 +90,8 @@ export class PublishOptions { // publish type ------------------------------------------------------------ @tracked publishType = 'publish+send'; + // @tracked emailDisabledError; + @tracked emailDisabledError = 'Email sending is temporarily disabled because your account is currently in review. You should have an email about this from us already, but you can also reach us any time at support@ghost.org.'; get publishTypeOptions() { return [{ @@ -124,14 +127,14 @@ export class PublishOptions { // publish type dropdown is shown but email options are disabled get emailDisabled() { - const mailgunIsNotConfigured = !get(this.settings, 'mailgunIsConfigured') - && !get(this.config, 'mailgunIsConfigured'); - const hasNoMembers = this.totalMemberCount === 0; - // TODO: check email limit + return !this.mailgunIsConfigured || hasNoMembers || this.emailDisabledError; + } - return mailgunIsNotConfigured || hasNoMembers; + get mailgunIsConfigured() { + return get(this.settings, 'mailgunIsConfigured') + || get(this.config, 'mailgunIsConfigured'); } @action @@ -219,8 +222,9 @@ export class PublishOptions { // setup ------------------------------------------------------------------- - constructor({config, post, settings, store, user} = {}) { + constructor({config, limit, post, settings, store, user} = {}) { this.config = config; + this.limit = limit; this.post = post; this.settings = settings; this.store = store; @@ -255,12 +259,12 @@ export class PublishOptions { }); // email limits - // TODO: query limit service + const checkSendingLimit = this._checkSendingLimit(); // newsletters const fetchNewsletters = this.store.query('newsletter', {status: 'active', limit: 'all', include: 'count.members'}); - yield Promise.all([countTotalMembers, fetchNewsletters]); + yield Promise.all([countTotalMembers, checkSendingLimit, fetchNewsletters]); } // saving ------------------------------------------------------------------ @@ -348,6 +352,20 @@ export class PublishOptions { this.post[property] = this._originalModelValues[property]; }); } + + async _checkSendingLimit() { + await this.settings.reload(); + + try { + if (this.limit.limiter && this.limit.limiter.isLimited('emails')) { + await this.limit.limiter.errorIfWouldGoOverLimit('emails'); + } else if (get(this.settings, 'emailVerificationRequired')) { + this.emailDisabledError = 'Email sending is temporarily disabled because your account is currently in review. You should have an email about this from us already, but you can also reach us any time at support@ghost.org.'; + } + } catch (e) { + this.emailDisabledError = e.message; + } + } } /* Component -----------------------------------------------------------------*/ diff --git a/ghost/admin/app/components/editor-labs/publish-options/email-recipients.hbs b/ghost/admin/app/components/editor-labs/publish-options/email-recipients.hbs index a27c72adb3..a8642faa32 100644 --- a/ghost/admin/app/components/editor-labs/publish-options/email-recipients.hbs +++ b/ghost/admin/app/components/editor-labs/publish-options/email-recipients.hbs @@ -1,32 +1,25 @@ -{{#if (eq @publishOptions.totalMemberCount 0)}} -

- Add members - to start sending newsletters! -

-{{else}} -
- {{#if (gt @publishOptions.newsletters.length 1)}} -
- - {{newsletter.name}} ({{newsletter.count.members}}) - -
- {{/if}} +
+ {{#if (gt @publishOptions.newsletters.length 1)}} +
+ + {{newsletter.name}} ({{newsletter.count.members}}) + +
+ {{/if}} - -
-{{/if}} + +
\ No newline at end of file diff --git a/ghost/admin/app/components/editor-labs/publish-options/publish-type.hbs b/ghost/admin/app/components/editor-labs/publish-options/publish-type.hbs index 187bc6434e..e7887bc1b6 100644 --- a/ghost/admin/app/components/editor-labs/publish-options/publish-type.hbs +++ b/ghost/admin/app/components/editor-labs/publish-options/publish-type.hbs @@ -14,4 +14,19 @@ {{/each}} - \ No newline at end of file + + +{{#if @publishOptions.emailDisabledError}} +

+ {{@publishOptions.emailDisabledError}} +

+{{else if (eq @publishOptions.totalMemberCount 0)}} +

+ Add members + to start sending newsletters! +

+{{else if (not @publishOptions.mailgunIsConfigured)}} +

+ Setup Mailgun to start sending newsletters! +

+{{/if}} \ No newline at end of file diff --git a/ghost/admin/app/helpers/publish-options.js b/ghost/admin/app/helpers/publish-options.js index 30ae64ede7..ba28b22c20 100644 --- a/ghost/admin/app/helpers/publish-options.js +++ b/ghost/admin/app/helpers/publish-options.js @@ -5,6 +5,7 @@ import {tracked} from '@glimmer/tracking'; export default class PublishOptionsResource extends Resource { @service config; + @service limit; @service session; @service settings; @service store; @@ -32,10 +33,11 @@ export default class PublishOptionsResource extends Resource { } _createPublishOptions(post) { - const {config, settings, store} = this; + const {config, limit, settings, store} = this; return new PublishOptions({ config, + limit, post, settings, store, diff --git a/ghost/admin/app/styles/components/publishmenu.css b/ghost/admin/app/styles/components/publishmenu.css index a1ca8b5d42..f8447822d6 100644 --- a/ghost/admin/app/styles/components/publishmenu.css +++ b/ghost/admin/app/styles/components/publishmenu.css @@ -633,6 +633,10 @@ color: var(--middarkgrey-d1); } +.gh-publish-types + .gh-box { + margin-top: 12px; +} + .gh-publish-schedule .gh-radio { margin: 0; } @@ -723,12 +727,12 @@ transform: scale(0.98); box-shadow: 0 0 0 0 rgba(48, 207, 67, 0.7); } - + 70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(48, 207, 67, 0); } - + 100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(48, 207, 67, 0); @@ -834,4 +838,4 @@ font-weight: 500; overflow: hidden; text-overflow: ellipsis; -} \ No newline at end of file +}