Hi! Just recently I discovered bubble (or the no-code thing in general). And I am very happy, since I’m an idea guy I can make my ideas happen! Started an udemy course, and done the bubble tutorials. Perhaps I’m putting the cart before the horse, and should finish my courses first before trying to create something on my own. But I’m too excited.
So, I’m creating a match/session tracker for a specific sport, I need to accomplish these two things: (If someone could help me by poiting out the direction I need to go in order to make these happen I’m super grateful.)
-
it needs to track how the player is feeling upon starting the match (so later I will have data to create insightful reports). The way I though about implementing this is, user can pick from a list of available tags. ie.: [confident] [happy] [sad] [relaxed] [fearful] and so on… So how can I make this happen?
-
User cannot create a new match while there’s another one ‘running’. So After user finishes a match he needs to click on “stop current match”. So when creating this new thing, I though about adding a field named “open” and default it to ‘yes’. So, then I create a conditional that checks the ‘open’ field of last item of Match db. If open, I hide the “new match” button and show the “end match” button. How does it sound?
2.1) Related to the above, how can I display a counter for the time elapsed so far after a match has started?
Thanks!