2019-12-20 18:55:54 +01:00
|
|
|
package info.nightscout.androidaps.dialogs
|
2019-12-20 14:52:10 +01:00
|
|
|
|
|
|
|
import android.content.Intent
|
|
|
|
import android.os.Bundle
|
|
|
|
import android.text.Editable
|
|
|
|
import android.text.TextWatcher
|
|
|
|
import android.view.LayoutInflater
|
|
|
|
import android.view.View
|
|
|
|
import android.view.ViewGroup
|
|
|
|
import com.google.common.base.Joiner
|
|
|
|
import info.nightscout.androidaps.Constants
|
|
|
|
import info.nightscout.androidaps.MainApp
|
|
|
|
import info.nightscout.androidaps.R
|
2019-12-20 23:05:35 +01:00
|
|
|
import info.nightscout.androidaps.activities.ErrorHelperActivity
|
2019-12-20 14:52:10 +01:00
|
|
|
import info.nightscout.androidaps.data.DetailedBolusInfo
|
|
|
|
import info.nightscout.androidaps.data.Profile
|
|
|
|
import info.nightscout.androidaps.db.CareportalEvent
|
|
|
|
import info.nightscout.androidaps.db.Source
|
|
|
|
import info.nightscout.androidaps.db.TempTarget
|
|
|
|
import info.nightscout.androidaps.interfaces.Constraint
|
|
|
|
import info.nightscout.androidaps.plugins.configBuilder.ConfigBuilderPlugin
|
2019-12-27 19:20:38 +01:00
|
|
|
import info.nightscout.androidaps.plugins.configBuilder.ConstraintChecker
|
|
|
|
import info.nightscout.androidaps.plugins.configBuilder.ProfileFunction
|
2019-12-20 14:52:10 +01:00
|
|
|
import info.nightscout.androidaps.plugins.treatments.TreatmentsPlugin
|
|
|
|
import info.nightscout.androidaps.queue.Callback
|
|
|
|
import info.nightscout.androidaps.utils.*
|
2019-12-31 11:57:58 +01:00
|
|
|
import info.nightscout.androidaps.utils.extensions.toSignedString
|
2019-12-27 19:20:38 +01:00
|
|
|
import info.nightscout.androidaps.utils.resources.ResourceHelper
|
2019-12-20 23:05:35 +01:00
|
|
|
import kotlinx.android.synthetic.main.dialog_insulin.*
|
2019-12-20 14:52:10 +01:00
|
|
|
import kotlinx.android.synthetic.main.notes.*
|
|
|
|
import kotlinx.android.synthetic.main.okcancel.*
|
|
|
|
import java.text.DecimalFormat
|
|
|
|
import java.util.*
|
2019-12-27 19:20:38 +01:00
|
|
|
import javax.inject.Inject
|
2019-12-20 14:52:10 +01:00
|
|
|
import kotlin.math.abs
|
|
|
|
import kotlin.math.max
|
|
|
|
|
|
|
|
class InsulinDialog : DialogFragmentWithDate() {
|
2019-12-30 00:53:44 +01:00
|
|
|
@Inject lateinit var constraintChecker: ConstraintChecker
|
|
|
|
@Inject lateinit var mainApp: MainApp
|
|
|
|
@Inject lateinit var resourceHelper: ResourceHelper
|
|
|
|
@Inject lateinit var profileFunction: ProfileFunction
|
|
|
|
@Inject lateinit var configBuilderPlugin: ConfigBuilderPlugin
|
|
|
|
@Inject lateinit var treatmentsPlugin: TreatmentsPlugin
|
2019-12-27 19:20:38 +01:00
|
|
|
|
2019-12-20 14:52:10 +01:00
|
|
|
companion object {
|
|
|
|
private const val PLUS1_DEFAULT = 0.5
|
|
|
|
private const val PLUS2_DEFAULT = 1.0
|
|
|
|
private const val PLUS3_DEFAULT = 2.0
|
|
|
|
}
|
|
|
|
|
|
|
|
private val textWatcher: TextWatcher = object : TextWatcher {
|
|
|
|
override fun afterTextChanged(s: Editable) {
|
|
|
|
validateInputs()
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) {}
|
|
|
|
override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun validateInputs() {
|
2019-12-27 19:20:38 +01:00
|
|
|
val maxInsulin = constraintChecker.getMaxBolusAllowed().value()
|
2019-12-20 14:52:10 +01:00
|
|
|
if (abs(overview_insulin_time.value.toInt()) > 12 * 60) {
|
|
|
|
overview_insulin_time.value = 0.0
|
2019-12-27 19:20:38 +01:00
|
|
|
ToastUtils.showToastInUiThread(mainApp, resourceHelper.gs(R.string.constraintapllied))
|
2019-12-20 14:52:10 +01:00
|
|
|
}
|
|
|
|
if (overview_insulin_amount.value > maxInsulin) {
|
|
|
|
overview_insulin_amount.value = 0.0
|
2019-12-27 19:20:38 +01:00
|
|
|
ToastUtils.showToastInUiThread(mainApp, resourceHelper.gs(R.string.bolusconstraintapplied))
|
2019-12-20 14:52:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onSaveInstanceState(savedInstanceState: Bundle) {
|
|
|
|
super.onSaveInstanceState(savedInstanceState)
|
|
|
|
savedInstanceState.putDouble("overview_insulin_time", overview_insulin_time.value)
|
|
|
|
savedInstanceState.putDouble("overview_insulin_amount", overview_insulin_amount.value)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
|
|
|
|
savedInstanceState: Bundle?): View? {
|
2019-12-20 23:05:35 +01:00
|
|
|
onCreateViewGeneral()
|
2019-12-20 18:55:54 +01:00
|
|
|
return inflater.inflate(R.layout.dialog_insulin, container, false)
|
2019-12-20 14:52:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
|
|
|
super.onViewCreated(view, savedInstanceState)
|
|
|
|
|
2019-12-27 19:20:38 +01:00
|
|
|
val maxInsulin = constraintChecker.getMaxBolusAllowed().value()
|
|
|
|
|
2019-12-20 14:52:10 +01:00
|
|
|
overview_insulin_time.setParams(savedInstanceState?.getDouble("overview_insulin_time")
|
2019-12-20 23:05:35 +01:00
|
|
|
?: 0.0, -12 * 60.0, 12 * 60.0, 5.0, DecimalFormat("0"), false, ok, textWatcher)
|
2019-12-20 14:52:10 +01:00
|
|
|
overview_insulin_amount.setParams(savedInstanceState?.getDouble("overview_insulin_amount")
|
2019-12-30 00:53:44 +01:00
|
|
|
?: 0.0, 0.0, maxInsulin, configBuilderPlugin.activePump!!.pumpDescription.bolusStep, DecimalFormatter.pumpSupportedBolusFormat(), false, ok, textWatcher)
|
2019-12-20 14:52:10 +01:00
|
|
|
|
2019-12-31 11:57:58 +01:00
|
|
|
overview_insulin_plus05.text = sp.getDouble(resourceHelper.gs(R.string.key_insulin_button_increment_1), PLUS1_DEFAULT).toSignedString()
|
2019-12-20 14:52:10 +01:00
|
|
|
overview_insulin_plus05.setOnClickListener {
|
|
|
|
overview_insulin_amount.value = max(0.0, overview_insulin_amount.value
|
2019-12-30 00:53:44 +01:00
|
|
|
+ sp.getDouble(resourceHelper.gs(R.string.key_insulin_button_increment_1), PLUS1_DEFAULT))
|
2019-12-20 14:52:10 +01:00
|
|
|
validateInputs()
|
|
|
|
}
|
2019-12-31 11:57:58 +01:00
|
|
|
overview_insulin_plus10.text = sp.getDouble(resourceHelper.gs(R.string.key_insulin_button_increment_2), PLUS2_DEFAULT).toSignedString()
|
2019-12-20 14:52:10 +01:00
|
|
|
overview_insulin_plus10.setOnClickListener {
|
|
|
|
overview_insulin_amount.value = max(0.0, overview_insulin_amount.value
|
2019-12-30 00:53:44 +01:00
|
|
|
+ sp.getDouble(resourceHelper.gs(R.string.key_insulin_button_increment_2), PLUS2_DEFAULT))
|
2019-12-20 14:52:10 +01:00
|
|
|
validateInputs()
|
|
|
|
}
|
2019-12-31 11:57:58 +01:00
|
|
|
overview_insulin_plus20.text = sp.getDouble(resourceHelper.gs(R.string.key_insulin_button_increment_3), PLUS3_DEFAULT).toSignedString()
|
2019-12-20 14:52:10 +01:00
|
|
|
overview_insulin_plus20.setOnClickListener {
|
|
|
|
overview_insulin_amount.value = Math.max(0.0, overview_insulin_amount.value
|
2019-12-30 00:53:44 +01:00
|
|
|
+ sp.getDouble(resourceHelper.gs(R.string.key_insulin_button_increment_3), PLUS3_DEFAULT))
|
2019-12-20 14:52:10 +01:00
|
|
|
validateInputs()
|
|
|
|
}
|
|
|
|
|
|
|
|
overview_insulin_time_layout.visibility = View.GONE
|
|
|
|
overview_insulin_record_only.setOnCheckedChangeListener { _, isChecked: Boolean ->
|
2019-12-20 23:05:35 +01:00
|
|
|
overview_insulin_time_layout.visibility = isChecked.toVisibility()
|
2019-12-20 14:52:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-21 23:17:20 +01:00
|
|
|
override fun submit(): Boolean {
|
2019-12-30 00:53:44 +01:00
|
|
|
val pumpDescription = configBuilderPlugin.activePump?.pumpDescription
|
2019-12-21 23:17:20 +01:00
|
|
|
?: return false
|
2019-12-20 14:52:10 +01:00
|
|
|
val insulin = SafeParse.stringToDouble(overview_insulin_amount.text)
|
2019-12-27 19:20:38 +01:00
|
|
|
val insulinAfterConstraints = constraintChecker.applyBolusConstraints(Constraint(insulin)).value()
|
2019-12-20 14:52:10 +01:00
|
|
|
val actions: LinkedList<String?> = LinkedList()
|
2019-12-27 19:20:38 +01:00
|
|
|
val units = profileFunction.getUnits()
|
|
|
|
val unitLabel = if (units == Constants.MMOL) resourceHelper.gs(R.string.mmol) else resourceHelper.gs(R.string.mgdl)
|
2019-12-20 14:52:10 +01:00
|
|
|
val recordOnlyChecked = overview_insulin_record_only.isChecked
|
|
|
|
val eatingSoonChecked = overview_insulin_start_eating_soon_tt.isChecked
|
|
|
|
|
2019-12-20 15:36:27 +01:00
|
|
|
if (insulinAfterConstraints > 0) {
|
2019-12-27 19:20:38 +01:00
|
|
|
actions.add(resourceHelper.gs(R.string.bolus) + ": " + "<font color='" + resourceHelper.gc(R.color.bolus) + "'>" + DecimalFormatter.toPumpSupportedBolus(insulinAfterConstraints) + resourceHelper.gs(R.string.insulin_unit_shortname) + "</font>")
|
2019-12-20 14:52:10 +01:00
|
|
|
if (recordOnlyChecked)
|
2019-12-27 19:20:38 +01:00
|
|
|
actions.add("<font color='" + resourceHelper.gc(R.color.warning) + "'>" + resourceHelper.gs(R.string.bolusrecordedonly) + "</font>")
|
2019-12-20 15:36:27 +01:00
|
|
|
if (abs(insulinAfterConstraints - insulin) > pumpDescription.pumpType.determineCorrectBolusStepSize(insulinAfterConstraints))
|
2019-12-27 19:20:38 +01:00
|
|
|
actions.add(resourceHelper.gs(R.string.bolusconstraintappliedwarning, resourceHelper.gc(R.color.warning), insulin, insulinAfterConstraints))
|
2019-12-20 14:52:10 +01:00
|
|
|
}
|
|
|
|
val eatingSoonTTDuration = DefaultValueHelper.determineEatingSoonTTDuration()
|
|
|
|
val eatingSoonTT = DefaultValueHelper.determineEatingSoonTT()
|
|
|
|
if (eatingSoonChecked)
|
2019-12-27 19:20:38 +01:00
|
|
|
actions.add(resourceHelper.gs(R.string.temptargetshort) + ": " + "<font color='" + resourceHelper.gc(R.color.tempTargetConfirmation) + "'>" + DecimalFormatter.to1Decimal(eatingSoonTT) + " " + unitLabel + " (" + eatingSoonTTDuration + " " + resourceHelper.gs(R.string.unit_minute_short) + ")</font>")
|
2019-12-20 14:52:10 +01:00
|
|
|
|
|
|
|
val timeOffset = overview_insulin_time.value.toInt()
|
|
|
|
val time = DateUtil.now() + T.mins(timeOffset.toLong()).msecs()
|
|
|
|
if (timeOffset != 0)
|
2019-12-27 19:20:38 +01:00
|
|
|
actions.add(resourceHelper.gs(R.string.time) + ": " + DateUtil.dateAndTimeString(time))
|
2019-12-20 14:52:10 +01:00
|
|
|
|
|
|
|
val notes = notes.text.toString()
|
|
|
|
if (notes.isNotEmpty())
|
2019-12-27 19:20:38 +01:00
|
|
|
actions.add(resourceHelper.gs(R.string.careportal_newnstreatment_notes_label) + ": " + notes)
|
2019-12-20 14:52:10 +01:00
|
|
|
|
|
|
|
if (insulinAfterConstraints > 0 || eatingSoonChecked) {
|
|
|
|
activity?.let { activity ->
|
2019-12-27 19:20:38 +01:00
|
|
|
OKDialog.showConfirmation(activity, resourceHelper.gs(R.string.bolus), HtmlHelper.fromHtml(Joiner.on("<br/>").join(actions)), Runnable {
|
2019-12-20 14:52:10 +01:00
|
|
|
if (eatingSoonChecked) {
|
|
|
|
val tempTarget = TempTarget()
|
2019-12-20 23:05:35 +01:00
|
|
|
.date(System.currentTimeMillis())
|
|
|
|
.duration(eatingSoonTTDuration)
|
2019-12-27 19:20:38 +01:00
|
|
|
.reason(resourceHelper.gs(R.string.eatingsoon))
|
2019-12-20 23:05:35 +01:00
|
|
|
.source(Source.USER)
|
2019-12-27 19:20:38 +01:00
|
|
|
.low(Profile.toMgdl(eatingSoonTT, profileFunction.getUnits()))
|
|
|
|
.high(Profile.toMgdl(eatingSoonTT, profileFunction.getUnits()))
|
2019-12-30 00:53:44 +01:00
|
|
|
treatmentsPlugin.addToHistoryTempTarget(tempTarget)
|
2019-12-20 14:52:10 +01:00
|
|
|
}
|
|
|
|
if (insulinAfterConstraints > 0) {
|
|
|
|
val detailedBolusInfo = DetailedBolusInfo()
|
|
|
|
detailedBolusInfo.eventType = CareportalEvent.CORRECTIONBOLUS
|
|
|
|
detailedBolusInfo.insulin = insulinAfterConstraints
|
|
|
|
detailedBolusInfo.context = context
|
|
|
|
detailedBolusInfo.source = Source.USER
|
|
|
|
detailedBolusInfo.notes = notes
|
|
|
|
if (recordOnlyChecked) {
|
|
|
|
detailedBolusInfo.date = time
|
2019-12-30 00:53:44 +01:00
|
|
|
treatmentsPlugin.addToHistoryTreatment(detailedBolusInfo, false)
|
2019-12-20 14:52:10 +01:00
|
|
|
} else {
|
|
|
|
detailedBolusInfo.date = DateUtil.now()
|
2019-12-30 00:53:44 +01:00
|
|
|
configBuilderPlugin.commandQueue.bolus(detailedBolusInfo, object : Callback() {
|
2019-12-20 14:52:10 +01:00
|
|
|
override fun run() {
|
|
|
|
if (!result.success) {
|
2019-12-27 19:20:38 +01:00
|
|
|
val i = Intent(mainApp, ErrorHelperActivity::class.java)
|
2019-12-20 14:52:10 +01:00
|
|
|
i.putExtra("soundid", R.raw.boluserror)
|
|
|
|
i.putExtra("status", result.comment)
|
2019-12-27 19:20:38 +01:00
|
|
|
i.putExtra("title", resourceHelper.gs(R.string.treatmentdeliveryerror))
|
2019-12-20 14:52:10 +01:00
|
|
|
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
2019-12-27 19:20:38 +01:00
|
|
|
mainApp.startActivity(i)
|
2019-12-20 14:52:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2019-12-22 21:37:26 +01:00
|
|
|
})
|
2019-12-20 14:52:10 +01:00
|
|
|
}
|
|
|
|
} else
|
2019-12-22 21:37:26 +01:00
|
|
|
activity?.let { activity ->
|
2019-12-27 19:20:38 +01:00
|
|
|
OKDialog.show(activity, resourceHelper.gs(R.string.bolus), resourceHelper.gs(R.string.no_action_selected))
|
2019-12-22 21:37:26 +01:00
|
|
|
}
|
2019-12-21 23:17:20 +01:00
|
|
|
return true
|
2019-12-20 14:52:10 +01:00
|
|
|
}
|
|
|
|
}
|