LiveView v0.14.0 added a new function, push_event/3 (docs), which allows us to push data from the server to the client's JS.
This solves an issue requiring a workaround in the original implementation of this app which required first creating a new HTML element in the LiveView with a dataset and JS hooks in order to pass data from the server to a client's JS. Since push_event/3 solves the problem (and should simplify and clean up the LiveView), let's implement it.