2024-10-22 11:13:41 +00:00
|
|
|
package notifications
|
|
|
|
|
|
|
|
import (
|
2024-10-23 15:59:46 +00:00
|
|
|
"git.smsvc.net/pomodoro/ChronoTomato/internal/shared"
|
2024-10-22 11:13:41 +00:00
|
|
|
"fmt"
|
|
|
|
"github.com/gen2brain/beeep"
|
|
|
|
)
|
|
|
|
|
2024-10-23 11:16:30 +00:00
|
|
|
func DesktopNotifications() {
|
2024-10-22 11:13:41 +00:00
|
|
|
var duration int
|
|
|
|
var notification string
|
|
|
|
|
2024-10-23 11:48:16 +00:00
|
|
|
pomodoro := &shared.ServerMessage
|
|
|
|
|
|
|
|
mode := pomodoro.Mode
|
|
|
|
session := pomodoro.Session
|
|
|
|
sessions := pomodoro.PomodoroSettings.Sessions
|
2024-10-22 11:13:41 +00:00
|
|
|
|
2024-10-24 20:33:11 +00:00
|
|
|
switch mode {
|
2024-10-22 11:13:41 +00:00
|
|
|
case "Work":
|
2024-10-23 11:48:16 +00:00
|
|
|
duration = pomodoro.PomodoroSettings.Work
|
2024-10-22 11:13:41 +00:00
|
|
|
notification = fmt.Sprintf("Session %d/%d: %s %0.f minutes", session, sessions, mode, float32(duration)/60)
|
|
|
|
case "ShortBreak":
|
2024-10-23 11:48:16 +00:00
|
|
|
duration = pomodoro.PomodoroSettings.ShortBreak
|
2024-10-22 11:13:41 +00:00
|
|
|
notification = fmt.Sprintf("Session %d/%d: Take a %0.f minute break", session, sessions, float32(duration)/60)
|
|
|
|
case "LongBreak":
|
2024-10-23 11:48:16 +00:00
|
|
|
duration = pomodoro.PomodoroSettings.LongBreak
|
2024-10-22 11:13:41 +00:00
|
|
|
notification = fmt.Sprintf("Long Break: Take a %0.f minute break", float32(duration)/60)
|
|
|
|
case "End":
|
|
|
|
duration = 0
|
|
|
|
notification = fmt.Sprintf("Pomodoro sessions complete! Great job! 🎉")
|
|
|
|
}
|
|
|
|
|
2024-10-23 11:48:16 +00:00
|
|
|
if pomodoro.TimeLeft == duration { // start of segment
|
2024-10-22 11:13:41 +00:00
|
|
|
beeep.Alert("🍅 Pomodoro Timer", notification, "")
|
|
|
|
}
|
|
|
|
}
|