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

"Also followed by:" - On user profiles #1610

Closed
SaySayTakamura opened this issue Oct 4, 2023 · 3 comments
Closed

"Also followed by:" - On user profiles #1610

SaySayTakamura opened this issue Oct 4, 2023 · 3 comments
Assignees
Labels
feature-request A request for a new feature x:on-the-roadmap We're planning to do this but it may be a bit

Comments

@SaySayTakamura
Copy link

SaySayTakamura commented Oct 4, 2023

Is your feature request related to a problem? Please describe.

Something Twitter does is that every Profile (except your own) have a field in the Profile Page that is called "Also followed by" where it lists people that you follow that follow this specific user page.

When none of your followings follow that account it displays: "Not followed by anyone you follow"

This is something i miss from Twitter when using Bluesky and i think it would be useful to find some new people followed by your moots or when you find an account followed by that artist you admire.

Describe the solution you'd like

You could iterate the user Following list and take only the handles and check for those handles when the user sees another pages.

When user logs in:

   for(int i = 0; i < user.following.size(); i++)
   {
     follows.push_back(user.following[i].handle.string()); //Follows is the variable we use to store the people User follows further ahead we will use it to compare it with AnotherUser follows.
   }

When user access other user page

   for(int i = 0; i < anotheruser.following.size(); i++)
   {
      for(auto& fb : follows)
      {
        if (anotheruser.following[i].handle.string() == fb)
        {
          followby.pushback(fb); //Followby is the variable used to display the common followers between User and AnotherUser
        }
      }
   }

Sorry for the bothering and hope this is useful for anyone else.

@pfrazee pfrazee added feature-request A request for a new feature x:on-the-roadmap We're planning to do this but it may be a bit labels Oct 9, 2023
@surfdude29
Copy link
Contributor

surfdude29 commented Apr 13, 2024

An update on March 9 from @haileyok in #3079 (which I only just saw):

Yea we've had some discussions about this recently. Closing in favor of #1610 but it's on the radar!

@PSingletary
Copy link

App Version 1.86 ?

@SaySayTakamura
Copy link
Author

App Version 1.86 ?

Yup, they implemented it on the then latest version.

Might as well, close this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature-request A request for a new feature x:on-the-roadmap We're planning to do this but it may be a bit
Projects
None yet
Development

No branches or pull requests

5 participants