@cloud-app-dev/vidc 4.0.9 → 4.0.11
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/DBTools/index.d.ts +25 -0
- package/es/DBTools/index.js +337 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/package.json +6 -2
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare class DBInstance {
|
|
2
|
+
LM_DB_SERVER: any;
|
|
3
|
+
schemaName: string;
|
|
4
|
+
version: number;
|
|
5
|
+
constructor(schemaName: string);
|
|
6
|
+
_init(): Promise<void>;
|
|
7
|
+
get isClosed(): any;
|
|
8
|
+
get({ id }: {
|
|
9
|
+
id: string;
|
|
10
|
+
}): Promise<{
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}>;
|
|
13
|
+
put(data: {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
id: string;
|
|
16
|
+
expireTime?: number;
|
|
17
|
+
} & any): Promise<null>;
|
|
18
|
+
remove(ids: string[]): Promise<any[]>;
|
|
19
|
+
removeExpireData(): Promise<any[]>;
|
|
20
|
+
clear(): Promise<any>;
|
|
21
|
+
count(): Promise<any>;
|
|
22
|
+
update(...args: any): Promise<any>;
|
|
23
|
+
query(): Promise<any>;
|
|
24
|
+
}
|
|
25
|
+
export default DBInstance;
|
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
var _excluded = ["expireTime"];
|
|
2
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
3
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
4
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
5
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
6
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7
|
+
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; }
|
|
8
|
+
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); } }
|
|
9
|
+
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); }); }; }
|
|
10
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11
|
+
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); } }
|
|
12
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
13
|
+
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; }
|
|
14
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
15
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
16
|
+
import db from 'db.js';
|
|
17
|
+
import logger from "../logger";
|
|
18
|
+
import cache from "../cache";
|
|
19
|
+
var schema = {
|
|
20
|
+
key: {
|
|
21
|
+
keyPath: 'id',
|
|
22
|
+
autoIncrement: true
|
|
23
|
+
},
|
|
24
|
+
indexes: {
|
|
25
|
+
id: {
|
|
26
|
+
unique: true
|
|
27
|
+
},
|
|
28
|
+
time: {
|
|
29
|
+
unique: false
|
|
30
|
+
},
|
|
31
|
+
expireTime: {
|
|
32
|
+
unique: false
|
|
33
|
+
},
|
|
34
|
+
userId: {
|
|
35
|
+
unique: false
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
var DBInstance = /*#__PURE__*/function () {
|
|
40
|
+
function DBInstance(schemaName) {
|
|
41
|
+
_classCallCheck(this, DBInstance);
|
|
42
|
+
_defineProperty(this, "LM_DB_SERVER", void 0);
|
|
43
|
+
_defineProperty(this, "schemaName", void 0);
|
|
44
|
+
_defineProperty(this, "version", void 0);
|
|
45
|
+
this.LM_DB_SERVER = null;
|
|
46
|
+
this.schemaName = schemaName;
|
|
47
|
+
this.version = 1;
|
|
48
|
+
this._init();
|
|
49
|
+
}
|
|
50
|
+
_createClass(DBInstance, [{
|
|
51
|
+
key: "_init",
|
|
52
|
+
value: function () {
|
|
53
|
+
var _init2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
54
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
55
|
+
while (1) switch (_context.prev = _context.next) {
|
|
56
|
+
case 0:
|
|
57
|
+
_context.next = 2;
|
|
58
|
+
return db.open({
|
|
59
|
+
server: this.schemaName,
|
|
60
|
+
version: this.version,
|
|
61
|
+
schema: _defineProperty({}, this.schemaName, schema)
|
|
62
|
+
});
|
|
63
|
+
case 2:
|
|
64
|
+
this.LM_DB_SERVER = _context.sent;
|
|
65
|
+
console.log(this.LM_DB_SERVER);
|
|
66
|
+
logger.debug('IndexDB open success!', "serverName:".concat(this.schemaName, ", version:").concat(this.version, ", schema:").concat(JSON.stringify(schema)));
|
|
67
|
+
case 5:
|
|
68
|
+
case "end":
|
|
69
|
+
return _context.stop();
|
|
70
|
+
}
|
|
71
|
+
}, _callee, this);
|
|
72
|
+
}));
|
|
73
|
+
function _init() {
|
|
74
|
+
return _init2.apply(this, arguments);
|
|
75
|
+
}
|
|
76
|
+
return _init;
|
|
77
|
+
}()
|
|
78
|
+
}, {
|
|
79
|
+
key: "isClosed",
|
|
80
|
+
get: function get() {
|
|
81
|
+
return this.LM_DB_SERVER ? this.LM_DB_SERVER.isClosed() : true;
|
|
82
|
+
}
|
|
83
|
+
}, {
|
|
84
|
+
key: "get",
|
|
85
|
+
value: function () {
|
|
86
|
+
var _get = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(_ref) {
|
|
87
|
+
var id;
|
|
88
|
+
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
89
|
+
while (1) switch (_context2.prev = _context2.next) {
|
|
90
|
+
case 0:
|
|
91
|
+
id = _ref.id;
|
|
92
|
+
if (id) {
|
|
93
|
+
_context2.next = 3;
|
|
94
|
+
break;
|
|
95
|
+
}
|
|
96
|
+
return _context2.abrupt("return", Promise.reject({
|
|
97
|
+
message: 'IndexDB主键id不存在'
|
|
98
|
+
}));
|
|
99
|
+
case 3:
|
|
100
|
+
if (!this.isClosed) {
|
|
101
|
+
_context2.next = 6;
|
|
102
|
+
break;
|
|
103
|
+
}
|
|
104
|
+
_context2.next = 6;
|
|
105
|
+
return this._init();
|
|
106
|
+
case 6:
|
|
107
|
+
this.removeExpireData();
|
|
108
|
+
return _context2.abrupt("return", this.LM_DB_SERVER[this.schemaName].get(id));
|
|
109
|
+
case 8:
|
|
110
|
+
case "end":
|
|
111
|
+
return _context2.stop();
|
|
112
|
+
}
|
|
113
|
+
}, _callee2, this);
|
|
114
|
+
}));
|
|
115
|
+
function get(_x) {
|
|
116
|
+
return _get.apply(this, arguments);
|
|
117
|
+
}
|
|
118
|
+
return get;
|
|
119
|
+
}()
|
|
120
|
+
}, {
|
|
121
|
+
key: "put",
|
|
122
|
+
value: function () {
|
|
123
|
+
var _put = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(data) {
|
|
124
|
+
var _data$expireTime, expireTime, params;
|
|
125
|
+
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
126
|
+
while (1) switch (_context3.prev = _context3.next) {
|
|
127
|
+
case 0:
|
|
128
|
+
if (data.id) {
|
|
129
|
+
_context3.next = 2;
|
|
130
|
+
break;
|
|
131
|
+
}
|
|
132
|
+
return _context3.abrupt("return", Promise.reject({
|
|
133
|
+
message: '主键id不存在'
|
|
134
|
+
}));
|
|
135
|
+
case 2:
|
|
136
|
+
_data$expireTime = data.expireTime, expireTime = _data$expireTime === void 0 ? Date.now() + 7 * 24 * 60 * 60 * 1000 : _data$expireTime, params = _objectWithoutProperties(data, _excluded);
|
|
137
|
+
params.userId = cache.getCache('userId', 'session');
|
|
138
|
+
params.updateTime = Date.now();
|
|
139
|
+
if (!this.isClosed) {
|
|
140
|
+
_context3.next = 8;
|
|
141
|
+
break;
|
|
142
|
+
}
|
|
143
|
+
_context3.next = 8;
|
|
144
|
+
return this._init();
|
|
145
|
+
case 8:
|
|
146
|
+
this.removeExpireData();
|
|
147
|
+
return _context3.abrupt("return", this.LM_DB_SERVER[this.schemaName].put(_objectSpread({
|
|
148
|
+
expireTime: expireTime
|
|
149
|
+
}, params)));
|
|
150
|
+
case 10:
|
|
151
|
+
case "end":
|
|
152
|
+
return _context3.stop();
|
|
153
|
+
}
|
|
154
|
+
}, _callee3, this);
|
|
155
|
+
}));
|
|
156
|
+
function put(_x2) {
|
|
157
|
+
return _put.apply(this, arguments);
|
|
158
|
+
}
|
|
159
|
+
return put;
|
|
160
|
+
}()
|
|
161
|
+
}, {
|
|
162
|
+
key: "remove",
|
|
163
|
+
value: function () {
|
|
164
|
+
var _remove = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(ids) {
|
|
165
|
+
var _this = this;
|
|
166
|
+
return _regeneratorRuntime().wrap(function _callee4$(_context4) {
|
|
167
|
+
while (1) switch (_context4.prev = _context4.next) {
|
|
168
|
+
case 0:
|
|
169
|
+
if (!this.isClosed) {
|
|
170
|
+
_context4.next = 3;
|
|
171
|
+
break;
|
|
172
|
+
}
|
|
173
|
+
_context4.next = 3;
|
|
174
|
+
return this._init();
|
|
175
|
+
case 3:
|
|
176
|
+
return _context4.abrupt("return", Promise.all(ids.map(function (id) {
|
|
177
|
+
return _this.LM_DB_SERVER[_this.schemaName].remove(id);
|
|
178
|
+
})));
|
|
179
|
+
case 4:
|
|
180
|
+
case "end":
|
|
181
|
+
return _context4.stop();
|
|
182
|
+
}
|
|
183
|
+
}, _callee4, this);
|
|
184
|
+
}));
|
|
185
|
+
function remove(_x3) {
|
|
186
|
+
return _remove.apply(this, arguments);
|
|
187
|
+
}
|
|
188
|
+
return remove;
|
|
189
|
+
}()
|
|
190
|
+
}, {
|
|
191
|
+
key: "removeExpireData",
|
|
192
|
+
value: function () {
|
|
193
|
+
var _removeExpireData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5() {
|
|
194
|
+
var result;
|
|
195
|
+
return _regeneratorRuntime().wrap(function _callee5$(_context5) {
|
|
196
|
+
while (1) switch (_context5.prev = _context5.next) {
|
|
197
|
+
case 0:
|
|
198
|
+
if (!this.isClosed) {
|
|
199
|
+
_context5.next = 3;
|
|
200
|
+
break;
|
|
201
|
+
}
|
|
202
|
+
_context5.next = 3;
|
|
203
|
+
return this._init();
|
|
204
|
+
case 3:
|
|
205
|
+
_context5.next = 5;
|
|
206
|
+
return this.LM_DB_SERVER[this.schemaName].query().filter(function (item) {
|
|
207
|
+
return item.expireTime < Date.now();
|
|
208
|
+
}).execute();
|
|
209
|
+
case 5:
|
|
210
|
+
result = _context5.sent;
|
|
211
|
+
return _context5.abrupt("return", this.remove(result.map(function (v) {
|
|
212
|
+
return v.id;
|
|
213
|
+
})));
|
|
214
|
+
case 7:
|
|
215
|
+
case "end":
|
|
216
|
+
return _context5.stop();
|
|
217
|
+
}
|
|
218
|
+
}, _callee5, this);
|
|
219
|
+
}));
|
|
220
|
+
function removeExpireData() {
|
|
221
|
+
return _removeExpireData.apply(this, arguments);
|
|
222
|
+
}
|
|
223
|
+
return removeExpireData;
|
|
224
|
+
}()
|
|
225
|
+
}, {
|
|
226
|
+
key: "clear",
|
|
227
|
+
value: function () {
|
|
228
|
+
var _clear = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee6() {
|
|
229
|
+
return _regeneratorRuntime().wrap(function _callee6$(_context6) {
|
|
230
|
+
while (1) switch (_context6.prev = _context6.next) {
|
|
231
|
+
case 0:
|
|
232
|
+
if (!this.isClosed) {
|
|
233
|
+
_context6.next = 3;
|
|
234
|
+
break;
|
|
235
|
+
}
|
|
236
|
+
_context6.next = 3;
|
|
237
|
+
return this._init();
|
|
238
|
+
case 3:
|
|
239
|
+
return _context6.abrupt("return", this.LM_DB_SERVER[this.schemaName].clear());
|
|
240
|
+
case 4:
|
|
241
|
+
case "end":
|
|
242
|
+
return _context6.stop();
|
|
243
|
+
}
|
|
244
|
+
}, _callee6, this);
|
|
245
|
+
}));
|
|
246
|
+
function clear() {
|
|
247
|
+
return _clear.apply(this, arguments);
|
|
248
|
+
}
|
|
249
|
+
return clear;
|
|
250
|
+
}()
|
|
251
|
+
}, {
|
|
252
|
+
key: "count",
|
|
253
|
+
value: function () {
|
|
254
|
+
var _count = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee7() {
|
|
255
|
+
return _regeneratorRuntime().wrap(function _callee7$(_context7) {
|
|
256
|
+
while (1) switch (_context7.prev = _context7.next) {
|
|
257
|
+
case 0:
|
|
258
|
+
if (!this.isClosed) {
|
|
259
|
+
_context7.next = 3;
|
|
260
|
+
break;
|
|
261
|
+
}
|
|
262
|
+
_context7.next = 3;
|
|
263
|
+
return this._init();
|
|
264
|
+
case 3:
|
|
265
|
+
return _context7.abrupt("return", this.LM_DB_SERVER[this.schemaName].count());
|
|
266
|
+
case 4:
|
|
267
|
+
case "end":
|
|
268
|
+
return _context7.stop();
|
|
269
|
+
}
|
|
270
|
+
}, _callee7, this);
|
|
271
|
+
}));
|
|
272
|
+
function count() {
|
|
273
|
+
return _count.apply(this, arguments);
|
|
274
|
+
}
|
|
275
|
+
return count;
|
|
276
|
+
}()
|
|
277
|
+
}, {
|
|
278
|
+
key: "update",
|
|
279
|
+
value: function () {
|
|
280
|
+
var _update = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8() {
|
|
281
|
+
var _this$LM_DB_SERVER$th;
|
|
282
|
+
var _args8 = arguments;
|
|
283
|
+
return _regeneratorRuntime().wrap(function _callee8$(_context8) {
|
|
284
|
+
while (1) switch (_context8.prev = _context8.next) {
|
|
285
|
+
case 0:
|
|
286
|
+
if (!this.isClosed) {
|
|
287
|
+
_context8.next = 3;
|
|
288
|
+
break;
|
|
289
|
+
}
|
|
290
|
+
_context8.next = 3;
|
|
291
|
+
return this._init();
|
|
292
|
+
case 3:
|
|
293
|
+
this.removeExpireData();
|
|
294
|
+
return _context8.abrupt("return", (_this$LM_DB_SERVER$th = this.LM_DB_SERVER[this.schemaName]).update.apply(_this$LM_DB_SERVER$th, _args8));
|
|
295
|
+
case 5:
|
|
296
|
+
case "end":
|
|
297
|
+
return _context8.stop();
|
|
298
|
+
}
|
|
299
|
+
}, _callee8, this);
|
|
300
|
+
}));
|
|
301
|
+
function update() {
|
|
302
|
+
return _update.apply(this, arguments);
|
|
303
|
+
}
|
|
304
|
+
return update;
|
|
305
|
+
}()
|
|
306
|
+
}, {
|
|
307
|
+
key: "query",
|
|
308
|
+
value: function () {
|
|
309
|
+
var _query = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee9() {
|
|
310
|
+
return _regeneratorRuntime().wrap(function _callee9$(_context9) {
|
|
311
|
+
while (1) switch (_context9.prev = _context9.next) {
|
|
312
|
+
case 0:
|
|
313
|
+
if (!this.isClosed) {
|
|
314
|
+
_context9.next = 3;
|
|
315
|
+
break;
|
|
316
|
+
}
|
|
317
|
+
_context9.next = 3;
|
|
318
|
+
return this._init();
|
|
319
|
+
case 3:
|
|
320
|
+
return _context9.abrupt("return", this.LM_DB_SERVER[this.schemaName].query().filter(function (v) {
|
|
321
|
+
return v.userId === cache.getCache('userId', 'session');
|
|
322
|
+
}).execute());
|
|
323
|
+
case 4:
|
|
324
|
+
case "end":
|
|
325
|
+
return _context9.stop();
|
|
326
|
+
}
|
|
327
|
+
}, _callee9, this);
|
|
328
|
+
}));
|
|
329
|
+
function query() {
|
|
330
|
+
return _query.apply(this, arguments);
|
|
331
|
+
}
|
|
332
|
+
return query;
|
|
333
|
+
}()
|
|
334
|
+
}]);
|
|
335
|
+
return DBInstance;
|
|
336
|
+
}();
|
|
337
|
+
export default DBInstance;
|
package/es/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export { default as CheckGroupFixed } from './CheckGroupFixed';
|
|
|
5
5
|
export { default as Config } from './Config';
|
|
6
6
|
export { default as ConfigContext } from './ConfigContext';
|
|
7
7
|
export { default as CustomRenderSelect } from './CustomRenderSelect';
|
|
8
|
+
export { default as DBTools } from './DBTools';
|
|
8
9
|
export { default as DisableMark } from './DisableMark';
|
|
9
10
|
export { default as DomMove } from './DomMove';
|
|
10
11
|
export { default as Drag } from './Drag';
|
package/es/index.js
CHANGED
|
@@ -5,6 +5,7 @@ export { default as CheckGroupFixed } from "./CheckGroupFixed";
|
|
|
5
5
|
export { default as Config } from "./Config";
|
|
6
6
|
export { default as ConfigContext } from "./ConfigContext";
|
|
7
7
|
export { default as CustomRenderSelect } from "./CustomRenderSelect";
|
|
8
|
+
export { default as DBTools } from "./DBTools";
|
|
8
9
|
export { default as DisableMark } from "./DisableMark";
|
|
9
10
|
export { default as DomMove } from "./DomMove";
|
|
10
11
|
export { default as Drag } from "./Drag";
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "@cloud-app-dev/vidc",
|
|
4
4
|
"description": "Video Image Data Componennts",
|
|
5
|
-
"version": "4.0.
|
|
5
|
+
"version": "4.0.11",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"docs:deploy": "gh-pages -d docs-dist",
|
|
8
8
|
"build": "npm run entry && father build",
|
|
@@ -55,9 +55,13 @@
|
|
|
55
55
|
"lodash-es": "^4.17.21",
|
|
56
56
|
"react-error-boundary": "^3.1.4",
|
|
57
57
|
"react-hotkeys-hook": "^4.0.4",
|
|
58
|
-
"screenfull": "^6.0.2"
|
|
58
|
+
"screenfull": "^6.0.2",
|
|
59
|
+
"socket.io-client": "1.4.5",
|
|
60
|
+
"js-cookie": "^2.2.1",
|
|
61
|
+
"db.js": "^0.15.0"
|
|
59
62
|
},
|
|
60
63
|
"devDependencies": {
|
|
64
|
+
"@types/socket.io-client": "^1.4.36",
|
|
61
65
|
"@commitlint/cli": "^17.1.2",
|
|
62
66
|
"@commitlint/config-conventional": "^17.1.0",
|
|
63
67
|
"@types/leaflet": "^1.9.0",
|