2020-04-16 07:19:45 +00:00
|
|
|
import { isFunction } from 'min-dash';
|
|
|
|
|
|
|
|
// TODO(nikku): remove with future bpmn-js version
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wraps APIs to check:
|
|
|
|
*
|
|
|
|
* 1) If a callback is passed -> Warn users about callback deprecation.
|
|
|
|
* 2) If Promise class is implemented in current environment.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
export function wrapForCompatibility(api) {
|
|
|
|
|
|
|
|
return function() {
|
|
|
|
|
|
|
|
if (!window.Promise) {
|
2020-04-29 09:02:42 +00:00
|
|
|
throw new Error('Promises is not supported in this environment. Please polyfill Promise.');
|
2020-04-16 07:19:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var argLen = arguments.length;
|
|
|
|
if (argLen >= 1 && isFunction(arguments[argLen - 1])) {
|
|
|
|
|
|
|
|
var callback = arguments[argLen - 1];
|
|
|
|
|
|
|
|
console.warn(new Error(
|
2020-05-13 09:42:25 +00:00
|
|
|
'Passing callbacks to ' + api.name + ' is deprecated and will be removed in a future major release. ' +
|
|
|
|
'Please switch to promises: https://bpmn.io/l/moving-to-promises.html'
|
2020-04-16 07:19:45 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
var argsWithoutCallback = Array.prototype.slice.call(arguments, 0, -1);
|
|
|
|
|
|
|
|
api.apply(this, argsWithoutCallback).then(function(result) {
|
|
|
|
|
|
|
|
var firstKey = Object.keys(result)[0];
|
|
|
|
|
|
|
|
// The APIs we are wrapping all resolve a single item depending on the API.
|
|
|
|
// For instance, importXML resolves { warnings } and saveXML returns { xml }.
|
|
|
|
// That's why we can call the callback with the first item of result.
|
|
|
|
return callback(null, result[firstKey]);
|
|
|
|
|
|
|
|
// Passing a second paramter instead of catch because we don't want to
|
|
|
|
// catch errors thrown by callback().
|
|
|
|
}, function(err) {
|
|
|
|
|
|
|
|
return callback(err, err.warnings);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
|
|
|
|
return api.apply(this, arguments);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|