wellcometrust / together-science-can

Site for the Together Science Can campaign.
MIT License
1 stars 1 forks source link

Adaptive Social Feed pages #73

Closed jakubfiala closed 6 years ago

jakubfiala commented 6 years ago

Since Instagram embeds aren't as responsive as one would think, we need to change the feed page size adaptively – 4 on mobile/tablet, 3 on small desktop, and 4 on large desktop.

Because the pages are managed by JS, we can't simply do this with just media queries.

In this PR, we create an adaptive postsPerPage function which returns different values based on the current breakpoint. We also create an observer function which updates the number of currently visible posts based on postsPerPage. They both need to have separate resize listeners, because postsPerPage is used in other functions, too.

screen shot 2017-09-22 at 16 56 12 screen shot 2017-09-22 at 16 56 20

jakubfiala commented 6 years ago

cheers @Thomas-Wellcome