mirror of
https://github.com/SimpleMobileTools/Simple-Clock.git
synced 2025-04-04 05:41:03 +02:00
Reuse existing alarms on ACTION_SET_ALARM
This commit is contained in:
parent
21031a9089
commit
12f5e530e6
@ -72,8 +72,6 @@ class IntentHandlerActivity : SimpleActivity() {
|
|||||||
val skipUi = getBooleanExtra(AlarmClock.EXTRA_SKIP_UI, false)
|
val skipUi = getBooleanExtra(AlarmClock.EXTRA_SKIP_UI, false)
|
||||||
val defaultAlarmSound = getDefaultAlarmSound(RingtoneManager.TYPE_ALARM)
|
val defaultAlarmSound = getDefaultAlarmSound(RingtoneManager.TYPE_ALARM)
|
||||||
|
|
||||||
// TODO: Find existing alarm and reuse
|
|
||||||
|
|
||||||
var weekDays = 0
|
var weekDays = 0
|
||||||
days?.forEach {
|
days?.forEach {
|
||||||
weekDays += getBitForCalendarDay(it)
|
weekDays += getBitForCalendarDay(it)
|
||||||
@ -98,6 +96,33 @@ class IntentHandlerActivity : SimpleActivity() {
|
|||||||
}
|
}
|
||||||
} ?: defaultAlarmSound
|
} ?: defaultAlarmSound
|
||||||
|
|
||||||
|
// We don't want to accidentally edit existing alarm, so allow reuse only when skipping UI
|
||||||
|
if (hasExtra(AlarmClock.EXTRA_HOUR) && skipUi) {
|
||||||
|
var daysToCompare = weekDays
|
||||||
|
val timeInMinutes = hour * 60 + minute
|
||||||
|
if (weekDays <= 0) {
|
||||||
|
daysToCompare = if (timeInMinutes > getCurrentDayMinutes()) {
|
||||||
|
TODAY_BIT
|
||||||
|
} else {
|
||||||
|
TOMORROW_BIT
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val existingAlarm = dbHelper.getAlarms().firstOrNull {
|
||||||
|
it.days == daysToCompare
|
||||||
|
&& it.vibrate == vibrate
|
||||||
|
&& it.soundTitle == soundToUse.title
|
||||||
|
&& it.soundUri == soundToUse.uri
|
||||||
|
&& it.label == (message ?: "")
|
||||||
|
&& it.timeInMinutes == timeInMinutes
|
||||||
|
}
|
||||||
|
|
||||||
|
if (existingAlarm != null && !existingAlarm.isEnabled) {
|
||||||
|
existingAlarm.isEnabled = true
|
||||||
|
startAlarm(existingAlarm)
|
||||||
|
finish()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
val newAlarm = createNewAlarm(DEFAULT_ALARM_MINUTES, 0)
|
val newAlarm = createNewAlarm(DEFAULT_ALARM_MINUTES, 0)
|
||||||
newAlarm.isEnabled = true
|
newAlarm.isEnabled = true
|
||||||
newAlarm.days = weekDays
|
newAlarm.days = weekDays
|
||||||
@ -163,7 +188,9 @@ class IntentHandlerActivity : SimpleActivity() {
|
|||||||
val existingTimer = it.firstOrNull { it.state is TimerState.Idle }
|
val existingTimer = it.firstOrNull { it.state is TimerState.Idle }
|
||||||
|
|
||||||
// We don't want to accidentally edit existing timer, so allow reuse only when skipping UI
|
// We don't want to accidentally edit existing timer, so allow reuse only when skipping UI
|
||||||
if (existingTimer != null && skipUi) {
|
if (existingTimer != null
|
||||||
|
&& skipUi
|
||||||
|
&& (existingTimer.state is TimerState.Idle || (existingTimer.state is TimerState.Finished && !existingTimer.oneShot))) {
|
||||||
startTimer(existingTimer)
|
startTimer(existingTimer)
|
||||||
} else {
|
} else {
|
||||||
createAndStartNewTimer()
|
createAndStartNewTimer()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user