As a user, when I click on an event's financial reporting page, I should be able to see the total costs of a specific component.
AC
When a user is authenticated
And on an events page's financial reporting page
Then they should be able to see a breakdown of total costs by a specific component (such as shows)
Dev Notes
create a smash function that gets all shows by eventId in src/javascripts/helpers/data/smash.js
User
As a user, when I click on an event's financial reporting page, I should be able to see the total costs of a specific component.
AC
When a user is authenticated And on an events page's financial reporting page Then they should be able to see a breakdown of total costs by a specific component (such as shows)
Dev Notes
src/javascripts/helpers/data/smash.js
getAllShowsByEventId(eventId) .then((eventWithShows) => { const ShowCost = eventWithShows.reduce((accumulator, show) => { return accumulator + show.price }, 0); .catch((err) => console.error('error in getAllShowsByEventId', err))