UNPKG

dash-renderer

Version:

render dash components in react

174 lines (173 loc) 9.55 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = apiThunk; var _ramda = require("ramda"); var _actions = require("../actions"); var _utils = require("./utils"); var _constants = require("./constants"); var _constants2 = require("../constants/constants"); function _regenerator() { /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */ var e, t, r = "function" == typeof Symbol ? Symbol : {}, n = r.iterator || "@@iterator", o = r.toStringTag || "@@toStringTag"; function i(r, n, o, i) { var c = n && n.prototype instanceof Generator ? n : Generator, u = Object.create(c.prototype); return _regeneratorDefine2(u, "_invoke", function (r, n, o) { var i, c, u, f = 0, p = o || [], y = !1, G = { p: 0, n: 0, v: e, a: d, f: d.bind(e, 4), d: function d(t, r) { return i = t, c = 0, u = e, G.n = r, a; } }; function d(r, n) { for (c = r, u = n, t = 0; !y && f && !o && t < p.length; t++) { var o, i = p[t], d = G.p, l = i[2]; r > 3 ? (o = l === n) && (u = i[(c = i[4]) ? 5 : (c = 3, 3)], i[4] = i[5] = e) : i[0] <= d && ((o = r < 2 && d < i[1]) ? (c = 0, G.v = n, G.n = i[1]) : d < l && (o = r < 3 || i[0] > n || n > l) && (i[4] = r, i[5] = n, G.n = l, c = 0)); } if (o || r > 1) return a; throw y = !0, n; } return function (o, p, l) { if (f > 1) throw TypeError("Generator is already running"); for (y && 1 === p && d(p, l), c = p, u = l; (t = c < 2 ? e : u) || !y;) { i || (c ? c < 3 ? (c > 1 && (G.n = -1), d(c, u)) : G.n = u : G.v = u); try { if (f = 2, i) { if (c || (o = "next"), t = i[o]) { if (!(t = t.call(i, u))) throw TypeError("iterator result is not an object"); if (!t.done) return t; u = t.value, c < 2 && (c = 0); } else 1 === c && (t = i.return) && t.call(i), c < 2 && (u = TypeError("The iterator does not provide a '" + o + "' method"), c = 1); i = e; } else if ((t = (y = G.n < 0) ? u : r.call(n, G)) !== a) break; } catch (t) { i = e, c = 1, u = t; } finally { f = 1; } } return { value: t, done: y }; }; }(r, o, i), !0), u; } var a = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} t = Object.getPrototypeOf; var c = [][n] ? t(t([][n]())) : (_regeneratorDefine2(t = {}, n, function () { return this; }), t), u = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(c); function f(e) { return Object.setPrototypeOf ? Object.setPrototypeOf(e, GeneratorFunctionPrototype) : (e.__proto__ = GeneratorFunctionPrototype, _regeneratorDefine2(e, o, "GeneratorFunction")), e.prototype = Object.create(u), e; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, _regeneratorDefine2(u, "constructor", GeneratorFunctionPrototype), _regeneratorDefine2(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = "GeneratorFunction", _regeneratorDefine2(GeneratorFunctionPrototype, o, "GeneratorFunction"), _regeneratorDefine2(u), _regeneratorDefine2(u, o, "Generator"), _regeneratorDefine2(u, n, function () { return this; }), _regeneratorDefine2(u, "toString", function () { return "[object Generator]"; }), (_regenerator = function _regenerator() { return { w: i, m: f }; })(); } function _regeneratorDefine2(e, r, n, t) { var i = Object.defineProperty; try { i({}, "", {}); } catch (e) { i = 0; } _regeneratorDefine2 = function _regeneratorDefine(e, r, n, t) { function o(r, n) { _regeneratorDefine2(e, r, function (e) { return this._invoke(r, n, e); }); } r ? i ? i(e, r, { value: n, enumerable: !t, configurable: !t, writable: !t }) : e[r] = n : (o("next", 0), o("throw", 1), o("return", 2)); }, _regeneratorDefine2(e, r, n, t); } function asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); } function _asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; } /* eslint-disable-next-line no-console */ var logWarningOnce = (0, _ramda.once)(console.warn); function GET(path, fetchConfig) { return fetch(path, (0, _ramda.mergeDeepRight)(fetchConfig, { method: 'GET', headers: (0, _actions.getCSRFHeader)() })); } function POST(path, fetchConfig) { var body = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; return fetch(path, (0, _ramda.mergeDeepRight)(fetchConfig, { method: 'POST', headers: (0, _actions.getCSRFHeader)(), body: body ? JSON.stringify(body) : null })); } var request = { GET, POST }; function apiThunk(endpoint, method, store, id, body) { return /*#__PURE__*/function () { var _ref = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(dispatch, getState) { var _getState, config, hooks, newHeaders, url, setConnectionStatus, res, retry, _body, newJwt, contentType, content, message, _t, _t2; return _regenerator().w(function (_context) { while (1) switch (_context.p = _context.n) { case 0: setConnectionStatus = function _setConnectionStatus(connected) { if (getState().error.backEndConnected !== connected) { dispatch({ type: 'SET_CONNECTION_STATUS', payload: connected }); } }; _getState = getState(), config = _getState.config, hooks = _getState.hooks; newHeaders = null; url = "".concat((0, _utils.urlBase)(config)).concat(endpoint); dispatch({ type: store, payload: { id, status: 'loading' } }); _context.p = 1; retry = 0; case 2: if (!(retry <= _constants.MAX_AUTH_RETRIES)) { _context.n = 11; break; } _context.p = 3; _context.n = 4; return request[method](url, config.fetch, body); case 4: res = _context.v; _context.n = 6; break; case 5: _context.p = 5; _t = _context.v; // fetch rejection - this means the request didn't return, // we don't get here from 400/500 errors, only network // errors or unresponsive servers. // eslint-disable-next-line no-console console.log('fetch error', res); setConnectionStatus(false); return _context.a(2); case 6: if (!(res.status === _constants2.STATUS.UNAUTHORIZED || res.status === _constants2.STATUS.BAD_REQUEST)) { _context.n = 9; break; } if (!hooks.request_refresh_jwt) { _context.n = 9; break; } _context.n = 7; return res.text(); case 7: _body = _context.v; if (!_body.includes(_constants2.JWT_EXPIRED_MESSAGE)) { _context.n = 9; break; } _context.n = 8; return hooks.request_refresh_jwt(config.fetch.headers.Authorization.substr('Bearer '.length)); case 8: newJwt = _context.v; if (!newJwt) { _context.n = 9; break; } newHeaders = { Authorization: "Bearer ".concat(newJwt) }; config = (0, _ramda.mergeDeepRight)(config, { fetch: { headers: newHeaders } }); return _context.a(3, 10); case 9: return _context.a(3, 11); case 10: retry++; _context.n = 2; break; case 11: contentType = res.headers.get('content-type'); if (newHeaders) { dispatch((0, _actions.addHttpHeaders)(newHeaders)); } setConnectionStatus(true); if (!(contentType && contentType.indexOf('application/json') !== -1)) { _context.n = 12; break; } return _context.a(2, res.json().then(json => { dispatch({ type: store, payload: { status: res.status, content: json, id } }); return json; })); case 12: _context.n = 13; return res.text(); case 13: content = _context.v; logWarningOnce('Response is missing header: content-type: application/json'); return _context.a(2, dispatch({ type: store, payload: { id, status: res.status, content } })); case 14: _context.p = 14; _t2 = _context.v; message = 'Error from API call: ' + endpoint; (0, _actions.handleAsyncError)(_t2, message, dispatch); case 15: return _context.a(2); } }, _callee, null, [[3, 5], [1, 14]]); })); return function (_x, _x2) { return _ref.apply(this, arguments); }; }(); }