datocms-client
Version:
For new DatoCMS users, we recommend @datocms/cma-client-node
99 lines (72 loc) • 4.73 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _ora = _interopRequireDefault(require("ora"));
var _progress = _interopRequireDefault(require("./progress"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
var _default = /*#__PURE__*/function () {
var _ref2 = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(_ref) {
var recordIds, datoClient, spinner, progress, _iterator, _step, recordId;
return regeneratorRuntime.wrap(function _callee$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
recordIds = _ref.recordIds, datoClient = _ref.datoClient;
spinner = (0, _ora["default"])('').start();
progress = new _progress["default"](recordIds.length, 'Publishing records');
spinner.text = progress.tick();
_iterator = _createForOfIteratorHelper(recordIds);
_context.prev = 5;
_iterator.s();
case 7:
if ((_step = _iterator.n()).done) {
_context.next = 20;
break;
}
recordId = _step.value;
_context.prev = 9;
_context.next = 12;
return datoClient.items.publish(recordId);
case 12:
spinner.text = progress.tick();
_context.next = 18;
break;
case 15:
_context.prev = 15;
_context.t0 = _context["catch"](9);
console.log("Cannot publish record: ".concat(recordId, "."), "Contentful allows for published records with draft links, DatoCMS don't.", "Error: ".concat(_context.t0));
case 18:
_context.next = 7;
break;
case 20:
_context.next = 25;
break;
case 22:
_context.prev = 22;
_context.t1 = _context["catch"](5);
_iterator.e(_context.t1);
case 25:
_context.prev = 25;
_iterator.f();
return _context.finish(25);
case 28:
spinner.succeed();
case 29:
case "end":
return _context.stop();
}
}
}, _callee, null, [[5, 22, 25, 28], [9, 15]]);
}));
return function (_x) {
return _ref2.apply(this, arguments);
};
}();
exports["default"] = _default;