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

🐛 Fixed default publish type being "Publish and email" when default recipients set to "Usually nobody"

no issue

The default recipients setting "Usually nobody" was being respected with the email recipient list defaulting to no members selected. However the UI for that state was confusing because the default publish options ended up being "Publish and email" and "Not sent as a newsletter" but it was expected to be "Publish" with the newsletter option being disabled.

- updated the `PublishOptions` setup to reflect the desired outcome for "Usually nobody"
  - default publish type is set to "Publish"
  - default email recipients are set to match post visibility - this means there are fewer clicks required when switching from "Publish" to "Publish and send"
- updated mirage data setup so any members created are automatically assigned to any newsletter instance with `subscribeOnSignup` set
  - ensures we get proper member counts in the publish flow
This commit is contained in:
Kevin Ansfield 2022-05-30 19:44:43 +01:00
parent 3f0e46c7b0
commit 99f05e14b2
5 changed files with 64 additions and 8 deletions

View file

@ -59,7 +59,7 @@
</div>
</div>
{{else}}
<div class="gh-setting-richdd-container gh-setting-rich-dropdown form-group">
<div class="gh-setting-richdd-container gh-setting-rich-dropdown form-group" data-test-select="default-recipients">
<Settings::MembersEmail::DefaultRecipientsSelect
@recipients={{this.recipientsSelectValue}}
@segment={{this.settings.editorDefaultEmailRecipientsFilter}}

View file

@ -162,13 +162,16 @@ export default class PublishOptions {
}
get defaultRecipientFilter() {
const defaultEmailRecipients = this.settings.get('editorDefaultEmailRecipients');
const recipients = this.settings.get('editorDefaultEmailRecipients');
const filter = this.settings.get('editorDefaultEmailRecipientsFilter');
if (defaultEmailRecipients === 'disabled') {
const usuallyNobody = recipients === 'filter' && filter === null;
if (recipients === 'disabled') {
return null;
}
if (defaultEmailRecipients === 'visibility') {
if (recipients === 'visibility' || usuallyNobody) {
if (this.post.visibility === 'public') {
return 'status:free,status:-free';
}
@ -188,7 +191,7 @@ export default class PublishOptions {
return this.post.visibility;
}
return this.settings.get('editorDefaultEmailRecipientsFilter');
return filter;
}
get fullRecipientFilter() {
@ -240,6 +243,16 @@ export default class PublishOptions {
if (this.emailUnavailable || this.emailDisabled) {
this.publishType = 'publish';
}
// When default recipients is set to "Usually nobody":
// Set publish type to "Publish" but keep email recipients matching post visibility
// to avoid multiple clicks to turn on emailing
if (
this.settings.get('editorDefaultEmailRecipients') === 'filter' &&
this.settings.get('editorDefaultEmailRecipientsFilter') === null
) {
this.publishType = 'publish';
}
}
@task

View file

@ -10,7 +10,6 @@ export default Factory.extend({
name() { return `${faker.name.firstName()} ${faker.name.lastName()}`; },
email: faker.internet.email,
status: 'free',
subscribed: true,
createdAt() { return moment(randomDate()).format('YYYY-MM-DD HH:mm:ss'); },
free: trait({
@ -23,5 +22,12 @@ export default Factory.extend({
comped: trait({
status: 'comped'
})
}),
afterCreate(member, server) {
const newslettersToSignup = server.schema.newsletters.where({subscribeOnSignup: true});
member.newsletters = newslettersToSignup;
member.save();
}
});

View file

@ -3,6 +3,8 @@ export default [
{
id: 1,
name: 'Default newsletter',
slug: 'default-newsletter'
slug: 'default-newsletter',
status: 'active',
subscribeOnSignup: true
}
];

View file

@ -5,6 +5,7 @@ import {disableMailgun, enableMailgun} from '../../helpers/mailgun';
import {disableMembers, enableMembers} from '../../helpers/members';
import {disableNewsletters, enableNewsletters} from '../../helpers/newsletters';
import {expect} from 'chai';
import {selectChoose} from 'ember-power-select/test-support/helpers';
import {setupApplicationTest} from 'ember-mocha';
import {setupMirage} from 'ember-cli-mirage/test-support';
import {visit} from '../../helpers/visit';
@ -167,6 +168,39 @@ describe('Acceptance: Publish flow', function () {
it('can publish');
it('can schedule publish');
it('respects default recipient settings - usually nobody', async function () {
// switch to "usually nobody" setting
// - doing it this way so we're not testing potentially stale mocked setting keys/values
await visit('/settings/newsletters');
await click('[data-test-toggle-membersemail]');
await selectChoose('[data-test-select="default-recipients"]', 'Usually nobody');
await click('[data-test-button="save-members-settings"]');
const post = this.server.create('post', {status: 'draft'});
await visit(`/editor/post/${post.id}`);
await click('[data-test-button="publish-flow"]');
expect(
find('[data-test-setting="publish-type"] [data-test-setting-title]'), 'publish type title'
).to.have.trimmed.text('Publish');
expect(
find('[data-test-setting="email-recipients"] [data-test-setting-title]'), 'publish type title'
).to.have.trimmed.text('Not sent as newsletter');
await click('[data-test-setting="publish-type"] [data-test-setting-title]');
// email-related options are enabled
expect(find('[data-test-publish-type="publish+send"]')).to.not.have.attribute('disabled');
expect(find('[data-test-publish-type="send"]')).to.not.have.attribute('disabled');
await click('[data-test-publish-type="publish+send"]');
expect(
find('[data-test-setting="email-recipients"] [data-test-setting-title]'), 'publish type title'
).to.have.trimmed.rendered.text('1 subscriber');
});
it('handles Mailgun not being set up', async function () {
disableMailgun(this.server);
@ -191,6 +225,7 @@ describe('Acceptance: Publish flow', function () {
it('handles no members present', async function () {
this.server.db.members.remove();
this.server.db.newsletters.update({memberIds: []});
const post = this.server.create('post', {status: 'draft'});
await visit(`/editor/post/${post.id}`);