react-flip-move
react-flip-move copied to clipboard
Effortless animation between DOM changes (eg. list reordering) using the FLIP technique.
I'm building a table that updates with new data constantly, basically a dashboard. Flip-move works really well while I'm watching the Tab. But if I click away to another tab...
```js {[1, 2, 3, 4].map(x => )} ``` Ref wont callback here at all. But if you move it outside of map it works just fine!
I conditionally set enterAnimation/leaveAnimation to false on the FlipMove element. During the same render cycle the children of the FlipMove component are updated as well. This results in the DOM...
Using a recent version of mobile chrome go to [kchomp.co](kchomp.co) and touch the `worldnews` link at the top followed by the `news` link as quickly as possible. From here if...
The style attribute should be removed after the animation end when using the accordionVertical animation. although the style remain with the property `transform-origin` with the value of `"center top 0px"`...
Initially, I created a [project](https://github.com/joshwcomeau/react-flip-move/projects/2), but then I realised that it's not commentable so maybe an umbrella issue with checklist would be more useful, so I duplicate it as such....
Hey @joshwcomeau. I look at #88 and saw [your comment](https://github.com/kdemoya/react-flip-move/blob/4ae798c45ca847daf7b33dc7465982f29aab7f35/src/dom-manipulation.js#L193-L195): ``` // While ReactDOM's `findDOMNode` is discouraged, it's the only // publicly-exposed way to find the underlying DOM node for...
Hi! I saw this issue (https://github.com/joshwcomeau/react-flip-move/issues/89) but it looked to me like the discussion was going in the wrong direction. I don't see why you need refs at all when...
Loving the plugin so far, but have an issue with the leave animation. It pushes the child component (in this case, a element) up and to the left. How do...
I ran into the issue when I was using nested FlipMoves but apparently the problem already occurs without nesting flip moves. I have 2 flip moves that are rendered vertically...