125 lines
5.0 KiB
JavaScript
125 lines
5.0 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = configure;
|
|
|
|
require("core-js/modules/es6.string.iterator");
|
|
|
|
require("core-js/modules/es6.array.from");
|
|
|
|
require("core-js/modules/es6.regexp.to-string");
|
|
|
|
require("core-js/modules/es6.date.to-string");
|
|
|
|
require("core-js/modules/es6.array.filter");
|
|
|
|
require("core-js/modules/es6.object.keys");
|
|
|
|
require("core-js/modules/es6.object.define-property");
|
|
|
|
require("core-js/modules/es7.symbol.async-iterator");
|
|
|
|
require("core-js/modules/es6.symbol");
|
|
|
|
require("core-js/modules/es6.array.is-array");
|
|
|
|
require("core-js/modules/es6.array.iterator");
|
|
|
|
require("core-js/modules/es7.object.entries");
|
|
|
|
require("core-js/modules/web.dom.iterable");
|
|
|
|
require("core-js/modules/es6.array.for-each");
|
|
|
|
var _core = _interopRequireWildcard(require("@jimp/core"));
|
|
|
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
|
|
|
|
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread(); }
|
|
|
|
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance"); }
|
|
|
|
function _iterableToArray(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); }
|
|
|
|
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } }
|
|
|
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }
|
|
|
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
|
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
|
|
|
|
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
|
|
|
|
function _iterableToArrayLimit(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
|
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
|
|
function configure(configuration) {
|
|
var jimpInstance = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _core.default;
|
|
var jimpConfig = {
|
|
hasAlpha: {},
|
|
encoders: {},
|
|
decoders: {},
|
|
class: {},
|
|
constants: {}
|
|
};
|
|
|
|
function addToConfig(newConfig) {
|
|
Object.entries(newConfig).forEach(function (_ref) {
|
|
var _ref2 = _slicedToArray(_ref, 2),
|
|
key = _ref2[0],
|
|
value = _ref2[1];
|
|
|
|
jimpConfig[key] = _objectSpread({}, jimpConfig[key], value);
|
|
});
|
|
}
|
|
|
|
function addImageType(typeModule) {
|
|
var type = typeModule();
|
|
|
|
if (Array.isArray(type.mime)) {
|
|
_core.addType.apply(void 0, _toConsumableArray(type.mime));
|
|
} else {
|
|
Object.entries(type.mime).forEach(function (mimeType) {
|
|
return _core.addType.apply(void 0, _toConsumableArray(mimeType));
|
|
});
|
|
}
|
|
|
|
delete type.mime;
|
|
addToConfig(type);
|
|
}
|
|
|
|
function addPlugin(pluginModule) {
|
|
var plugin = pluginModule(_core.jimpEvChange) || {};
|
|
|
|
if (!plugin.class && !plugin.constants) {
|
|
// Default to class function
|
|
addToConfig({
|
|
class: plugin
|
|
});
|
|
} else {
|
|
addToConfig(plugin);
|
|
}
|
|
}
|
|
|
|
if (configuration.types) {
|
|
configuration.types.forEach(addImageType);
|
|
jimpInstance.decoders = _objectSpread({}, jimpInstance.decoders, jimpConfig.decoders);
|
|
jimpInstance.encoders = _objectSpread({}, jimpInstance.encoders, jimpConfig.encoders);
|
|
jimpInstance.hasAlpha = _objectSpread({}, jimpInstance.hasAlpha, jimpConfig.hasAlpha);
|
|
}
|
|
|
|
if (configuration.plugins) {
|
|
configuration.plugins.forEach(addPlugin);
|
|
}
|
|
|
|
(0, _core.addJimpMethods)(jimpConfig.class, jimpInstance);
|
|
(0, _core.addConstants)(jimpConfig.constants, jimpInstance);
|
|
return _core.default;
|
|
}
|
|
|
|
module.exports = exports.default;
|
|
//# sourceMappingURL=index.js.map
|