1
0
mirror of https://github.com/Toxblh/MTMR.git synced 2026-01-11 17:38:38 +00:00

Merge branch 'master' into feature/icon-or-label-for-groups

This commit is contained in:
maandagdev 2020-01-24 01:21:47 +01:00 committed by GitHub
commit ef0fd7f16b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 56 deletions

15
.github/workflows/swift.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Swift
on: [push]
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v

View File

@ -34,18 +34,16 @@ class PomodoroBarItem: CustomButtonTouchBarItem, Widget {
case rest case rest
case none case none
} }
//Vars are used for pausing the timer.
private var started = false
private var timerPaused: Bool = false;
private let defaultTitle = "" private let defaultTitle = "🍅 "
private let workTime: TimeInterval private let workTime: TimeInterval
private let restTime: TimeInterval private let restTime: TimeInterval
private var typeTime: TimeTypes = .none private var typeTime: TimeTypes = .none
private var timer: DispatchSourceTimer? private var timer: DispatchSourceTimer?
private var timeLeft: Int = 0 private var timeLeft: Int = 0
private var timeLeftString: String { private var timeLeftString: String {
return String(format: "%.2i:%.2i ", timeLeft / 60, timeLeft % 60) return String(format: "%.2i:%.2i", timeLeft / 60, timeLeft % 60)
} }
init(identifier: NSTouchBarItem.Identifier, workTime: TimeInterval, restTime: TimeInterval) { init(identifier: NSTouchBarItem.Identifier, workTime: TimeInterval, restTime: TimeInterval) {
@ -64,27 +62,13 @@ class PomodoroBarItem: CustomButtonTouchBarItem, Widget {
timer?.cancel() timer?.cancel()
timer = nil timer = nil
} }
@objc func startStopWork() { @objc func startStopWork() {
if !started {
started = true;
typeTime = .work typeTime = .work
startStopTimer() startStopTimer()
} else {
if timerPaused {
timerPaused = false;
resumeTimer();
} else {
timerPaused = true;
pauseTimer();
}
}
print("short")
} }
@objc func startStopRest() { @objc func startStopRest() {
print("looong")
started = false;
typeTime = .rest typeTime = .rest
startStopTimer() startStopTimer()
} }
@ -93,16 +77,6 @@ class PomodoroBarItem: CustomButtonTouchBarItem, Widget {
timer == nil ? start() : reset() timer == nil ? start() : reset()
} }
func resumeTimer() {
guard let timervalue = timer else { return }
timervalue.resume();
}
func pauseTimer() {
guard let timervalue = timer else { return }
timervalue.suspend();
}
private func start() { private func start() {
timeLeft = Int(typeTime == .work ? workTime : restTime) timeLeft = Int(typeTime == .work ? workTime : restTime)
let queue: DispatchQueue = DispatchQueue(label: "Timer") let queue: DispatchQueue = DispatchQueue(label: "Timer")
@ -125,13 +99,8 @@ class PomodoroBarItem: CustomButtonTouchBarItem, Widget {
private func reset() { private func reset() {
typeTime = .none typeTime = .none
timer?.cancel() timer?.cancel()
if timerPaused {
resumeTimer()
}
timer = nil timer = nil
title = defaultTitle title = defaultTitle
timerPaused = false
started = false
} }
private func tick() { private func tick() {
@ -152,6 +121,4 @@ class PomodoroBarItem: CustomButtonTouchBarItem, Widget {
notification.soundName = "Submarine" notification.soundName = "Submarine"
NSUserNotificationCenter.default.deliver(notification) NSUserNotificationCenter.default.deliver(notification)
} }
} }