2024-04-28 18:47:53 +02:00
|
|
|
/**
|
|
|
|
* Common debounce timeout values to use with `debounce` calls.
|
|
|
|
* @enum {number}
|
|
|
|
*/
|
|
|
|
export const debounce_timeout = {
|
|
|
|
/** [100 ms] For ultra-fast responses, typically for keypresses or executions that might happen multiple times in a loop or recursion. */
|
|
|
|
quick: 100,
|
2024-07-01 19:36:18 +02:00
|
|
|
/** [200 ms] Slightly slower than quick, but still very responsive. */
|
|
|
|
short: 200,
|
2024-04-28 18:47:53 +02:00
|
|
|
/** [300 ms] Default time for general use, good balance between responsiveness and performance. */
|
|
|
|
standard: 300,
|
|
|
|
/** [1.000 ms] For situations where the function triggers more intensive tasks. */
|
|
|
|
relaxed: 1000,
|
|
|
|
/** [5 sec] For delayed tasks, like auto-saving or completing batch operations that need a significant pause. */
|
|
|
|
extended: 5000,
|
|
|
|
};
|