This commit is contained in:
Alain Leon 2025-03-29 12:34:01 +01:00 committed by GitHub
commit 239164d4ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -198,12 +198,6 @@ class SliderMonitor<S, A extends Action<string>> extends (PureComponent ||
const aLoop = () => {
const replayDiff = Date.now() - currentTimestamp;
if (replayDiff >= timestampDiff) {
this.props.dispatch(
jumpToAction(
this.props.stagedActionIds[this.props.currentStateIndex + 1],
),
);
if (
this.props.currentStateIndex >=
this.props.computedStates.length - 1
@ -212,14 +206,23 @@ class SliderMonitor<S, A extends Action<string>> extends (PureComponent ||
return;
}
timestampDiff = this.getLatestTimestampDiff(
this.props.currentStateIndex,
);
currentTimestamp = Date.now();
// Update to check for nextActionId and dispatch it
const nextActionId =
this.props.stagedActionIds[this.props.currentStateIndex + 1];
if (nextActionId !== undefined) {
this.props.dispatch(jumpToAction(nextActionId));
this.setState({
timer: requestAnimationFrame(aLoop),
});
timestampDiff = this.getLatestTimestampDiff(
this.props.currentStateIndex,
);
currentTimestamp = Date.now();
this.setState({
timer: requestAnimationFrame(aLoop),
});
} else {
this.pauseReplay();
}
} else {
this.setState({
timer: requestAnimationFrame(aLoop),