Sebastian Mark
bbc9977f1c
- remove `shared` package and shared.Message - rename `notifications` package to `frontend` - introduce a channel send the received ServerMessages to the frontend handler(s) - move keyhandler to goroutine - simplify password handling in Start function - update import names when importing from GoTomoto
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
package frontend
|
|
|
|
import (
|
|
"fmt"
|
|
GoTomato "git.smsvc.net/pomodoro/GoTomato/pkg/models"
|
|
"github.com/fatih/color"
|
|
"strings"
|
|
)
|
|
|
|
func terminalOutput(pomodoro GoTomato.ServerMessage) {
|
|
var modePrefix string
|
|
var timerOutput string
|
|
|
|
fmt.Print("\033[H\033[2J") // Clears the screen
|
|
|
|
// header
|
|
color.Blue("Work: %d ◊ Break: %d ◊ Longbreak: %d\n\n",
|
|
pomodoro.PomodoroSettings.Work/60,
|
|
pomodoro.PomodoroSettings.ShortBreak/60,
|
|
pomodoro.PomodoroSettings.LongBreak/60,
|
|
)
|
|
|
|
//body
|
|
switch pomodoro.Mode {
|
|
case "Idle":
|
|
modePrefix = " "
|
|
timerOutput = ""
|
|
default:
|
|
modePrefix = " "
|
|
if pomodoro.Paused {
|
|
modePrefix = " "
|
|
}
|
|
minutes := pomodoro.TimeLeft / 60
|
|
seconds := pomodoro.TimeLeft % 60
|
|
|
|
timerOutput = fmt.Sprintf("⏳ %02d:%02d", minutes, seconds)
|
|
}
|
|
|
|
fmt.Printf("Session: %d/%d\n",
|
|
pomodoro.Session,
|
|
pomodoro.PomodoroSettings.Sessions,
|
|
)
|
|
fmt.Printf("%s %s\n", modePrefix, pomodoro.Mode)
|
|
fmt.Printf(timerOutput)
|
|
|
|
//footer
|
|
fmt.Printf(strings.Repeat("\n", 3))
|
|
color.White("space: start/pause/resume • s: stop • r: reset pomodoro • q: quit")
|
|
}
|