-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
81 lines (66 loc) · 2.04 KB
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { useCallback } from 'react';
import { usePlayer, useHistory, useAlgorithm } from './hooks';
import type { AlgorithmHistory } from './hooks';
import { disableScroll } from './utils/disableScroll';
import BarContainer from './components/BarContainer/BarContainer';
import Navbar from './components/Navbar/Navbar';
import Player from './components/Player/Player';
const App = () => {
const history: AlgorithmHistory = useHistory();
const player = usePlayer();
const {
array,
algorithmState,
selectedAlgorithm,
selectAlgorithm,
resetAll,
runAlgorithm,
getCurrentStep,
} = useAlgorithm({ history, player });
const handlePlay = useCallback(async () => {
if (algorithmState === 'finished') {
return resetAll(array.length);
}
if (algorithmState === 'notStarted') {
return runAlgorithm();
}
if (player.playerState === 'play') {
player.setPlayerState('pause');
} else if (player.playerState === 'pause') {
player.setPlayerState('play');
}
}, [player, runAlgorithm, resetAll, algorithmState]);
const handleBack = useCallback(() => {
player.setPlayerState('backward');
if (algorithmState === 'finished') {
history.decrementTrack();
}
}, [player, history, algorithmState]);
const handleForward = useCallback(() => {
player.setPlayerState('forward');
if (algorithmState === 'finished') {
history.incrementTrack();
}
}, [player, history, algorithmState]);
disableScroll();
const step = getCurrentStep();
return (
<>
<Navbar />
<BarContainer {...step} algorithmState={algorithmState} />
<Player
speed={player.speed}
setSpeed={player.setSpeed}
selectAlgorithm={selectAlgorithm}
goToNextStep={handleForward}
goToPreviousStep={handleBack}
resetAlgorithm={resetAll}
handlePlay={handlePlay}
selectedAlgorithm={selectedAlgorithm}
algorithmState={algorithmState}
playerState={player.playerState}
/>
</>
);
};
export default App;