-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
featureFeature to be implementedFeature to be implemented
Description
dataOn(event: String, js: String)
or
dataOn(event: String, expr: DataStarExpression, modifiers: ModifierBuilder.() -> Unit)
V1. Possible use case:
dataOn("click", fetching AND get(::getUser)) {
debound(200,...)
...
}V2:
dataOn(Click) {
+(fetching and get(::getUser))
modifiers { debounce(200.milliseconds) }
}Possible API:
infix AND(Signal, DataStarAction): DataStarExpressioninfix AND(DataStarExpression, DataStarAction): DataStarExpression
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
featureFeature to be implementedFeature to be implemented