Green Sock アニメーション ツールを使用して、react-slick カルーセルを使用しており、スライダーとアニメーションが機能するようになりました。問題は、アニメーションがスライドで終了するときに slickNext メソッドを呼び出すことです。参照を使用するかどうかに関係なく、このエラーが発生し続けます(ただし、「テスト」は機能しており、コンソールに表示されています)。この方法の github ドキュメントは少し貧弱で紛らわしく、参照として使用できる同様の状況は見つかりませんでした。このメソッドにアクセスするにはどうすればよいですか?
import React, { Component } from "react";
import Helmet from "react-helmet";
import AnimationStory1 from "../../components/Animation/AnimationStory1";
import AnimationStory2 from "../../components/Animation/AnimationStory2";
import AnimationStory3 from "../../components/Animation/AnimationStory3";
var Slider = require("react-slick");
export default class IntroStory extends Component {
constructor (props) {
super(props);
this.state = {};
}
nextSlide () {
console.log("test");
this.refs.slider.slickNext();
}
render () {
//These are GreenSock animation instances
var timeline1 = new TimelineLite({onComplete: this.nextSlide});
var timeline2 = new TimelineLite();
var timeline3 = new TimelineLite();
//These are settings for the react-slick slider
var settings = {
dots: true,
infinite: true,
speed: 500,
slidesToShow: 1,
slidesToScroll: 1,
// slide: true,
swipe: true,
accessibility: true,
arrows: false,
beforeChange: function () {
timeline1.restart();
timeline2.restart();
timeline3.restart();
}
};
return <div>
<Helmet title="Welcome to We Vote" />
<div className="container-fluid well u-gutter__top--small fluff-full1 intro-story">
<Slider ref="slider" {...settings}>
<div key={1}><AnimationStory1 timeline1={timeline1}/></div>
<div key={2}><AnimationStory2 timeline2={timeline2}/></div>
<div key={3}><AnimationStory3 timeline3={timeline3}/></div>
<div key={4}><p>This will be an image</p></div>
</Slider>
</div>
</div>;
}
}