mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-23 23:54:13 +08:00
* Switch to using Typescript instead of Babel * Switch all es6 / jsx file extensions to ts / tsx * Convert Utils to a TS module from module.exports style module * Move everything from module.exports to typescript exports * Define .d.ts files for mailspring-exports and component kit… Yes it seems this is the best option :( * Load up on those @types * Synthesize TS types from PropTypes for standard components * Add types to Model classes and move constructor constants to instance vars * 9800 => 7700 TS errors * 7700 => 5600 TS errors * 5600 => 5330 TS errors * 5330 => 4866 TS errors * 4866 => 4426 TS errors * 4426 => 2411 TS errors * 2411 > 1598 TS errors * 1598 > 769 TS errors * 769 > 129 TS errors * 129 > 22 TS errors * Fix runtime errors * More runtime error fixes * Remove support for custom .es6 file extension * Remove a few odd remaining references to Nylas * Don’t ship Typescript support in the compiled app for now * Fix issues in compiled app - module resolution in TS is case sensitive? * README updates * Fix a few more TS errors * Make “No Signature” option clickable + selectable * Remove flicker when saving file and reloading keymaps * Fix mail rule item height in preferences * Fix missing spacing in thread sharing popover * Fix scrollbar ticks being nested incorrectly * Add Japanese as a manually reviewed language * Prevent the thread list from “sticking” * Re-use Sheet when switching root tabs, prevent sidebar from resetting * Ensure specs run * Update package configuration to avoid shpping types * Turn eslint back on - we will opt-in to the TS rules one by one
67 lines
1.7 KiB
TypeScript
67 lines
1.7 KiB
TypeScript
const BASE_TIMEOUT = 2 * 1000;
|
|
const MAX_TIMEOUT = 5 * 60 * 1000;
|
|
|
|
function exponentialBackoff(base, numTries) {
|
|
return base * 2 ** numTries;
|
|
}
|
|
|
|
interface BackoffSchedulerOptions {
|
|
baseDelay?: number;
|
|
maxDelay?: number;
|
|
getNextBackoffDelay: (baseDelay: number, numTries: number) => number;
|
|
jitter?: boolean;
|
|
}
|
|
export class BackoffScheduler {
|
|
_numTries = 0;
|
|
_currentDelay = 0;
|
|
_jitter: boolean;
|
|
_maxDelay: number;
|
|
_baseDelay: number;
|
|
_getNextBackoffDelay: (baseDelay: number, numTries: number) => number;
|
|
|
|
constructor(opts: BackoffSchedulerOptions) {
|
|
this._jitter = opts.jitter !== undefined ? opts.jitter : true;
|
|
this._maxDelay = opts.maxDelay || MAX_TIMEOUT;
|
|
this._baseDelay = opts.baseDelay || BASE_TIMEOUT;
|
|
if (!opts.getNextBackoffDelay) {
|
|
throw new Error('BackoffScheduler: Must pass `getNextBackoffDelay` function');
|
|
}
|
|
this._getNextBackoffDelay = opts.getNextBackoffDelay;
|
|
}
|
|
|
|
numTries() {
|
|
return this._numTries;
|
|
}
|
|
|
|
currentDelay() {
|
|
return this._currentDelay;
|
|
}
|
|
|
|
reset() {
|
|
this._numTries = 0;
|
|
this._currentDelay = 0;
|
|
}
|
|
|
|
nextDelay() {
|
|
const nextDelay = this._calcNextDelay();
|
|
this._numTries++;
|
|
this._currentDelay = nextDelay;
|
|
return nextDelay;
|
|
}
|
|
|
|
_calcNextDelay() {
|
|
let nextDelay = this._getNextBackoffDelay(this._baseDelay, this._numTries);
|
|
if (this._jitter) {
|
|
// Why jitter? See:
|
|
// https://www.awsarchitectureblog.com/2015/03/backoff.html
|
|
nextDelay *= Math.random();
|
|
}
|
|
return Math.min(nextDelay, this._maxDelay);
|
|
}
|
|
}
|
|
|
|
export class ExponentialBackoffScheduler extends BackoffScheduler {
|
|
constructor(opts = {}) {
|
|
super({ ...opts, getNextBackoffDelay: exponentialBackoff });
|
|
}
|
|
}
|