Code arranged as per PR suggestions
This commit is contained in:
parent
8c3eb7a3ca
commit
625e3a0a0a
|
@ -42,7 +42,6 @@ public enum PodHistoryEntryType {
|
||||||
|
|
||||||
UNKNOWN_ENTRY_TYPE(99, R.string.omnipod_cmd_unknown_entry);
|
UNKNOWN_ENTRY_TYPE(99, R.string.omnipod_cmd_unknown_entry);
|
||||||
|
|
||||||
|
|
||||||
private int code;
|
private int code;
|
||||||
private static final Map<Integer, PodHistoryEntryType> instanceMap;
|
private static final Map<Integer, PodHistoryEntryType> instanceMap;
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ public class ConfigureBeepAction implements OmnipodAction<StatusResponse> {
|
||||||
|
|
||||||
public ConfigureBeepAction(PodStateManager podState, BeepConfigType beepType, boolean basalCompletionBeep, Duration basalIntervalBeep, boolean tempBasalCompletionBeep, Duration tempBasalIntervalBeep, boolean bolusCompletionBeep, Duration bolusIntervalBeep) {
|
public ConfigureBeepAction(PodStateManager podState, BeepConfigType beepType, boolean basalCompletionBeep, Duration basalIntervalBeep, boolean tempBasalCompletionBeep, Duration tempBasalIntervalBeep, boolean bolusCompletionBeep, Duration bolusIntervalBeep) {
|
||||||
if (podState == null || beepType == null) {
|
if (podState == null || beepType == null) {
|
||||||
throw new IllegalArgumentException("Pod state manager cannot be null");
|
throw new IllegalArgumentException("Required parameter(s) missing");
|
||||||
}
|
}
|
||||||
|
|
||||||
this.beepType = beepType;
|
this.beepType = beepType;
|
||||||
|
@ -41,8 +41,8 @@ public class ConfigureBeepAction implements OmnipodAction<StatusResponse> {
|
||||||
@Override
|
@Override
|
||||||
public StatusResponse execute(OmnipodRileyLinkCommunicationManager communicationService) {
|
public StatusResponse execute(OmnipodRileyLinkCommunicationManager communicationService) {
|
||||||
return communicationService.sendCommand(
|
return communicationService.sendCommand(
|
||||||
StatusResponse.class, podStateManager
|
StatusResponse.class, podStateManager,
|
||||||
, new BeepConfigCommand(beepType, basalCompletionBeep, basalIntervalBeep,
|
new BeepConfigCommand(beepType, basalCompletionBeep, basalIntervalBeep,
|
||||||
tempBasalCompletionBeep, tempBasalIntervalBeep,
|
tempBasalCompletionBeep, tempBasalIntervalBeep,
|
||||||
bolusCompletionBeep, bolusIntervalBeep));
|
bolusCompletionBeep, bolusIntervalBeep));
|
||||||
}
|
}
|
||||||
|
|
|
@ -435,7 +435,10 @@ public class OmnipodManager {
|
||||||
if (!podStateManager.isPodInitialized()) {
|
if (!podStateManager.isPodInitialized()) {
|
||||||
throw new IllegalPodProgressException(PodProgressStatus.REMINDER_INITIALIZED, null);
|
throw new IllegalPodProgressException(PodProgressStatus.REMINDER_INITIALIZED, null);
|
||||||
}
|
}
|
||||||
communicationService.executeAction(new ConfigureBeepAction(podStateManager, beepType, false, Duration.ZERO, false, Duration.ZERO, false, Duration.ZERO));
|
communicationService.executeAction(new ConfigureBeepAction(
|
||||||
|
podStateManager, beepType, basalCompletionBeep,
|
||||||
|
basalIntervalBeep, tempBasalCompletionBeep, tempBasalIntervalBeep,
|
||||||
|
bolusCompletionBeep, bolusIntervalBeep));
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void playTestBeep(BeepConfigType beepType) {
|
public synchronized void playTestBeep(BeepConfigType beepType) {
|
||||||
|
|
|
@ -251,7 +251,6 @@ public class AapsOmnipodManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public PumpEnactResult getPodStatus() {
|
public PumpEnactResult getPodStatus() {
|
||||||
StatusResponse statusResponse;
|
StatusResponse statusResponse;
|
||||||
|
|
||||||
|
@ -634,7 +633,8 @@ public class AapsOmnipodManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isTestBeepButtonEnabled() {
|
public boolean isTestBeepButtonEnabled() {
|
||||||
return testBeepButtonEnabled; }
|
return testBeepButtonEnabled;
|
||||||
|
}
|
||||||
|
|
||||||
public boolean isRileylinkStatsButtonEnabled() {
|
public boolean isRileylinkStatsButtonEnabled() {
|
||||||
return rileylinkStatsButtonEnabled;
|
return rileylinkStatsButtonEnabled;
|
||||||
|
|
|
@ -9,7 +9,7 @@ public enum OmnipodCustomCommandType {
|
||||||
DEACTIVATE_POD("DEACTIVATE POD"),
|
DEACTIVATE_POD("DEACTIVATE POD"),
|
||||||
HANDLE_TIME_CHANGE("HANDLE TIME CHANGE"),
|
HANDLE_TIME_CHANGE("HANDLE TIME CHANGE"),
|
||||||
UPDATE_ALERT_CONFIGURATION("UPDATE ALERT CONFIGURATION"),
|
UPDATE_ALERT_CONFIGURATION("UPDATE ALERT CONFIGURATION"),
|
||||||
PLAY_TEST_BEEP("EMIT BEEP")
|
PLAY_TEST_BEEP("PLAY TEST BEEP")
|
||||||
;
|
;
|
||||||
|
|
||||||
private final String description;
|
private final String description;
|
||||||
|
|
|
@ -533,7 +533,9 @@ class OmnipodOverviewFragment : DaggerFragment() {
|
||||||
private fun updateTestBeepButton() {
|
private fun updateTestBeepButton() {
|
||||||
if (omnipodManager.isTestBeepButtonEnabled) {
|
if (omnipodManager.isTestBeepButtonEnabled) {
|
||||||
omnipod_overview_button_test_beep.visibility = View.VISIBLE
|
omnipod_overview_button_test_beep.visibility = View.VISIBLE
|
||||||
omnipod_overview_button_test_beep.isEnabled = podStateManager.isPodActivationCompleted && rileyLinkServiceData.rileyLinkServiceState.isReady && isQueueEmpty()
|
omnipod_overview_button_test_beep.isEnabled = podStateManager.isPodInitialized &&
|
||||||
|
podStateManager.activationProgress.isAtLeast(ActivationProgress.PAIRING_COMPLETED) &&
|
||||||
|
rileyLinkServiceData.rileyLinkServiceState.isReady && isQueueEmpty()
|
||||||
} else {
|
} else {
|
||||||
omnipod_overview_button_test_beep.visibility = View.GONE
|
omnipod_overview_button_test_beep.visibility = View.GONE
|
||||||
}
|
}
|
||||||
|
|
|
@ -825,8 +825,7 @@
|
||||||
android:drawableTop="@drawable/ic_play_test_beep"
|
android:drawableTop="@drawable/ic_play_test_beep"
|
||||||
android:paddingLeft="0dp"
|
android:paddingLeft="0dp"
|
||||||
android:paddingRight="0dp"
|
android:paddingRight="0dp"
|
||||||
android:text="@string/omnipod_overview_button_test_beep"
|
android:text="@string/omnipod_overview_button_test_beep" />
|
||||||
/>
|
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/omnipod_overview_button_pulse_log"
|
android:id="@+id/omnipod_overview_button_pulse_log"
|
||||||
|
|
|
@ -10,6 +10,8 @@
|
||||||
<string name="key_omnipod_tbr_beeps_enabled" translatable="false">AAPS.Omnipod.tbr_beeps_enabled</string>
|
<string name="key_omnipod_tbr_beeps_enabled" translatable="false">AAPS.Omnipod.tbr_beeps_enabled</string>
|
||||||
<string name="key_omnipod_suspend_delivery_button_enabled" translatable="false">AAPS.Omnipod.suspend_delivery_button_enabled</string>
|
<string name="key_omnipod_suspend_delivery_button_enabled" translatable="false">AAPS.Omnipod.suspend_delivery_button_enabled</string>
|
||||||
<string name="key_omnipod_pulse_log_button_enabled" translatable="false">AAPS.Omnipod.pulse_log_button_enabled</string>
|
<string name="key_omnipod_pulse_log_button_enabled" translatable="false">AAPS.Omnipod.pulse_log_button_enabled</string>
|
||||||
|
<string name="key_omnipod_test_beep_button_enabled">AAPS.Omnipod.test_beep_button_enabled</string>
|
||||||
|
<string name="key_omnipod_rileylink_stats_button_enabled">AAPS.Omnipod.rileylink_stats_button_enabled</string>
|
||||||
<string name="key_omnipod_time_change_event_enabled" translatable="false">AAPS.Omnipod.time_change_enabled</string>
|
<string name="key_omnipod_time_change_event_enabled" translatable="false">AAPS.Omnipod.time_change_enabled</string>
|
||||||
<string name="key_omnipod_expiration_reminder_enabled" translatable="false">AAPS.Omnipod.expiration_reminder_enabled</string>
|
<string name="key_omnipod_expiration_reminder_enabled" translatable="false">AAPS.Omnipod.expiration_reminder_enabled</string>
|
||||||
<string name="key_omnipod_expiration_reminder_hours_before_shutdown" translatable="false">AAPS.Omnipod.expiration_reminder_hours_before_shutdown</string>
|
<string name="key_omnipod_expiration_reminder_hours_before_shutdown" translatable="false">AAPS.Omnipod.expiration_reminder_hours_before_shutdown</string>
|
||||||
|
@ -41,6 +43,8 @@
|
||||||
<string name="omnipod_config_tbr_beeps_enabled">TBR beeps enabled</string>
|
<string name="omnipod_config_tbr_beeps_enabled">TBR beeps enabled</string>
|
||||||
<string name="omnipod_config_suspend_delivery_button_enabled">Suspend Delivery button enabled</string>
|
<string name="omnipod_config_suspend_delivery_button_enabled">Suspend Delivery button enabled</string>
|
||||||
<string name="omnipod_config_pulse_log_button_enabled">Pulse Log button enabled</string>
|
<string name="omnipod_config_pulse_log_button_enabled">Pulse Log button enabled</string>
|
||||||
|
<string name="omnipod_config_test_beep_button_enabled">Test beep button enabled</string>
|
||||||
|
<string name="omnipod_config_rileylink_stats_button_enabled">RileyLink Stats button enabled</string>
|
||||||
<string name="omnipod_config_time_change_enabled">DST/Time zone detection enabled</string>
|
<string name="omnipod_config_time_change_enabled">DST/Time zone detection enabled</string>
|
||||||
<string name="omnipod_config_expiration_reminder_enabled">Expiration reminder enabled</string>
|
<string name="omnipod_config_expiration_reminder_enabled">Expiration reminder enabled</string>
|
||||||
<string name="omnipod_config_expiration_reminder_hours_before_shutdown">Hours before shutdown</string>
|
<string name="omnipod_config_expiration_reminder_hours_before_shutdown">Hours before shutdown</string>
|
||||||
|
@ -135,6 +139,7 @@
|
||||||
<string name="omnipod_error_pod_fault_activation_time_exceeded">The Pod\'s activation time has been exceeded. This Pod can no longer be activated.</string>
|
<string name="omnipod_error_pod_fault_activation_time_exceeded">The Pod\'s activation time has been exceeded. This Pod can no longer be activated.</string>
|
||||||
<string name="omnipod_error_failed_to_verify_activation_progress">Failed to verify activation progress. Please retry.</string>
|
<string name="omnipod_error_failed_to_verify_activation_progress">Failed to verify activation progress. Please retry.</string>
|
||||||
<string name="omnipod_error_pod_suspended">Pod suspended</string>
|
<string name="omnipod_error_pod_suspended">Pod suspended</string>
|
||||||
|
<string name="omnipod_error_failed_to_play_test_beep">Failed to play test beep</string>
|
||||||
|
|
||||||
<!-- Omnipod - Confirmation -->
|
<!-- Omnipod - Confirmation -->
|
||||||
<string name="omnipod_confirmation">Confirmation</string>
|
<string name="omnipod_confirmation">Confirmation</string>
|
||||||
|
@ -167,6 +172,8 @@
|
||||||
<string name="omnipod_cmd_read_pulse_log">Read pulse log</string>
|
<string name="omnipod_cmd_read_pulse_log">Read pulse log</string>
|
||||||
<string name="omnipod_cmd_set_fake_suspended_tbr">Set fake temporary basal because the Pod is suspended</string>
|
<string name="omnipod_cmd_set_fake_suspended_tbr">Set fake temporary basal because the Pod is suspended</string>
|
||||||
<string name="omnipod_cmd_cancel_fake_suspended_tbr">Cancel fake temporary basal that was created because the Pod was suspended</string>
|
<string name="omnipod_cmd_cancel_fake_suspended_tbr">Cancel fake temporary basal that was created because the Pod was suspended</string>
|
||||||
|
<string name="omnipod_cmd_beep_config">Beep config</string>
|
||||||
|
<string name="omnipod_cmd_play_test_beep">Play test beep</string>
|
||||||
|
|
||||||
<!-- Omnipod - Pod Management -->
|
<!-- Omnipod - Pod Management -->
|
||||||
<string name="omnipod_pod_management_title">Pod management</string>
|
<string name="omnipod_pod_management_title">Pod management</string>
|
||||||
|
@ -221,6 +228,7 @@
|
||||||
<string name="omnipod_overview_button_resume_delivery">Resume delivery</string>
|
<string name="omnipod_overview_button_resume_delivery">Resume delivery</string>
|
||||||
<string name="omnipod_overview_button_pod_management">Pod mgmt</string>
|
<string name="omnipod_overview_button_pod_management">Pod mgmt</string>
|
||||||
<string name="omnipod_overview_button_acknowledge_active_alerts">Ack alerts</string>
|
<string name="omnipod_overview_button_acknowledge_active_alerts">Ack alerts</string>
|
||||||
|
<string name="omnipod_overview_button_test_beep">Test beep</string>
|
||||||
<string name="omnipod_overview_pod_status">Pod status</string>
|
<string name="omnipod_overview_pod_status">Pod status</string>
|
||||||
<string name="omnipod_overview_total_delivered">Total delivered</string>
|
<string name="omnipod_overview_total_delivered">Total delivered</string>
|
||||||
<string name="omnipod_overview_total_delivered_value">%1$.2f U</string>
|
<string name="omnipod_overview_total_delivered_value">%1$.2f U</string>
|
||||||
|
@ -255,14 +263,6 @@
|
||||||
<string name="omnipod_less_than_a_minute_ago">Less than a minute ago</string>
|
<string name="omnipod_less_than_a_minute_ago">Less than a minute ago</string>
|
||||||
<string name="omnipod_composite_time">%1$s and %2$s</string>
|
<string name="omnipod_composite_time">%1$s and %2$s</string>
|
||||||
<string name="omnipod_time_ago">%1$s ago</string>
|
<string name="omnipod_time_ago">%1$s ago</string>
|
||||||
<string name="omnipod_cmd_beep_config">Beep config</string>
|
|
||||||
<string name="omnipod_cmd_play_test_beep">Play test beep</string>
|
|
||||||
<string name="key_omnipod_test_beep_button_enabled">AAPS.Omnipod.test_beep_button_enabled</string>
|
|
||||||
<string name="omnipod_config_test_beep_button_enabled">Test beep button enabled</string>
|
|
||||||
<string name="omnipod_overview_button_test_beep">Test beep</string>
|
|
||||||
<string name="omnipod_config_rileylink_stats_button_enabled">RileyLink Stats button enabled</string>
|
|
||||||
<string name="key_omnipod_rileylink_stats_button_enabled">AAPS.Omnipod.rileylink_stats_button_enabled</string>
|
|
||||||
<string name="omnipod_error_failed_to_play_test_beep">Failed to play test beep</string>
|
|
||||||
<plurals name="omnipod_minutes">
|
<plurals name="omnipod_minutes">
|
||||||
<item quantity="one">%1$d minute</item>
|
<item quantity="one">%1$d minute</item>
|
||||||
<item quantity="other">%1$d minutes</item>
|
<item quantity="other">%1$d minutes</item>
|
||||||
|
|
Loading…
Reference in a new issue