//kit/healthstack.kit.task.activity.predefined/GaitAndBalanceActivityTask

GaitAndBalanceActivityTask

[androidJvm]
class GaitAndBalanceActivityTask(val id: String, val taskId: String, val name: String = "Gait & Balance", val description: String, completionTitle: String, completionDescription: List<String>?, val steps: List<Step<out StepModel, *>> = listOf( SimpleViewActivityStep( id, name, GaitAndBalanceIntroModel(id) ), SimpleViewActivityStep( id, name, GaitAndBalanceGMeasureModel( id, header = "Walk in a straight line unassisted for 20 steps", buttonText = "Done" ) ), SimpleViewActivityStep( id, name, GaitAndBalanceGMeasureModel( id, header = "Turn around and walk back to your starting point", drawableId = R.drawable.ic_activity_gait_and_balance_back, buttonText = "Done" ) ), SimpleTimerActivityStep( id, name, GaitAndBalanceBMeasureModel( id, header = "Stand still for 20 seconds", timeSeconds = 20, interactionType = VIBRATE, ) ), SimpleViewActivityStep( id, name, GaitAndBalanceResultModel(id, name, header = completionTitle, body = completionDescription) ) ), isCompleted: Boolean = false, isActive: Boolean = true) : ActivityTask

Constructors

   
GaitAndBalanceActivityTask [androidJvm]
fun GaitAndBalanceActivityTask(id: String, taskId: String, name: String = "Gait & Balance", description: String, completionTitle: String, completionDescription: List<String>?, steps: List<Step<out StepModel, *>> = listOf( SimpleViewActivityStep( id, name, GaitAndBalanceIntroModel(id) ), SimpleViewActivityStep( id, name, GaitAndBalanceGMeasureModel( id, header = "Walk in a straight line unassisted for 20 steps", buttonText = "Done" ) ), SimpleViewActivityStep( id, name, GaitAndBalanceGMeasureModel( id, header = "Turn around and walk back to your starting point", drawableId = R.drawable.ic_activity_gait_and_balance_back, buttonText = "Done" ) ), SimpleTimerActivityStep( id, name, GaitAndBalanceBMeasureModel( id, header = "Stand still for 20 seconds", timeSeconds = 20, interactionType = VIBRATE, ) ), SimpleViewActivityStep( id, name, GaitAndBalanceResultModel(id, name, header = completionTitle, body = completionDescription) ) ), isCompleted: Boolean = false, isActive: Boolean = true)

Functions

Name Summary
CardView [androidJvm]
@Composable
open override fun CardView(onClick: () -> Unit)
A method for rendering CardView UI.
equals [androidJvm]
open operator override fun equals(other: Any?): Boolean
hashCode [androidJvm]
open override fun hashCode(): Int
Render [androidJvm]
@Composable
open override fun Render()
A method for rendering UI.

Properties

Name Summary
callback [androidJvm]
var callback: () -> Unit? = null
a method handling task’s state when it is finished
canceled [androidJvm]
var canceled: () -> Unit? = null
a method handling task’s state when it is canceled
description [androidJvm]
val description: String
concise description of task
id [androidJvm]
val id: String
id
isActive [androidJvm]
var isActive: Boolean = true
isCompleted [androidJvm]
var isCompleted: Boolean = false
flag for completion of task
name [androidJvm]
val name: String
name
pageCallbacks [androidJvm]
open override val pageCallbacks: CallbackCollection
An object including callback.
result [androidJvm]
val result: MutableMap<String, Any>
startedAt [androidJvm]
var startedAt: LocalDateTime? = null
steps [androidJvm]
val steps: List<Step<out StepModel, *>>
taskId [androidJvm]
val taskId: String