How to Initialize the SurveyResultsLive Component State
Explore how to initialize the state of the SurveyResultsLive component by fetching survey data directly within the component's update function. Learn to use reusable reducer functions to maintain clean, organized code that supports dynamic state updates and real-time rendering in Phoenix LiveView dashboards.
We'll cover the following...
We'll cover the following...
Now, our application’s core contains all of the functions we need to fetch bar
chart data in our LiveView. In this lesson, we’ll teach the SurveyResultsLive component to fetch this data put it in the state, and render it. Let’s get going.
Adding survey results to the component socket
We could add the survey result data to the parent LiveView’s mount/1 callback, ...