2016-11-11 15:00:54 +00:00
|
|
|
const logger = require("jitsi-meet-logger").getLogger(__filename);
|
|
|
|
|
2016-01-22 15:08:58 +00:00
|
|
|
/**
|
|
|
|
* Create deferred object.
|
2017-02-05 03:54:58 +00:00
|
|
|
*
|
2016-01-22 15:08:58 +00:00
|
|
|
* @returns {{promise, resolve, reject}}
|
|
|
|
*/
|
2017-02-05 03:54:58 +00:00
|
|
|
export function createDeferred() {
|
|
|
|
const deferred = {};
|
2016-01-22 15:08:58 +00:00
|
|
|
|
2017-02-05 03:54:58 +00:00
|
|
|
deferred.promise = new Promise((resolve, reject) => {
|
2016-01-22 15:08:58 +00:00
|
|
|
deferred.resolve = resolve;
|
|
|
|
deferred.reject = reject;
|
|
|
|
});
|
|
|
|
|
|
|
|
return deferred;
|
|
|
|
}
|
2016-02-05 15:04:48 +00:00
|
|
|
|
2017-05-02 22:39:36 +00:00
|
|
|
/**
|
|
|
|
* Reload page.
|
|
|
|
*/
|
|
|
|
export function reload() {
|
|
|
|
window.location.reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Redirects to a specific new URL by replacing the current location (in the
|
|
|
|
* history).
|
|
|
|
*
|
|
|
|
* @param {string} url the URL pointing to the location where the user should
|
|
|
|
* be redirected to.
|
|
|
|
*/
|
|
|
|
export function replace(url) {
|
|
|
|
window.location.replace(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prints the error and reports it to the global error handler.
|
|
|
|
*
|
|
|
|
* @param e {Error} the error
|
|
|
|
* @param msg {string} [optional] the message printed in addition to the error
|
|
|
|
*/
|
|
|
|
export function reportError(e, msg = "") {
|
|
|
|
logger.error(msg, e);
|
|
|
|
window.onerror && window.onerror(msg, null, null, null, e);
|
|
|
|
}
|