datocms-client
Version:
For new DatoCMS users, we recommend @datocms/cma-client-node
105 lines (79 loc) • 4.82 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = authors;
var _allPages = _interopRequireDefault(require("../utils/allPages"));
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 _require = require('../utils/progress'),
progress = _require.progress;
function authors(_x, _x2, _x3) {
return _authors.apply(this, arguments);
}
function _authors() {
_authors = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(dato, wp, itemTypeId) {
var mapping, resources, tick, _iterator, _step, author;
return regeneratorRuntime.wrap(function _callee$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
mapping = {};
_context.next = 3;
return (0, _allPages["default"])('Fetching authors', wp.users());
case 3:
resources = _context.sent;
tick = progress('Creating authors', resources.length);
_iterator = _createForOfIteratorHelper(resources);
_context.prev = 6;
_iterator.s();
case 8:
if ((_step = _iterator.n()).done) {
_context.next = 15;
break;
}
author = _step.value;
_context.next = 12;
return tick(author.name, dato.items.create({
itemType: itemTypeId,
name: author.name,
slug: author.slug,
username: author.username,
firstName: author.first_name,
lastName: author.last_name,
email: author.email,
url: author.url,
description: author.description,
nickname: author.nickname
}));
case 12:
mapping[author.id] = _context.sent.id;
case 13:
_context.next = 8;
break;
case 15:
_context.next = 20;
break;
case 17:
_context.prev = 17;
_context.t0 = _context["catch"](6);
_iterator.e(_context.t0);
case 20:
_context.prev = 20;
_iterator.f();
return _context.finish(20);
case 23:
return _context.abrupt("return", mapping);
case 24:
case "end":
return _context.stop();
}
}
}, _callee, null, [[6, 17, 20, 23]]);
}));
return _authors.apply(this, arguments);
}