From aaabf4b103e20108dd47f2c56dbf17e9db43f493 Mon Sep 17 00:00:00 2001 From: Simon Backx Date: Thu, 6 Oct 2022 11:12:11 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Improved=20email=20failure=20han?= =?UTF-8?q?dling=20and=20retrying=20(#15504)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes https://github.com/TryGhost/Team/issues/2009 - When an email is sent, but it failed there was no way to retry once you left the retry screen - There was no indication that the email failed to send in the post list and editor --- .../components/editor/modals/publish-flow.hbs | 3 ++- .../components/editor/modals/publish-flow.js | 9 ++++++- .../publish-flow/complete-with-email-error.js | 2 ++ .../editor/modals/publish-flow/options.hbs | 8 +++++-- .../components/editor/modals/update-flow.hbs | 3 +-- .../app/components/editor/publish-buttons.hbs | 2 +- .../app/components/gh-editor-post-status.hbs | 24 +++++++++++++++++-- .../posts-list/list-item-clicks.hbs | 18 +++++++++----- .../components/posts-list/list-item-clicks.js | 7 ++++++ .../admin/app/components/posts/analytics.hbs | 16 ++++++------- ghost/admin/app/models/post.js | 22 ++++++++++++----- ghost/admin/app/styles/layouts/content.css | 7 +++++- ghost/admin/app/styles/layouts/editor.css | 4 ++++ ghost/admin/app/templates/editor.hbs | 3 ++- ghost/admin/app/utils/publish-options.js | 16 +++++++++---- 15 files changed, 109 insertions(+), 35 deletions(-) diff --git a/ghost/admin/app/components/editor/modals/publish-flow.hbs b/ghost/admin/app/components/editor/modals/publish-flow.hbs index 85017eccef..e8264e4746 100644 --- a/ghost/admin/app/components/editor/modals/publish-flow.hbs +++ b/ghost/admin/app/components/editor/modals/publish-flow.hbs @@ -33,6 +33,7 @@ {{else if this.isConfirming}} @@ -59,4 +60,4 @@ /> {{/if}} - \ No newline at end of file + diff --git a/ghost/admin/app/components/editor/modals/publish-flow.js b/ghost/admin/app/components/editor/modals/publish-flow.js index 5e72fed6f8..7a091fb029 100644 --- a/ghost/admin/app/components/editor/modals/publish-flow.js +++ b/ghost/admin/app/components/editor/modals/publish-flow.js @@ -13,7 +13,7 @@ export default class PublishModalComponent extends Component { @service store; - @tracked emailErrorMessage; + @tracked emailErrorMessage = this.args.data.publishOptions.post.didEmailFail ? this.args.data.publishOptions.post.email.error : undefined; @tracked isConfirming = false; @tracked isComplete = false; @tracked postCount = null; @@ -49,6 +49,13 @@ export default class PublishModalComponent extends Component { } } + @action + setCompleted() { + this.emailErrorMessage = undefined; + this.isConfirming = false; + this.isComplete = true; + } + @task *saveTask() { try { diff --git a/ghost/admin/app/components/editor/modals/publish-flow/complete-with-email-error.js b/ghost/admin/app/components/editor/modals/publish-flow/complete-with-email-error.js index a15301b5b3..75d4a271f6 100644 --- a/ghost/admin/app/components/editor/modals/publish-flow/complete-with-email-error.js +++ b/ghost/admin/app/components/editor/modals/publish-flow/complete-with-email-error.js @@ -42,6 +42,8 @@ export default class PublishFlowCompleteWithEmailError extends Component { } } + this.args.setCompleted(); + return email; } catch (e) { // update "failed" state if email fails again diff --git a/ghost/admin/app/components/editor/modals/publish-flow/options.hbs b/ghost/admin/app/components/editor/modals/publish-flow/options.hbs index 14442a549c..42dd5d2852 100644 --- a/ghost/admin/app/components/editor/modals/publish-flow/options.hbs +++ b/ghost/admin/app/components/editor/modals/publish-flow/options.hbs @@ -107,7 +107,11 @@
{{svg-jar "member"}}
- Already sent to + {{#if (eq @publishOptions.post.email.status "failed") }} + Retry sending to + {{else}} + Already sent to + {{/if}} {{format-number @publishOptions.post.email.emailCount}} {{if (not-eq @recipientType "all") @recipientType}} {{!-- free/paid/specific --}} {{gh-pluralize @publishOptions.post.email.emailCount "subscriber" without-count=true}} @@ -152,4 +156,4 @@ Continue, final review →
-{{/unless}} \ No newline at end of file +{{/unless}} diff --git a/ghost/admin/app/components/editor/modals/update-flow.hbs b/ghost/admin/app/components/editor/modals/update-flow.hbs index bbf6111a72..9960b98975 100644 --- a/ghost/admin/app/components/editor/modals/update-flow.hbs +++ b/ghost/admin/app/components/editor/modals/update-flow.hbs @@ -35,8 +35,7 @@ {{if post.isScheduled "will be" "was"}} {{#if - (or post.isSent - (and post.isPublished post.email) + (or post.hasBeenEmailed post.willEmail ) }} diff --git a/ghost/admin/app/components/editor/publish-buttons.hbs b/ghost/admin/app/components/editor/publish-buttons.hbs index 03a7edda5a..289594c02d 100644 --- a/ghost/admin/app/components/editor/publish-buttons.hbs +++ b/ghost/admin/app/components/editor/publish-buttons.hbs @@ -69,4 +69,4 @@ {{/if}} {{/if}} -{{/if}} \ No newline at end of file +{{/if}} diff --git a/ghost/admin/app/components/gh-editor-post-status.hbs b/ghost/admin/app/components/gh-editor-post-status.hbs index 527451a1ac..cd8cbe4a8a 100644 --- a/ghost/admin/app/components/gh-editor-post-status.hbs +++ b/ghost/admin/app/components/gh-editor-post-status.hbs @@ -3,8 +3,19 @@ {{#if (and this.isSaving @post.isDraft)}} Saving... {{else if @post.isSent}} - - to {{gh-pluralize @post.email.emailCount "member"}} + {{#if @post.didEmailFail }} + Failed to send. + {{else}} + + to {{gh-pluralize @post.email.emailCount "member"}} + {{/if}} {{else if (and @post.emailOnly @post.isScheduled)}} Scheduled {{#if this.isHovered}} @@ -19,6 +30,15 @@ and sending to {{gh-pluralize @post.email.emailCount "member"}} {{else if (eq @post.email.status "submitted")}} and sent to {{gh-pluralize @post.email.emailCount "member"}} + {{else if (eq @post.email.status "failed")}} + but failed to send. {{/if}} {{else if @post.isScheduled}}