@pisell/utils 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/constants/index.js +6 -1
- package/es/document.js +2 -2
- package/es/escPosPrinter/index.js +2 -2
- package/es/firebase/index.js +34 -13
- package/es/index.d.ts +18 -12
- package/es/index.js +16 -1
- package/es/jsBridge/index.d.ts +14 -98
- package/es/jsBridge/index.js +44 -2
- package/es/jsBridge/regDeviceApi.js +6 -10
- package/es/jsBridge/types.js +1 -0
- package/es/locales.js +5 -6
- package/es/log.js +23 -14
- package/es/miniRedux.js +8 -9
- package/es/otherUtils.js +2 -2
- package/lib/constants/index.js +6 -1
- package/lib/escPosPrinter/EscPosPrinter.js +43 -86
- package/lib/escPosPrinter/index.js +2 -2
- package/lib/firebase/index.js +22 -0
- package/lib/image.js +1 -2
- package/lib/index.d.ts +18 -12
- package/lib/index.js +21 -0
- package/lib/jsBridge/index.d.ts +14 -98
- package/lib/jsBridge/index.js +33 -1
- package/lib/jsBridge/regDeviceApi.js +5 -13
- package/lib/jsBridge/types.js +17 -0
- package/lib/locales.js +0 -1
- package/lib/log.js +10 -1
- package/package.json +5 -5
- package/es/constants/index.d.ts +0 -4
- package/es/locales.d.ts +0 -12
- package/lib/constants/index.d.ts +0 -4
- package/lib/locales.d.ts +0 -12
package/es/log.js
CHANGED
|
@@ -1,45 +1,54 @@
|
|
|
1
|
-
function _typeof(
|
|
2
|
-
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, defineProperty = Object.defineProperty || function (obj, key, desc) { obj[key] = desc.value; }, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return defineProperty(generator, "_invoke", { value: makeInvokeMethod(innerFn, self, context) }), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; defineProperty(this, "_invoke", { value: function value(method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; } function maybeInvokeDelegate(delegate, context) { var methodName = context.method, method = delegate.iterator[methodName]; if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel; var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), defineProperty(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (val) { var object = Object(val), keys = []; for (var key in object) keys.push(key); return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
|
|
1
|
+
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); }
|
|
2
|
+
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
|
|
3
3
|
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); } }
|
|
4
4
|
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); }); }; }
|
|
5
|
+
import { getPisellUtilsConfig } from "./index";
|
|
5
6
|
import { webHookApi } from "./constants";
|
|
6
7
|
var createFeishuMessageContent = function createFeishuMessageContent(contentArr) {
|
|
7
8
|
return JSON.stringify(contentArr.map(function (item) {
|
|
8
9
|
return [{
|
|
9
|
-
tag:
|
|
10
|
+
tag: 'text',
|
|
10
11
|
text: "".concat(item.key, ": ")
|
|
11
12
|
}, {
|
|
12
|
-
tag:
|
|
13
|
+
tag: 'text',
|
|
13
14
|
text: "".concat(item.value)
|
|
14
15
|
}];
|
|
15
16
|
}));
|
|
16
17
|
};
|
|
17
18
|
export var sendWarningLog = /*#__PURE__*/function () {
|
|
18
19
|
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(_ref) {
|
|
19
|
-
var title, content, contentStr, response;
|
|
20
|
+
var title, content, contentStr, apiUrl, config, response;
|
|
20
21
|
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
21
22
|
while (1) switch (_context.prev = _context.next) {
|
|
22
23
|
case 0:
|
|
23
24
|
title = _ref.title, content = _ref.content;
|
|
24
25
|
contentStr = createFeishuMessageContent(content);
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
apiUrl = '';
|
|
27
|
+
config = getPisellUtilsConfig();
|
|
28
|
+
console.log('PISELL_UTILS_CONFIG>>>>', config);
|
|
29
|
+
if ((config === null || config === void 0 ? void 0 : config.env) === 'dev' || (config === null || config === void 0 ? void 0 : config.env) === 'pre' || (config === null || config === void 0 ? void 0 : config.env) === 'release') {
|
|
30
|
+
apiUrl = webHookApi.warning_log.test;
|
|
31
|
+
} else {
|
|
32
|
+
apiUrl = webHookApi.warning_log.prod;
|
|
33
|
+
}
|
|
34
|
+
_context.next = 8;
|
|
35
|
+
return fetch(apiUrl, {
|
|
27
36
|
headers: {
|
|
28
|
-
|
|
37
|
+
'Content-Type': 'application/json'
|
|
29
38
|
},
|
|
30
|
-
method:
|
|
39
|
+
method: 'POST',
|
|
31
40
|
body: JSON.stringify({
|
|
32
|
-
msg_type:
|
|
41
|
+
msg_type: 'post',
|
|
33
42
|
content: "{\"post\":{\"zh_cn\":{\"title\":\"".concat(title, "\",\"content\":").concat(contentStr, "}}}")
|
|
34
43
|
})
|
|
35
44
|
});
|
|
36
|
-
case
|
|
45
|
+
case 8:
|
|
37
46
|
response = _context.sent;
|
|
38
|
-
_context.next =
|
|
47
|
+
_context.next = 11;
|
|
39
48
|
return response.json();
|
|
40
|
-
case
|
|
49
|
+
case 11:
|
|
41
50
|
return _context.abrupt("return", _context.sent);
|
|
42
|
-
case
|
|
51
|
+
case 12:
|
|
43
52
|
case "end":
|
|
44
53
|
return _context.stop();
|
|
45
54
|
}
|
package/es/miniRedux.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
function _typeof(
|
|
2
|
-
function ownKeys(
|
|
3
|
-
function _objectSpread(
|
|
1
|
+
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); }
|
|
2
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
3
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
4
4
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
5
|
-
function _toPropertyKey(
|
|
6
|
-
function _toPrimitive(
|
|
5
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
6
|
+
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); }
|
|
7
7
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
8
8
|
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
9
9
|
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); }
|
|
10
10
|
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; }
|
|
11
|
-
function _iterableToArrayLimit(
|
|
11
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
12
12
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
13
13
|
import React, { createContext, useCallback, useReducer, forwardRef, useRef } from 'react';
|
|
14
14
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
@@ -23,7 +23,6 @@ export var miniRedux = function miniRedux(_ref2) {
|
|
|
23
23
|
var Context = /*#__PURE__*/createContext({});
|
|
24
24
|
var Provider = function Provider(ComponentUi) {
|
|
25
25
|
var Components = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
26
|
-
var _objectSpread2, _ref5;
|
|
27
26
|
var stateRef = useRef();
|
|
28
27
|
var _useReducer = useReducer(function (state, _ref3) {
|
|
29
28
|
var type = _ref3.type,
|
|
@@ -50,14 +49,14 @@ export var miniRedux = function miniRedux(_ref2) {
|
|
|
50
49
|
});
|
|
51
50
|
}
|
|
52
51
|
}, []);
|
|
53
|
-
var _props = _objectSpread(_objectSpread({}, props), {}, (
|
|
52
|
+
var _props = _objectSpread(_objectSpread({}, props), {}, _defineProperty(_defineProperty({}, namespace, providerState), "dispatch", _dispatch));
|
|
54
53
|
var _ref = null;
|
|
55
54
|
if (_props.forwardedRef) {
|
|
56
55
|
_ref = _props.forwardedRef;
|
|
57
56
|
delete _props.forwardedRef;
|
|
58
57
|
}
|
|
59
58
|
return /*#__PURE__*/_jsx(Context.Provider, {
|
|
60
|
-
value: (
|
|
59
|
+
value: _defineProperty(_defineProperty({}, namespace, providerState), "dispatch", _dispatch),
|
|
61
60
|
children: /*#__PURE__*/_jsx(ComponentUi, _objectSpread(_objectSpread({}, _props), {}, {
|
|
62
61
|
ref: ref
|
|
63
62
|
}))
|
package/es/otherUtils.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
function _typeof(
|
|
2
|
-
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, defineProperty = Object.defineProperty || function (obj, key, desc) { obj[key] = desc.value; }, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return defineProperty(generator, "_invoke", { value: makeInvokeMethod(innerFn, self, context) }), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; defineProperty(this, "_invoke", { value: function value(method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; } function maybeInvokeDelegate(delegate, context) { var methodName = context.method, method = delegate.iterator[methodName]; if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel; var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), defineProperty(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (val) { var object = Object(val), keys = []; for (var key in object) keys.push(key); return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
|
|
1
|
+
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); }
|
|
2
|
+
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
|
|
3
3
|
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); } }
|
|
4
4
|
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); }); }; }
|
|
5
5
|
// @ts-ignore
|
package/lib/constants/index.js
CHANGED
|
@@ -23,7 +23,12 @@ __export(constants_exports, {
|
|
|
23
23
|
});
|
|
24
24
|
module.exports = __toCommonJS(constants_exports);
|
|
25
25
|
var webHookApi = {
|
|
26
|
-
warning_log:
|
|
26
|
+
warning_log: {
|
|
27
|
+
// 非生产环境共用一个url
|
|
28
|
+
test: "https://open.feishu.cn/open-apis/bot/v2/hook/985186a7-d939-4daf-9f30-3a3cc9c47d97",
|
|
29
|
+
// 生产环境
|
|
30
|
+
prod: "https://open.feishu.cn/open-apis/bot/v2/hook/887dfff9-2ccc-4513-87ff-a05d8cef953e"
|
|
31
|
+
}
|
|
27
32
|
};
|
|
28
33
|
// Annotate the CommonJS export names for ESM import in node:
|
|
29
34
|
0 && (module.exports = {
|
|
@@ -48,18 +48,15 @@ function _numToHexStr(n, bytes) {
|
|
|
48
48
|
var v;
|
|
49
49
|
for (var i = 0; i < bytes; i++) {
|
|
50
50
|
v = n & 255;
|
|
51
|
-
if (v < 16)
|
|
52
|
-
|
|
53
|
-
else
|
|
54
|
-
str += v.toString(16);
|
|
51
|
+
if (v < 16) str += "0" + v.toString(16);
|
|
52
|
+
else str += v.toString(16);
|
|
55
53
|
n >>= 8;
|
|
56
54
|
}
|
|
57
55
|
return str;
|
|
58
56
|
}
|
|
59
57
|
function _unicodeToUtf8(unicode) {
|
|
60
58
|
var c1, c2, c3, c4;
|
|
61
|
-
if (unicode < 0)
|
|
62
|
-
return "";
|
|
59
|
+
if (unicode < 0) return "";
|
|
63
60
|
if (unicode <= 127) {
|
|
64
61
|
c1 = unicode & 127;
|
|
65
62
|
return _numToHexStr(c1, 1);
|
|
@@ -133,8 +130,7 @@ EscPosPrinter.prototype.appendText = function(str) {
|
|
|
133
130
|
this.orderData += _unicodeToUtf8(str.charCodeAt(i));
|
|
134
131
|
};
|
|
135
132
|
EscPosPrinter.prototype.lineFeed = function(n) {
|
|
136
|
-
for (var i = 0; i < n; i++)
|
|
137
|
-
this.orderData += "0a";
|
|
133
|
+
for (var i = 0; i < n; i++) this.orderData += "0a";
|
|
138
134
|
};
|
|
139
135
|
EscPosPrinter.prototype.restoreDefaultSettings = function() {
|
|
140
136
|
this.charHSize = 1;
|
|
@@ -144,24 +140,19 @@ EscPosPrinter.prototype.restoreDefaultLineSpacing = function() {
|
|
|
144
140
|
this.orderData += "1b32";
|
|
145
141
|
};
|
|
146
142
|
EscPosPrinter.prototype.setLineSpacing = function(n) {
|
|
147
|
-
if (n >= 0 && n <= 255)
|
|
148
|
-
this.orderData += "1b33" + _numToHexStr(n, 1);
|
|
143
|
+
if (n >= 0 && n <= 255) this.orderData += "1b33" + _numToHexStr(n, 1);
|
|
149
144
|
};
|
|
150
145
|
EscPosPrinter.prototype.setPrintModes = function(bold, double_h, double_w) {
|
|
151
146
|
var n = 0;
|
|
152
|
-
if (bold)
|
|
153
|
-
|
|
154
|
-
if (
|
|
155
|
-
n |= 16;
|
|
156
|
-
if (double_w)
|
|
157
|
-
n |= 32;
|
|
147
|
+
if (bold) n |= 8;
|
|
148
|
+
if (double_h) n |= 16;
|
|
149
|
+
if (double_w) n |= 32;
|
|
158
150
|
this.charHSize = double_w ? 2 : 1;
|
|
159
151
|
this.orderData += "1b21" + _numToHexStr(n, 1);
|
|
160
152
|
};
|
|
161
153
|
EscPosPrinter.prototype.setCharacterSize = function(h, w) {
|
|
162
154
|
var n = 0;
|
|
163
|
-
if (h >= 1 && h <= 8)
|
|
164
|
-
n |= h - 1;
|
|
155
|
+
if (h >= 1 && h <= 8) n |= h - 1;
|
|
165
156
|
if (w >= 1 && w <= 8) {
|
|
166
157
|
n |= w - 1 << 4;
|
|
167
158
|
this.charHSize = w;
|
|
@@ -169,20 +160,16 @@ EscPosPrinter.prototype.setCharacterSize = function(h, w) {
|
|
|
169
160
|
this.orderData += "1d21" + _numToHexStr(n, 1);
|
|
170
161
|
};
|
|
171
162
|
EscPosPrinter.prototype.horizontalTab = function(n) {
|
|
172
|
-
for (var i = 0; i < n; i++)
|
|
173
|
-
this.orderData += "09";
|
|
163
|
+
for (var i = 0; i < n; i++) this.orderData += "09";
|
|
174
164
|
};
|
|
175
165
|
EscPosPrinter.prototype.setAbsolutePrintPosition = function(n) {
|
|
176
|
-
if (n >= 0 && n <= 65535)
|
|
177
|
-
this.orderData += "1b24" + _numToHexStr(n, 2);
|
|
166
|
+
if (n >= 0 && n <= 65535) this.orderData += "1b24" + _numToHexStr(n, 2);
|
|
178
167
|
};
|
|
179
168
|
EscPosPrinter.prototype.setRelativePrintPosition = function(n) {
|
|
180
|
-
if (n >= -32768 && n <= 32767)
|
|
181
|
-
this.orderData += "1b5c" + _numToHexStr(n, 2);
|
|
169
|
+
if (n >= -32768 && n <= 32767) this.orderData += "1b5c" + _numToHexStr(n, 2);
|
|
182
170
|
};
|
|
183
171
|
EscPosPrinter.prototype.setAlignment = function(n) {
|
|
184
|
-
if (n >= 0 && n <= 2)
|
|
185
|
-
this.orderData += "1b61" + _numToHexStr(n, 1);
|
|
172
|
+
if (n >= 0 && n <= 2) this.orderData += "1b61" + _numToHexStr(n, 1);
|
|
186
173
|
};
|
|
187
174
|
EscPosPrinter.prototype.cutPaper = function(fullCut) {
|
|
188
175
|
this.orderData += "1d56" + (fullCut ? "30" : "31");
|
|
@@ -213,10 +200,8 @@ function _columnAlignment(v) {
|
|
|
213
200
|
}
|
|
214
201
|
EscPosPrinter.prototype.setColumnWidths = function() {
|
|
215
202
|
var i, remain, width, alignment;
|
|
216
|
-
if (arguments.length == 0)
|
|
217
|
-
|
|
218
|
-
for (i = 0; i < MAX_COLUMNS; i++)
|
|
219
|
-
this.widthOfColumns[i] = 0;
|
|
203
|
+
if (arguments.length == 0) return;
|
|
204
|
+
for (i = 0; i < MAX_COLUMNS; i++) this.widthOfColumns[i] = 0;
|
|
220
205
|
remain = this.dotsPerLine;
|
|
221
206
|
for (i = 0; i < arguments.length; i++) {
|
|
222
207
|
if (i == MAX_COLUMNS)
|
|
@@ -237,12 +222,10 @@ EscPosPrinter.prototype.printInColumns = function() {
|
|
|
237
222
|
var strwidth = new Array(MAX_COLUMNS);
|
|
238
223
|
var i, j, c, w, columns, width, alignment, pos;
|
|
239
224
|
var done;
|
|
240
|
-
if (arguments.length == 0)
|
|
241
|
-
return;
|
|
225
|
+
if (arguments.length == 0) return;
|
|
242
226
|
columns = 0;
|
|
243
227
|
for (i = 0; i < arguments.length; i++) {
|
|
244
|
-
if (i == MAX_COLUMNS || this.widthOfColumns[i] == 0)
|
|
245
|
-
break;
|
|
228
|
+
if (i == MAX_COLUMNS || this.widthOfColumns[i] == 0) break;
|
|
246
229
|
strcurr[i] = "";
|
|
247
230
|
strrem[i] = arguments[i];
|
|
248
231
|
columns++;
|
|
@@ -279,10 +262,8 @@ EscPosPrinter.prototype.printInColumns = function() {
|
|
|
279
262
|
}
|
|
280
263
|
}
|
|
281
264
|
}
|
|
282
|
-
if (j < strrem[i].length)
|
|
283
|
-
|
|
284
|
-
else
|
|
285
|
-
strrem[i] = "";
|
|
265
|
+
if (j < strrem[i].length) strrem[i] = strrem[i].substring(j);
|
|
266
|
+
else strrem[i] = "";
|
|
286
267
|
alignment = _columnAlignment(this.widthOfColumns[i]);
|
|
287
268
|
switch (alignment) {
|
|
288
269
|
case ALIGN_CENTER:
|
|
@@ -298,24 +279,17 @@ EscPosPrinter.prototype.printInColumns = function() {
|
|
|
298
279
|
this.appendText(strcurr[i]);
|
|
299
280
|
pos += width;
|
|
300
281
|
}
|
|
301
|
-
if (!done)
|
|
302
|
-
this.lineFeed(1);
|
|
282
|
+
if (!done) this.lineFeed(1);
|
|
303
283
|
} while (!done);
|
|
304
284
|
};
|
|
305
285
|
EscPosPrinter.prototype.appendBarcode = function(hri_pos, height, module_size, barcode_type, text) {
|
|
306
286
|
var text_length = text.length;
|
|
307
|
-
if (text_length == 0)
|
|
308
|
-
|
|
309
|
-
if (
|
|
310
|
-
|
|
311
|
-
if (
|
|
312
|
-
|
|
313
|
-
else if (height > 255)
|
|
314
|
-
height = 255;
|
|
315
|
-
if (module_size < 1)
|
|
316
|
-
module_size = 1;
|
|
317
|
-
else if (module_size > 6)
|
|
318
|
-
module_size = 6;
|
|
287
|
+
if (text_length == 0) return;
|
|
288
|
+
if (text_length > 255) text_length = 255;
|
|
289
|
+
if (height < 1) height = 1;
|
|
290
|
+
else if (height > 255) height = 255;
|
|
291
|
+
if (module_size < 1) module_size = 1;
|
|
292
|
+
else if (module_size > 6) module_size = 6;
|
|
319
293
|
this.orderData += "1d48" + _numToHexStr(hri_pos & 3, 1);
|
|
320
294
|
this.orderData += "1d6600";
|
|
321
295
|
this.orderData += "1d68" + _numToHexStr(height, 1);
|
|
@@ -326,18 +300,12 @@ EscPosPrinter.prototype.appendBarcode = function(hri_pos, height, module_size, b
|
|
|
326
300
|
};
|
|
327
301
|
EscPosPrinter.prototype.appendQRcode = function(module_size, ec_level, text) {
|
|
328
302
|
var text_length = text.length;
|
|
329
|
-
if (text_length == 0)
|
|
330
|
-
|
|
331
|
-
if (
|
|
332
|
-
|
|
333
|
-
if (
|
|
334
|
-
|
|
335
|
-
else if (module_size > 16)
|
|
336
|
-
module_size = 16;
|
|
337
|
-
if (ec_level < 0)
|
|
338
|
-
ec_level = 0;
|
|
339
|
-
else if (ec_level > 3)
|
|
340
|
-
ec_level = 3;
|
|
303
|
+
if (text_length == 0) return;
|
|
304
|
+
if (text_length > 65535) text_length = 65535;
|
|
305
|
+
if (module_size < 1) module_size = 1;
|
|
306
|
+
else if (module_size > 16) module_size = 16;
|
|
307
|
+
if (ec_level < 0) ec_level = 0;
|
|
308
|
+
else if (ec_level > 3) ec_level = 3;
|
|
341
309
|
this.orderData += "1d286b040031410000";
|
|
342
310
|
this.orderData += "1d286b03003143" + _numToHexStr(module_size, 1);
|
|
343
311
|
this.orderData += "1d286b03003145" + _numToHexStr(ec_level + 48, 1);
|
|
@@ -347,10 +315,8 @@ EscPosPrinter.prototype.appendQRcode = function(module_size, ec_level, text) {
|
|
|
347
315
|
this.orderData += "1d286b0300315130";
|
|
348
316
|
};
|
|
349
317
|
function _diffuseDither(src_data, width, height) {
|
|
350
|
-
if (width <= 0 || height <= 0)
|
|
351
|
-
|
|
352
|
-
if (src_data.length < width * height)
|
|
353
|
-
return null;
|
|
318
|
+
if (width <= 0 || height <= 0) return null;
|
|
319
|
+
if (src_data.length < width * height) return null;
|
|
354
320
|
var bmwidth = width + 7 >> 3;
|
|
355
321
|
var dst_data = new Array(bmwidth * height);
|
|
356
322
|
var line_buffer = new Array(2 * width);
|
|
@@ -404,14 +370,11 @@ function _diffuseDither(src_data, width, height) {
|
|
|
404
370
|
e5 = err * 5 + 8 >> 4;
|
|
405
371
|
e3 = err * 3 + 8 >> 4;
|
|
406
372
|
e1 = err - (e7 + e5 + e3);
|
|
407
|
-
if (x < width)
|
|
408
|
-
line_buffer[line1 * width + b1] += e7;
|
|
373
|
+
if (x < width) line_buffer[line1 * width + b1] += e7;
|
|
409
374
|
if (not_last_line) {
|
|
410
375
|
line_buffer[line2 * width + b2] += e5;
|
|
411
|
-
if (x > 1)
|
|
412
|
-
|
|
413
|
-
if (x < width)
|
|
414
|
-
line_buffer[line2 * width + b2 + 1] += e1;
|
|
376
|
+
if (x > 1) line_buffer[line2 * width + b2 - 1] += e3;
|
|
377
|
+
if (x < width) line_buffer[line2 * width + b2 + 1] += e1;
|
|
415
378
|
}
|
|
416
379
|
b2++;
|
|
417
380
|
}
|
|
@@ -419,10 +382,8 @@ function _diffuseDither(src_data, width, height) {
|
|
|
419
382
|
return dst_data;
|
|
420
383
|
}
|
|
421
384
|
function _thresholdDither(src_data, width, height) {
|
|
422
|
-
if (width <= 0 || height <= 0)
|
|
423
|
-
|
|
424
|
-
if (src_data.length < width * height)
|
|
425
|
-
return null;
|
|
385
|
+
if (width <= 0 || height <= 0) return null;
|
|
386
|
+
if (src_data.length < width * height) return null;
|
|
426
387
|
var bmwidth = width + 7 >> 3;
|
|
427
388
|
var dst_data = new Array(bmwidth * height);
|
|
428
389
|
var p, q, k, x, y, mask;
|
|
@@ -466,8 +427,7 @@ EscPosPrinter.prototype.appendImage = function(imgdata, dither) {
|
|
|
466
427
|
var w = imgdata.width;
|
|
467
428
|
var h = imgdata.height;
|
|
468
429
|
gray_data = _convertToGray(imgdata, w, h);
|
|
469
|
-
if (dither == "diffuse")
|
|
470
|
-
mono_data = _diffuseDither(gray_data, w, h);
|
|
430
|
+
if (dither == "diffuse") mono_data = _diffuseDither(gray_data, w, h);
|
|
471
431
|
else
|
|
472
432
|
mono_data = _thresholdDither(gray_data, w, h);
|
|
473
433
|
w = w + 7 >> 3;
|
|
@@ -488,16 +448,13 @@ EscPosPrinter.prototype.setPrintAreaInPageMode = function(x, y, w, h) {
|
|
|
488
448
|
this.orderData += _numToHexStr(h, 2);
|
|
489
449
|
};
|
|
490
450
|
EscPosPrinter.prototype.setPrintDirectionInPageMode = function(dir) {
|
|
491
|
-
if (dir >= 0 && dir <= 3)
|
|
492
|
-
this.orderData += "1b54" + _numToHexStr(dir, 1);
|
|
451
|
+
if (dir >= 0 && dir <= 3) this.orderData += "1b54" + _numToHexStr(dir, 1);
|
|
493
452
|
};
|
|
494
453
|
EscPosPrinter.prototype.setAbsolutePrintPositionInPageMode = function(n) {
|
|
495
|
-
if (n >= 0 && n <= 65535)
|
|
496
|
-
this.orderData += "1d24" + _numToHexStr(n, 2);
|
|
454
|
+
if (n >= 0 && n <= 65535) this.orderData += "1d24" + _numToHexStr(n, 2);
|
|
497
455
|
};
|
|
498
456
|
EscPosPrinter.prototype.setRelativePrintPositionInPageMode = function(n) {
|
|
499
|
-
if (n >= -32768 && n <= 32767)
|
|
500
|
-
this.orderData += "1d5c" + _numToHexStr(n, 2);
|
|
457
|
+
if (n >= -32768 && n <= 32767) this.orderData += "1d5c" + _numToHexStr(n, 2);
|
|
501
458
|
};
|
|
502
459
|
EscPosPrinter.prototype.printAndExitPageMode = function() {
|
|
503
460
|
this.orderData += "0c";
|
|
@@ -49,7 +49,7 @@ var preparing = async (ip, sn, params) => {
|
|
|
49
49
|
printer.lineFeed(1);
|
|
50
50
|
printer.setPrintModes(false, false, false);
|
|
51
51
|
printer.setAlignment(import_EscPosPrinter.ALIGN_CENTER);
|
|
52
|
-
printer.appendText("
|
|
52
|
+
printer.appendText("打印测试\n");
|
|
53
53
|
dividing(printer);
|
|
54
54
|
printer.setAlignment(import_EscPosPrinter.ALIGN_LEFT);
|
|
55
55
|
printer.appendText("Order time: 2023-10-19 14:15:50\n");
|
|
@@ -64,7 +64,7 @@ var preparing = async (ip, sn, params) => {
|
|
|
64
64
|
printer.setPrintModes(true, true, true);
|
|
65
65
|
printer.printInColumns(
|
|
66
66
|
"1 x",
|
|
67
|
-
"
|
|
67
|
+
"我是很长的商品名称我是很长的商品名称我是很长的商品名称我是很长的商品名称"
|
|
68
68
|
);
|
|
69
69
|
printer.setPrintModes(false, false, false);
|
|
70
70
|
dividing(printer);
|
package/lib/firebase/index.js
CHANGED
|
@@ -46,10 +46,12 @@ var import_config = require("./config");
|
|
|
46
46
|
var import_typeUtils = require("../typeUtils");
|
|
47
47
|
var isClient = typeof window != "undefined" && window.document;
|
|
48
48
|
var isDefaultInit = isClient && ((0, import_typeUtils.isUndefined)(window == null ? void 0 : window.__isDefaultInit) ? true : window == null ? void 0 : window.__isDefaultInit);
|
|
49
|
+
var isInitialized = false;
|
|
49
50
|
var firebaseApp = {};
|
|
50
51
|
var auth = {};
|
|
51
52
|
var database = {};
|
|
52
53
|
var initFirebase = (config) => {
|
|
54
|
+
isInitialized = true;
|
|
53
55
|
firebaseApp = (0, import_app.initializeApp)(config || import_config.firebaseConfig);
|
|
54
56
|
auth = (0, import_auth.getAuth)(firebaseApp);
|
|
55
57
|
database = (0, import_database.getDatabase)(firebaseApp);
|
|
@@ -99,6 +101,9 @@ var signOutUser = async () => {
|
|
|
99
101
|
};
|
|
100
102
|
var readData = async (path) => {
|
|
101
103
|
try {
|
|
104
|
+
if (!isInitialized) {
|
|
105
|
+
initFirebase();
|
|
106
|
+
}
|
|
102
107
|
const dataSnapshot = await (0, import_database.get)((0, import_database.ref)(database, getPath(path)));
|
|
103
108
|
return dataSnapshot.val();
|
|
104
109
|
} catch (error) {
|
|
@@ -108,6 +113,9 @@ var readData = async (path) => {
|
|
|
108
113
|
};
|
|
109
114
|
var writeData = async (path, data) => {
|
|
110
115
|
try {
|
|
116
|
+
if (!isInitialized) {
|
|
117
|
+
initFirebase();
|
|
118
|
+
}
|
|
111
119
|
return (0, import_database.set)((0, import_database.ref)(database, getPath(path)), data);
|
|
112
120
|
} catch (error) {
|
|
113
121
|
console.error("Error writing data:", error);
|
|
@@ -115,11 +123,25 @@ var writeData = async (path, data) => {
|
|
|
115
123
|
}
|
|
116
124
|
};
|
|
117
125
|
var onDataChange = (path, callback) => {
|
|
126
|
+
try {
|
|
127
|
+
if (!isInitialized) {
|
|
128
|
+
initFirebase();
|
|
129
|
+
}
|
|
130
|
+
} catch (error) {
|
|
131
|
+
console.error("init error", error);
|
|
132
|
+
}
|
|
118
133
|
const databaseRef = (0, import_database.ref)(database, getPath(path));
|
|
119
134
|
const listener = (0, import_database.onValue)(databaseRef, callback);
|
|
120
135
|
return listener;
|
|
121
136
|
};
|
|
122
137
|
var onDataChanged = (path, callback) => {
|
|
138
|
+
try {
|
|
139
|
+
if (!isInitialized) {
|
|
140
|
+
initFirebase();
|
|
141
|
+
}
|
|
142
|
+
} catch (error) {
|
|
143
|
+
console.error("init error", error);
|
|
144
|
+
}
|
|
123
145
|
const databaseRef = (0, import_database.ref)(database, getPath(path));
|
|
124
146
|
const listener = (0, import_database.onChildChanged)(databaseRef, callback);
|
|
125
147
|
return listener;
|
package/lib/image.js
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
1
|
+
export * from './otherUtils';
|
|
2
|
+
export * from './typeUtils';
|
|
3
|
+
export * from './document';
|
|
4
|
+
export * from './date';
|
|
5
|
+
export * from './platform';
|
|
6
|
+
export * from './log';
|
|
7
|
+
export * from './format';
|
|
8
|
+
export * from './escPosPrinter';
|
|
9
9
|
export * from './miniRedux';
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
10
|
+
export * from './jsBridge';
|
|
11
|
+
export * from './image';
|
|
12
|
+
export * from './locales';
|
|
13
|
+
export * from './arrayUtils';
|
|
14
|
+
export declare const setPisellUtilsConfig: (config: {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}) => void;
|
|
17
|
+
export declare const getPisellUtilsConfig: () => {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
};
|