@li11ianc This doesn't solve the image download issue yet, but it reorganizes app.R and utils.R in a way that functions work. I'm not having any issues with the server being bogged down on my end, the app appears functional to me (except for the image download, which I'll try to tackle next).
I also suggest using conditionalPanel() (conditioned on the "Show original artwork" checkboxes on each tab) to show/hide the original pieces. This is a more robust method than using if statements with renderImage() in the server. Also simplifies your code.
You can merge the pull request or you can just click on the "Files changed" tab and review the changes and implement them yourself, checking everything works as intended along the way.
@li11ianc This doesn't solve the image download issue yet, but it reorganizes
app.R
andutils.R
in a way that functions work. I'm not having any issues with the server being bogged down on my end, the app appears functional to me (except for the image download, which I'll try to tackle next).I also suggest using
conditionalPanel()
(conditioned on the "Show original artwork" checkboxes on each tab) to show/hide the original pieces. This is a more robust method than usingif
statements withrenderImage()
in the server. Also simplifies your code.You can merge the pull request or you can just click on the "Files changed" tab and review the changes and implement them yourself, checking everything works as intended along the way.