2

我尝试为数组中的新条目设置动画,因为它们react-spring在第一次渲染时工作得很好,但在更新时没有动画

这是一个代码沙箱,我在其中以一定间隔重现了该问题:https ://codesandbox.io/s/01672okvpl

import React from "react";
import ReactDOM from "react-dom";
import { Transition, animated, config } from "react-spring";

import "./styles.css";

class App extends React.Component {
  state = { fake: ["a", "b", "c", "d", "e", "f"] };

  fakeUpdates = () => {
    const [head, ...tail] = this.state.fake.reverse();
    this.setState({ fake: [...tail, head].reverse() });
  };

  componentDidMount() {
    setInterval(this.fakeUpdates, 2000);
  }

  componentWillUnmount() {
    clearInterval(this.fakeUpdates);
  }

  render() {
    const { fake } = this.state;
    return (
      <div className="App">
        {fake.map((entry, index) => (
          <Transition
            native
            from={{
              transform: `translateY(${index === 0 ? "-200%" : "-100%"})`
            }}
            to={{ transform: "translateY(0)" }}
            config={config.slow}
            key={index}
          >
            {styles => <animated.div style={styles}>{entry}</animated.div>}
          </Transition>
        ))}
      </div>
    );
  }
}

const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);

我尝试了相同的结果SpringTransition

4

1 回答 1

5

您的问题是因为您的密钥没有更新。由于您将 0 的键替换为 0 的键,因此它认为它已经应用了转换。

当将键更改为 时${entry}_${index},它会将它们的键更新为“a_0”,然后是“f_0”,它们是唯一且不同的,因此会触发您想要的效果。

entry单独作为键也不起作用,因为它已经存在于 DOM 中,所以它不会重新渲染过渡。

<Transition
  native
  from={{
    transform: `translateY(${index === 0 ? "-200%" : "-100%"})`
  }}
  to={{ transform: "translateY(0)" }}
  config={config.slow}
  key={`${entry}_${index}`}
>

在这里查看https://codesandbox.io/s/kkp98ry4mo

于 2018-08-06T09:04:55.880 回答