mauerwerk
A react-spring driven masonry-like grid with enter/exit and shared element transitions.
How to use
You feed mauerwerk any data-set (an array of objects most likely), give it accessors so it can access keys (which can be names, hashes, etc., the same keys you'd normally hand over to React), and either a fixed cell height or individual heights. You render out each individual cell via render-prop. You'll receive three arguments:
data
, the item from your data-setopen
, the cells state, depending on whether it istrue
orfalse
you can display varying content or use further animation prototypes to transition from cell-state to maximized-statetoggle
, use this to maximize/minimize your cell
Effects
You probably don't want flip between open/closed content using static conditions. mauerwerk comes with two simple to use effects:
Fade
will fade contents in according to theshow
property. It's a simgple wrapper around react-spring'sTransition
, you can feed it the same properties (config, from, enter, leave, update). By default it will just move opacity from 0 -> 1.Slug
lets elements "crawl" in. It's a wrapper around react-spring'sTrail
. By default it will move opacity from 0 -> 1 and translate y from 40px -> 0px.
These two would work outside the Grids context if you wanted to use them elsewhere.