-
-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add handling of leading
/trailing
edges
#283
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -15,21 +15,29 @@ type EventAsReturnType<Payload> = any extends Payload ? Event<Payload> : never; | |||||||||||||||||||||||||||||||||
export function throttle<T>(_: { | ||||||||||||||||||||||||||||||||||
source: Unit<T>; | ||||||||||||||||||||||||||||||||||
timeout: number | Store<number>; | ||||||||||||||||||||||||||||||||||
leading?: boolean | Store<boolean>; | ||||||||||||||||||||||||||||||||||
trailing?: boolean | Store<boolean>; | ||||||||||||||||||||||||||||||||||
name?: string; | ||||||||||||||||||||||||||||||||||
}): EventAsReturnType<T>; | ||||||||||||||||||||||||||||||||||
export function throttle<T, Target extends Unit<T>>(_: { | ||||||||||||||||||||||||||||||||||
source: Unit<T>; | ||||||||||||||||||||||||||||||||||
timeout: number | Store<number>; | ||||||||||||||||||||||||||||||||||
target: Target; | ||||||||||||||||||||||||||||||||||
leading?: boolean | Store<boolean>; | ||||||||||||||||||||||||||||||||||
trailing?: boolean | Store<boolean>; | ||||||||||||||||||||||||||||||||||
name?: string; | ||||||||||||||||||||||||||||||||||
}): Target; | ||||||||||||||||||||||||||||||||||
export function throttle<T>({ | ||||||||||||||||||||||||||||||||||
source, | ||||||||||||||||||||||||||||||||||
timeout, | ||||||||||||||||||||||||||||||||||
leading, | ||||||||||||||||||||||||||||||||||
trailing, | ||||||||||||||||||||||||||||||||||
target = createEvent<T>(), | ||||||||||||||||||||||||||||||||||
}: { | ||||||||||||||||||||||||||||||||||
source: Unit<T>; | ||||||||||||||||||||||||||||||||||
timeout: number | Store<number>; | ||||||||||||||||||||||||||||||||||
leading?: boolean | Store<boolean>; | ||||||||||||||||||||||||||||||||||
trailing?: boolean | Store<boolean>; | ||||||||||||||||||||||||||||||||||
name?: string; | ||||||||||||||||||||||||||||||||||
target?: Unit<any>; | ||||||||||||||||||||||||||||||||||
}): EventAsReturnType<T> { | ||||||||||||||||||||||||||||||||||
|
@@ -42,13 +50,18 @@ export function throttle<T>({ | |||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
// It's ok - nothing will ever start unless source is triggered | ||||||||||||||||||||||||||||||||||
const $payload = createStore<T>(null as unknown as T, { serialize: 'ignore' }).on( | ||||||||||||||||||||||||||||||||||
source, | ||||||||||||||||||||||||||||||||||
(_, payload) => payload, | ||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||
const $payload = createStore<T>(null as unknown as T, { | ||||||||||||||||||||||||||||||||||
serialize: 'ignore', | ||||||||||||||||||||||||||||||||||
}).on(source, (_, payload) => payload); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const triggerTick = createEvent<T>(); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const $leading = toStoreBoolean(leading, '$leading', false); | ||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||
const $trailing = toStoreBoolean(trailing, '$trailing', true); | ||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const $neverCalled = createStore(true).on(target, () => false); | ||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one should be reset every time when timeout finishes, I guess const trigger = createEvent()
const throttled = throttle({ source: trigger, timeout: 100, leading: true })
trigger(1)
trigger(2)
trigger(3)
await wait(110)
trigger(4)
|
||||||||||||||||||||||||||||||||||
const $lastCalled = createStore<number>(0).on(target, () => Date.now()); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const $canTick = createStore(true, { serialize: 'ignore' }) | ||||||||||||||||||||||||||||||||||
.on(triggerTick, () => false) | ||||||||||||||||||||||||||||||||||
.on(target, () => true); | ||||||||||||||||||||||||||||||||||
|
@@ -66,8 +79,25 @@ export function throttle<T>({ | |||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
sample({ | ||||||||||||||||||||||||||||||||||
source: $payload, | ||||||||||||||||||||||||||||||||||
clock: $payload, | ||||||||||||||||||||||||||||||||||
source: [$leading, $neverCalled], | ||||||||||||||||||||||||||||||||||
filter: ([leading, neverCalled]) => leading && neverCalled, | ||||||||||||||||||||||||||||||||||
target, | ||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
sample({ | ||||||||||||||||||||||||||||||||||
source: [$trailing, $payload] as const, | ||||||||||||||||||||||||||||||||||
clock: timerFx.done, | ||||||||||||||||||||||||||||||||||
filter: ([trailing]) => trailing, | ||||||||||||||||||||||||||||||||||
fn: ([_, payload]) => payload, | ||||||||||||||||||||||||||||||||||
target, | ||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||
sample({ | ||||||||||||||||||||||||||||||||||
clock: $payload, | ||||||||||||||||||||||||||||||||||
source: { trailing: $trailing, lastCalled: $lastCalled, timeout: $timeout }, | ||||||||||||||||||||||||||||||||||
filter: ({ trailing, lastCalled, timeout }) => | ||||||||||||||||||||||||||||||||||
!trailing && lastCalled + timeout < Date.now(), | ||||||||||||||||||||||||||||||||||
fn: (_src, clk) => clk, | ||||||||||||||||||||||||||||||||||
target, | ||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
|
@@ -88,3 +118,16 @@ function toStoreNumber(value: number | Store<number> | unknown): Store<number> { | |||||||||||||||||||||||||||||||||
`timeout parameter should be number or Store. "${typeof value}" was passed`, | ||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
function toStoreBoolean( | ||||||||||||||||||||||||||||||||||
value: boolean | Store<boolean> | undefined, | ||||||||||||||||||||||||||||||||||
name: string, | ||||||||||||||||||||||||||||||||||
defaultValue: boolean, | ||||||||||||||||||||||||||||||||||
): Store<boolean> { | ||||||||||||||||||||||||||||||||||
if (is.store(value)) return value; | ||||||||||||||||||||||||||||||||||
if (typeof value === 'boolean') { | ||||||||||||||||||||||||||||||||||
return createStore(value, { name }); | ||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||
return createStore(defaultValue, { name }); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
Comment on lines
+122
to
+133
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In
lodash
bothleading
andtrailing
aretrue
by default. Why not make the same?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't want to change the default behavior making it breaking change, but I agree, I'd rather made them both true by default