Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AO3-6775 Add delete work mailer preview #4948

Closed
wants to merge 2 commits into from

Conversation

weeklies
Copy link
Contributor

@weeklies weeklies commented Oct 27, 2024

Issue

https://otwarchive.atlassian.net/browse/AO3-6775

Not sure how to test this with the feature test changes, and I would appreciate some direction.

Purpose

Add delete work mailer preview.

Testing Instructions

See Jira issue.

@weeklies weeklies changed the title AO3-6775 Add delete work previews AO3-6775 Add delete work preview Oct 27, 2024
@weeklies weeklies changed the title AO3-6775 Add delete work preview AO3-6775 Add delete work mailer preview Oct 27, 2024
@Bilka2
Copy link
Contributor

Bilka2 commented Oct 27, 2024

The simplest example for a test for localised emails is likely the feature test included in #4921. Let me know if you have further questions!


work = create(:work, authors: [first_creator.default_pseud, second_creator.default_pseud])

User.current_user = second_creator
Copy link
Contributor

@Bilka2 Bilka2 Oct 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a possible way to do it, but it feels a bit hacky. What do you think about instead pulling the self vs other check out of the mailer erb files into work.rb and only passing the result into the mailer method? Then you could specify directly in the method call whether it's the self or other version.

@@ -40,6 +40,21 @@ def claim_notification_registered
UserMailer.claim_notification(creator_id, [work.id], true)
end

def delete_work
Copy link
Contributor

@Bilka2 Bilka2 Oct 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
def delete_work
def delete_work_notification_self

and adjust the other method name to match, please. Translation would like the preview names to be the mailer names with a suffix for the variant

end
mail(
to: user.email,
subject: t('user_mailer.delete_work_notification.subject', app_name: ArchiveConfig.APP_SHORT_NAME)
Copy link
Contributor

@Bilka2 Bilka2 Nov 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It'd be nice if you could replace this with default_i18n_subject

@Bilka2
Copy link
Contributor

Bilka2 commented Nov 30, 2024

Another example for a cucumber test for the email translations is now available with #4959. It shows something that would be nice to have: Generating emails for two users at once, one translated and one non-translated. For work deletions that should be achievable by deleting a work with multiple creators.

@weeklies
Copy link
Contributor Author

weeklies commented Dec 3, 2024

Putting this up for adoption, since I've been busy.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants