Update stop watch for deployment status
This commit is contained in:
parent
aff015794e
commit
a0e6add04d
@ -17,7 +17,7 @@ interface StopwatchProps extends Omit<FormatMilliSecondProps, 'time'> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const Stopwatch = ({ offsetTimestamp, isPaused, ...props }: StopwatchProps) => {
|
const Stopwatch = ({ offsetTimestamp, isPaused, ...props }: StopwatchProps) => {
|
||||||
const { totalSeconds, pause } = useStopwatch({
|
const { totalSeconds, pause, start } = useStopwatch({
|
||||||
autoStart: true,
|
autoStart: true,
|
||||||
offsetTimestamp: offsetTimestamp,
|
offsetTimestamp: offsetTimestamp,
|
||||||
});
|
});
|
||||||
@ -25,6 +25,8 @@ const Stopwatch = ({ offsetTimestamp, isPaused, ...props }: StopwatchProps) => {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isPaused) {
|
if (isPaused) {
|
||||||
pause();
|
pause();
|
||||||
|
} else {
|
||||||
|
start();
|
||||||
}
|
}
|
||||||
}, [isPaused]);
|
}, [isPaused]);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user