devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
72 lines (66 loc) • 2.03 kB
JavaScript
/**
* DevExtreme (esm/core/utils/error.js)
* Version: 21.1.4
* Build date: Mon Jun 21 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import {
extend
} from "./extend";
import {
logger
} from "./console";
import {
format
} from "./string";
import {
version
} from "../version";
var ERROR_URL = "http://js.devexpress.com/error/" + version.split(".").slice(0, 2).join("_") + "/";
export default function(baseErrors, errors) {
var exports = {
ERROR_MESSAGES: extend(errors, baseErrors),
Error: function() {
return makeError([].slice.call(arguments))
},
log: function(id) {
var method = "log";
if (/^E\d+$/.test(id)) {
method = "error"
} else if (/^W\d+$/.test(id)) {
method = "warn"
}
logger[method]("log" === method ? id : combineMessage([].slice.call(arguments)))
}
};
function combineMessage(args) {
var id = args[0];
args = args.slice(1);
return formatMessage(id, formatDetails(id, args))
}
function formatDetails(id, args) {
args = [exports.ERROR_MESSAGES[id]].concat(args);
return format.apply(this, args).replace(/\.*\s*?$/, "")
}
function formatMessage(id, details) {
return format.apply(this, ["{0} - {1}. See:\n{2}", id, details, getErrorUrl(id)])
}
function makeError(args) {
var id = args[0];
args = args.slice(1);
var details = formatDetails(id, args);
var url = getErrorUrl(id);
var message = formatMessage(id, details);
return extend(new Error(message), {
__id: id,
__details: details,
url: url
})
}
function getErrorUrl(id) {
return ERROR_URL + id
}
return exports
}