mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-12 06:02:25 +03:00
54dcaf1302
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
66 lines
2.2 KiB
JavaScript
66 lines
2.2 KiB
JavaScript
/*
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// This is only here to allow access to methods like done for the time being
|
|
import Promise from "bluebird";
|
|
|
|
// @flow
|
|
|
|
// Returns a promise which resolves with a given value after the given number of ms
|
|
export const sleep = (ms: number, value: any): Promise => new Promise((resolve => { setTimeout(resolve, ms, value); }));
|
|
|
|
// Returns a promise which resolves when the input promise resolves with its value
|
|
// or when the timeout of ms is reached with the value of given timeoutValue
|
|
export async function timeout(promise: Promise, timeoutValue: any, ms: number): Promise {
|
|
const timeoutPromise = new Promise((resolve) => {
|
|
const timeoutId = setTimeout(resolve, ms, timeoutValue);
|
|
promise.then(() => {
|
|
clearTimeout(timeoutId);
|
|
});
|
|
});
|
|
|
|
return Promise.race([promise, timeoutPromise]);
|
|
}
|
|
|
|
// Returns a Deferred
|
|
export function defer(): {resolve: () => {}, reject: () => {}, promise: Promise} {
|
|
let resolve;
|
|
let reject;
|
|
|
|
const promise = new Promise((_resolve, _reject) => {
|
|
resolve = _resolve;
|
|
reject = _reject;
|
|
});
|
|
|
|
return {resolve, reject, promise};
|
|
}
|
|
|
|
// Promise.allSettled polyfill until browser support is stable in Firefox
|
|
export function allSettled(promises: Promise[]): {status: string, value?: any, reason?: any}[] {
|
|
if (Promise.allSettled) {
|
|
return Promise.allSettled(promises);
|
|
}
|
|
|
|
return Promise.all(promises.map((promise) => {
|
|
return promise.then(value => ({
|
|
status: "fulfilled",
|
|
value,
|
|
})).catch(reason => ({
|
|
status: "rejected",
|
|
reason,
|
|
}));
|
|
}));
|
|
}
|