You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently, users cannot view the list of people they are following. A dialog should display the following list, each linking to the respective user’s profile. Endpoints affected /profile and /user/{handle}
Describe the solution you'd like
Implement an action flow (GET_USER_FOLLOWINGS_START, GET_USER_FOLLOWINGS_SUCCESS, GET_USER_FOLLOWINGS_FAIL) to retrieve followings from Firestore.
Store following data in the Redux store under profile.user.followings.
Display following users in a dialog, where:
Each entry shows a profile picture and display name and user handle.
Clicking on an entry redirects to their profile page without hard refresh.
Show a loading state (with a loading button) while fetching the list.
Describe alternatives you've considered
Fetching on every dialog open (not efficient without caching).
Additional context
This feature will enhance navigation by allowing users to easily access profiles of people they follow.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently, users cannot view the list of people they are following. A dialog should display the following list, each linking to the respective user’s profile. Endpoints affected /profile and /user/{handle}
Describe the solution you'd like
GET_USER_FOLLOWINGS_START
,GET_USER_FOLLOWINGS_SUCCESS
,GET_USER_FOLLOWINGS_FAIL
) to retrieve followings from Firestore.profile.user.followings
.Describe alternatives you've considered
Additional context
This feature will enhance navigation by allowing users to easily access profiles of people they follow.
The text was updated successfully, but these errors were encountered: