UNPKG

@hocgin/browser-addone-kit

Version:
47 lines (46 loc) 2.79 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _queryString = require("query-string"); var _hkit = require("@hocgin/hkit"); function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } function _objectDestructuringEmpty(obj) { if (obj == null) throw new TypeError("Cannot destructure " + obj); } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } var TbkService = exports.default = /*#__PURE__*/function () { function TbkService() { _classCallCheck(this, TbkService); } _createClass(TbkService, null, [{ key: "batchAsUrl", value: function batchAsUrl(urls) { return (0, _hkit.usePost)("/api/mina/tbk/batchAsUrl", { data: { urls: urls } // useCache: true }).then(function (_ref) { var _ref$data = _ref.data, data = _ref$data === void 0 ? {} : _ref$data; return data || {}; }).catch(function () {}); } }, { key: "asUrl", value: function asUrl(_ref2) { var payload = Object.assign({}, (_objectDestructuringEmpty(_ref2), _ref2)); return (0, _hkit.useGet)("/api/mina/tbk/asurl?".concat((0, _queryString.stringify)(payload)), { useCache: true }).then(function (_ref3) { var data = _ref3.data; return data; }).catch(function () {}); } }]); return TbkService; }();