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

Modify the way "Friends" are added #5261

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

nertc
Copy link
Contributor

@nertc nertc commented Oct 15, 2024

This PR addresses "Modify the way 'Friends' are added" issue mentioned in #3310

This PR replaces all occurrences of "friends" to "followers", including texts, tests and URLs.

This PR was not broken down to smaller pieces to maintain consistency and avoid different names of the same functionality.

config/locales/en.yml Outdated Show resolved Hide resolved
config/routes.rb Outdated
match "/user/:display_name/make_friend" => "friendships#make_friend", :via => [:get, :post], :as => "make_friend"
match "/user/:display_name/remove_friend" => "friendships#remove_friend", :via => [:get, :post], :as => "remove_friend"
match "/user/:display_name/follow_user" => "friendships#follow_user", :via => [:get, :post], :as => "follow_user"
match "/user/:display_name/unfollow_user" => "friendships#unfollow_user", :via => [:get, :post], :as => "unfollow_user"
Copy link
Member

Choose a reason for hiding this comment

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

I think the URL here could just be /follow and /unfollow and we don't really need the _user suffix? Possibly the actions should be create and destroy though? Probably the controller should be renamed to though I'm not sure what to...

Copy link
Collaborator

Choose a reason for hiding this comment

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

From a quick look at some gems that implement this functionality (1, 2) the convention is to use "follow" as a noun, so table is follows, controller is follows_controller, model is Follow etc. But I think we should rename the controllers/models separately.

What it does suggest though is that we should use resourceful routing with this in mind, so for example "/user/:display_name/follow" with create/destroy actions (and new/edit for the GET pages). See user_mutes for an example in the routes.rb file that's a bit like this.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

When I started implementing same architecture as user_mutes, it caused to change some more files and add some complexities. This PR is already +104 -104 line change. I think, it will be better to create a separate PR about changing routing architecture of the follow functionality after this PR will be merged to avoid making it even bigger and more complex.

Copy link
Collaborator

Choose a reason for hiding this comment

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

This PR is already +104 -104 line change.

You could have a smaller PR if you only changed the texts but not the routes. Don't we have the existing urls published in notification emails (and maybe in other places)? I don't see redirects from old to new here.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@AntonKhorev app/views/user_mailer/friendship_notification.html.erb and app/views/user_mailer/friendship_notification.text.erb changes are about redirections from mail notifications. For the consistent visual output this PR is focused on changing every occurrence of "friend" on user side and changing them to "following". Main focus is what will users see (including both texts and URLs). I agree that it will be great if friendship functionality is refactored (currently it is just renamed), but those changes are out of scope of this PR and will be done as a separate PR as soon as this PR will be merged (adding them to this PR will complicate things as there will be not only user side changes, but logical changes in routes.rb, ability.rb and etc. which will need much deeper testing than just text and URL comparisons).

Copy link
Collaborator

Choose a reason for hiding this comment

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

app/views/user_mailer/friendship_notification.html.erb and app/views/user_mailer/friendship_notification.text.erb changes are about redirections from mail notifications.

I don't see any redirects from old GET paths to new GET paths (but I see changes in tests that checked the paths).

For the consistent visual output this PR is focused on changing every occurrence of "friend" on user side and changing them to "following". Main focus is what will users see (including both texts and URLs).

Maybe it shouldn't focus on both?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

PR was updated accordingly to include refactor and renaming of the friendship functionality.

app/views/dashboards/show.html.erb Outdated Show resolved Hide resolved
config/locales/en.yml Outdated Show resolved Hide resolved
config/locales/en.yml Outdated Show resolved Hide resolved
config/locales/en.yml Outdated Show resolved Hide resolved
config/locales/en.yml Outdated Show resolved Hide resolved
config/locales/en.yml Outdated Show resolved Hide resolved
@nertc nertc force-pushed the issues_3310_modify_the_way_friends_are_added branch from e1a1b87 to 8393857 Compare October 22, 2024 07:09
@nertc
Copy link
Contributor Author

nertc commented Oct 22, 2024

Thank you for the review. This PR was updated according to recommendations.

@nertc nertc force-pushed the issues_3310_modify_the_way_friends_are_added branch from 8393857 to 02bede7 Compare November 14, 2024 07:37
Copy link

1 Warning
⚠️ Number of updated lines of code is too large to be in one PR. Perhaps it should be separated into two or more?

Generated by 🚫 Danger

@nertc
Copy link
Contributor Author

nertc commented Nov 14, 2024

PR was updated. Now friendship controller and model are refactored to be named as "follow" and also implement standard CRUD architecture using create and destroy. Old controllers, models, views and tests were removed, and new ones were added with the new names and architecture.

scope "/user/:display_name" do
resource :follow, :only => [:create, :destroy], :path => "follow"
end
get "/user/:display_name/follow" => "follows#index"
Copy link
Collaborator

Choose a reason for hiding this comment

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

Why index? Can you have multiple follows for one :display_name?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It's a page that either shows unfollow functionality or follow functionality based on if user already follows :display_name. As it is default GET method for this functionality (while other ones are POST and DELETE), I decided to name it follows#index. If you have an idea of a better name, I am open to it.

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

Successfully merging this pull request may close these issues.

6 participants