UNPKG

nsn-service

Version:

NSN服务组件

148 lines (131 loc) 4.64 kB
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); }); }; } import { HttpMethod, MappingURI, RequestCxt } from 'nsn-enum'; import { request } from './core'; export var ProfileRequest = { info: function () { var _info = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() { return regeneratorRuntime.wrap(function _callee$(_context) { while (1) { switch (_context.prev = _context.next) { case 0: return _context.abrupt("return", request({ ctx: RequestCxt.PROFILE, uri: '/info' })); case 1: case "end": return _context.stop(); } } }, _callee); })); function info() { return _info.apply(this, arguments); } return info; }(), update: function () { var _update = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2(data) { return regeneratorRuntime.wrap(function _callee2$(_context2) { while (1) { switch (_context2.prev = _context2.next) { case 0: return _context2.abrupt("return", request({ ctx: RequestCxt.PROFILE, uri: MappingURI.UPDATE, options: { method: HttpMethod.POST, data: data } })); case 1: case "end": return _context2.stop(); } } }, _callee2); })); function update(_x) { return _update.apply(this, arguments); } return update; }(), update_pwd: function () { var _update_pwd = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee3(data) { return regeneratorRuntime.wrap(function _callee3$(_context3) { while (1) { switch (_context3.prev = _context3.next) { case 0: return _context3.abrupt("return", request({ ctx: RequestCxt.PROFILE, uri: '/password', options: { method: HttpMethod.POST, data: data } })); case 1: case "end": return _context3.stop(); } } }, _callee3); })); function update_pwd(_x2) { return _update_pwd.apply(this, arguments); } return update_pwd; }(), page_msg: function () { var _page_msg = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee4(params) { return regeneratorRuntime.wrap(function _callee4$(_context4) { while (1) { switch (_context4.prev = _context4.next) { case 0: return _context4.abrupt("return", request({ ctx: RequestCxt.PROFILE, uri: '/page-msg', options: { params: params } })); case 1: case "end": return _context4.stop(); } } }, _callee4); })); function page_msg(_x3) { return _page_msg.apply(this, arguments); } return page_msg; }(), update_msg: function () { var _update_msg = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee5(data) { return regeneratorRuntime.wrap(function _callee5$(_context5) { while (1) { switch (_context5.prev = _context5.next) { case 0: return _context5.abrupt("return", request({ ctx: RequestCxt.PROFILE, uri: '/update-msg', options: { method: HttpMethod.POST, data: data } })); case 1: case "end": return _context5.stop(); } } }, _callee5); })); function update_msg(_x4) { return _update_msg.apply(this, arguments); } return update_msg; }() };