fix: Only update notification progress segments on play/pause
This commit is contained in:
@@ -69,6 +69,8 @@ class TimerService : Service() {
|
|||||||
|
|
||||||
private val cs by lazy { timerRepository.colorScheme }
|
private val cs by lazy { timerRepository.colorScheme }
|
||||||
|
|
||||||
|
private lateinit var notificationStyle: NotificationCompat.ProgressStyle
|
||||||
|
|
||||||
override fun onBind(intent: Intent?): IBinder? {
|
override fun onBind(intent: Intent?): IBinder? {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
@@ -101,6 +103,8 @@ class TimerService : Service() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun toggleTimer() {
|
private fun toggleTimer() {
|
||||||
|
updateProgressSegments()
|
||||||
|
|
||||||
if (timerState.value.timerRunning) {
|
if (timerState.value.timerRunning) {
|
||||||
notificationBuilder.clearActions().addTimerActions(
|
notificationBuilder.clearActions().addTimerActions(
|
||||||
this, R.drawable.play, "Start"
|
this, R.drawable.play, "Start"
|
||||||
@@ -194,42 +198,7 @@ class TimerService : Service() {
|
|||||||
)
|
)
|
||||||
.setContentText("Up next: $nextTimer (${timerState.value.nextTimeStr})")
|
.setContentText("Up next: $nextTimer (${timerState.value.nextTimeStr})")
|
||||||
.setStyle(
|
.setStyle(
|
||||||
NotificationCompat.ProgressStyle()
|
notificationStyle
|
||||||
.also {
|
|
||||||
// Add all the Focus, Short break and long break intervals in order
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.BAKLAVA) {
|
|
||||||
// Android 16 and later supports live updates
|
|
||||||
// Set progress bar sections if on Baklava or later
|
|
||||||
for (i in 0..<timerRepository.sessionLength * 2) {
|
|
||||||
if (i % 2 == 0) it.addProgressSegment(
|
|
||||||
NotificationCompat.ProgressStyle.Segment(
|
|
||||||
timerRepository.focusTime.toInt()
|
|
||||||
)
|
|
||||||
.setColor(cs.primary.toArgb())
|
|
||||||
)
|
|
||||||
else if (i != (timerRepository.sessionLength * 2 - 1)) it.addProgressSegment(
|
|
||||||
NotificationCompat.ProgressStyle.Segment(
|
|
||||||
timerRepository.shortBreakTime.toInt()
|
|
||||||
).setColor(cs.tertiary.toArgb())
|
|
||||||
)
|
|
||||||
else it.addProgressSegment(
|
|
||||||
NotificationCompat.ProgressStyle.Segment(
|
|
||||||
timerRepository.longBreakTime.toInt()
|
|
||||||
).setColor(cs.tertiary.toArgb())
|
|
||||||
)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
it.addProgressSegment(
|
|
||||||
NotificationCompat.ProgressStyle.Segment(
|
|
||||||
when (timerState.value.timerMode) {
|
|
||||||
TimerMode.FOCUS -> timerRepository.focusTime.toInt()
|
|
||||||
TimerMode.SHORT_BREAK -> timerRepository.shortBreakTime.toInt()
|
|
||||||
else -> timerRepository.longBreakTime.toInt()
|
|
||||||
}
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.setProgress( // Set the current progress by filling the previous intervals and part of the current interval
|
.setProgress( // Set the current progress by filling the previous intervals and part of the current interval
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.BAKLAVA) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.BAKLAVA) {
|
||||||
(totalTime - remainingTime) + ((cycles + 1) / 2) * timerRepository.focusTime.toInt() + (cycles / 2) * timerRepository.shortBreakTime.toInt()
|
(totalTime - remainingTime) + ((cycles + 1) / 2) * timerRepository.focusTime.toInt() + (cycles / 2) * timerRepository.shortBreakTime.toInt()
|
||||||
@@ -249,6 +218,45 @@ class TimerService : Service() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun updateProgressSegments() {
|
||||||
|
notificationStyle = NotificationCompat.ProgressStyle()
|
||||||
|
.also {
|
||||||
|
// Add all the Focus, Short break and long break intervals in order
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.BAKLAVA) {
|
||||||
|
// Android 16 and later supports live updates
|
||||||
|
// Set progress bar sections if on Baklava or later
|
||||||
|
for (i in 0..<timerRepository.sessionLength * 2) {
|
||||||
|
if (i % 2 == 0) it.addProgressSegment(
|
||||||
|
NotificationCompat.ProgressStyle.Segment(
|
||||||
|
timerRepository.focusTime.toInt()
|
||||||
|
)
|
||||||
|
.setColor(cs.primary.toArgb())
|
||||||
|
)
|
||||||
|
else if (i != (timerRepository.sessionLength * 2 - 1)) it.addProgressSegment(
|
||||||
|
NotificationCompat.ProgressStyle.Segment(
|
||||||
|
timerRepository.shortBreakTime.toInt()
|
||||||
|
).setColor(cs.tertiary.toArgb())
|
||||||
|
)
|
||||||
|
else it.addProgressSegment(
|
||||||
|
NotificationCompat.ProgressStyle.Segment(
|
||||||
|
timerRepository.longBreakTime.toInt()
|
||||||
|
).setColor(cs.tertiary.toArgb())
|
||||||
|
)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
it.addProgressSegment(
|
||||||
|
NotificationCompat.ProgressStyle.Segment(
|
||||||
|
when (timerState.value.timerMode) {
|
||||||
|
TimerMode.FOCUS -> timerRepository.focusTime.toInt()
|
||||||
|
TimerMode.SHORT_BREAK -> timerRepository.shortBreakTime.toInt()
|
||||||
|
else -> timerRepository.longBreakTime.toInt()
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun resetTimer() {
|
private fun resetTimer() {
|
||||||
skipScope.launch {
|
skipScope.launch {
|
||||||
saveTimeToDb()
|
saveTimeToDb()
|
||||||
|
|||||||
Reference in New Issue
Block a user