Action
Action is used to mutate the model and/or trigger effects.
For example:
data object OnDetailsExpandClick : HelpScreenAction {
override fun HelpScreenModel.proceed() =
mutate(copy(showDetails = !showDetails))
}
Content copied to clipboard
Or using SAM:
val OnDetailExpandClick: HelpScreenAction
get() = { next(copy(showDetails = !showDetails)) }
Content copied to clipboard
Parameters
See also
Inheritors
Types
Properties
Functions
Link copied to clipboard
fun <TModel : Any, TDependency> Action<TModel, TDependency>.mutate(model: TModel? = null): Action.Next<TModel, TDependency>
Shorthand for returning an action result with optional model changes only.
Link copied to clipboard
fun <TModel : Any, TDependency> Action<TModel, TDependency>.outcome(model: TModel? = null, vararg effects: Effect<TModel, TDependency>): Action.Next<TModel, TDependency>
Shorthand for returning an action result with both changes to the model and triggered effects.
Link copied to clipboard
Execute this Action.
Link copied to clipboard
fun <TModel : Any, TDependency> Action<TModel, TDependency>.trigger(vararg effects: Effect<TModel, TDependency>): Action.Next<TModel, TDependency>
Shorthand for returning an action result with triggered effects only.