diff --git a/web/shared/src/jsMain/kotlin/world/phantasmal/web/shared/Throttle.kt b/web/shared/src/jsMain/kotlin/world/phantasmal/web/shared/Throttle.kt index 2ad0fc1e..e00e0c45 100644 --- a/web/shared/src/jsMain/kotlin/world/phantasmal/web/shared/Throttle.kt +++ b/web/shared/src/jsMain/kotlin/world/phantasmal/web/shared/Throttle.kt @@ -16,16 +16,21 @@ class Throttle( ) { private var timeout: Int? = null private var invokeOnTimeout = false + private var function: () -> Unit = {} operator fun invoke(f: () -> Unit) { + function = f + if (timeout == null) { if (leading) { - f() + function() + } else if (trailing) { + invokeOnTimeout = true } timeout = self.setTimeout({ if (invokeOnTimeout) { - f() + function() } timeout = null