In this post we will finally get to the key part of the application - letting users select and download images.
4 posts tagged with "useEffect"
View All Tags28. Media Library - Settings Front-end
In this post we will begin wiring up the ability to manage settings in our GUI.
26. Media Library - Admin Properties Front-end
In this post we will begin wiring up the ability to manage properties in our GUI.
20. Media Library - Staying Logged In
Our application navigation is working great where we are leveraging react-router. However, we do have an issue when we perform navigation outside of our application. For example, if a user is logged in and they use the browser's address bar and enter a route we get what we probably think of as unexpected behavior - the application refreshes and the user is logged out. In fact, what is happening is that the state is flushed when the application is refreshed; which is what is happening when the user leverages the address bar in the browser. The same thing happens if we use the browser's refresh button or closes and reopens the browser. In this post we will address this undesirable behavior.