Implement Followers and Public Profiles
Fullstack Social iOS NodeJS REST
One last feature I want to discuss in this section is managing a list of "followers" that belong to a particular user. The reason why we want to do this is to make sure when something is posted, we can properly share these post objects amongst all followers. Building this out will be very similar to managing our "following" collection. Once done, I'd like to also send this information to a public profile page to confirm that things are working correctly.

Comments (2)
omari
3 years ago
Hi Brian, if you want to create a new post and choose an image that is too large it covers the create post button. You can't scroll down and create the post. How can you fix this? And another issue is what happens if you choose no image and press the create button or choose the wrong format such as pdf File etc.
Christopher J. Roura
2 years ago
Hi sorry i know you posted about this a while ago but you'd want to change the line <img style="max-width: 100%; margin-top: 12px" :src="postFileImageSource"> and instead add <img style="max-width: 100%; max-height: 200px; margin-top: 12px" :src="postFileImageSource"> This change will change the max height for that picture so it will never expand to the point where you cannot select the create button. I also changed the padding in the modal container style to have a padding of 100px from the top instead of 200px. I found 100px still is a nice distance from the top but to me is more appealing so the text and picture can be more centered on the screen.
AlfieLBTA
3 years ago
Hey Brian, as a tip: on minute 5.15 when you select and cut text, if you put your cursor on the line and hit ALT + up/down arrows you can move the line inside the newly created div.
Brian Voong
3 years ago
HELP & SUPPORT