Summary
We’ve seen how we can use the concepts of stores, composables, and nested components to build a relatively complex user flow. For security, we depend on the authorization model by Supabase, which helps us achieve our results in an efficient way.
Taking a look at the Supabase structure and data is helpful in understanding the way certain endpoints store and offer their data. Up until this point, we’ve just been consuming data. Under the hood, every Supabase instance is a dedicated PostgreSQL database. If you want to know more about PostgreSQL, I highly recommend checking out Developing Modern Database Applications with PostgreSQL by Dr. Quan Ha Le and Marcelo Diaz, at https://www.packtpub.com/product/developing-modern-database-applications-with-postgresql/9781838648145.
With more complex tasks, it makes sense to take a step-by-step approach to building the feature, which is something I’ve also demonstrated. This sometimes means revisiting certain files...