IciaCarroBarallobre / elixir_wordle

Elixir Wordle Web App featuring daily words related to Elixir.
Apache License 2.0
9 stars 3 forks source link

Improving countdown to decrease the amount of events #42

Closed IciaCarroBarallobre closed 1 year ago

IciaCarroBarallobre commented 1 year ago

Image

The current_time assignment is only used in the Results Component countdown, so it doesn't make sense to initialize it before in the mount function. Additionally, it's a better idea to send current_time to the client and handle it there, rather than in the LiveView server, as it can be a heavy workload.