aboutsummaryrefslogtreecommitdiff
path: root/src/utils/updateTimers.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/updateTimers.js')
-rw-r--r--src/utils/updateTimers.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/utils/updateTimers.js b/src/utils/updateTimers.js
new file mode 100644
index 0000000..ed37901
--- /dev/null
+++ b/src/utils/updateTimers.js
@@ -0,0 +1,23 @@
+import { timerComplete } from "./notification";
+
+export const updateTimers = (timers, setTimers, sound, browserNotifications) => {
+ const now = (new Date()).getTime() / 1000;
+ setTimers(
+ timers.map(t => {
+ if (!t.started) {
+ return t;
+ }
+ // количество секунд от текущего времени до того времени когда должен сработать таймер
+ const nt = Math.max(0, Math.round((t.startedAt / 1000 + t.initialTime) - now));
+ // игнорируем повторные срабатывания
+ if (t.time !== nt) {
+ t.time = nt;
+ // таймер должен сработать
+ if (t.time <= 0) {
+ timerComplete(sound, browserNotifications, t);
+ }
+ }
+ return t;
+ })
+ );
+}