@cloud-app-dev/vidc 3.1.21 → 3.2.1
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/.umirc.ts +0 -3
- package/es/PlayerExt/index.d.ts +3 -1
- package/es/PlayerExt/index.js +18 -6
- package/es/ScreenPlayer/Live.js +10 -12
- package/es/ScreenPlayer/PlayerWithExt.js +2 -1
- package/es/ScreenPlayer/RatePick.js +6 -0
- package/es/ScreenPlayer/Record.d.ts +1 -1
- package/es/ScreenPlayer/Record.js +113 -157
- package/es/ScreenPlayer/RecordTools.js +3 -3
- package/es/ScreenPlayer/demo2.js +132 -51
- package/es/ScreenPlayer/interface.d.ts +24 -23
- package/es/ScreenPlayer/utils.d.ts +1 -11
- package/es/ScreenPlayer/utils.js +8 -20
- package/package.json +1 -1
- package/es/ScreenPlayer/useRecordList.d.ts +0 -8
- package/es/ScreenPlayer/useRecordList.js +0 -245
|
@@ -1,245 +0,0 @@
|
|
|
1
|
-
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); }
|
|
2
|
-
import _useAsyncEffect from "ahooks/es/useAsyncEffect";
|
|
3
|
-
import _useMemoizedFn from "ahooks/es/useMemoizedFn";
|
|
4
|
-
import _usePrevious from "ahooks/es/usePrevious";
|
|
5
|
-
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, $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 generator._invoke = function (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); } }; }(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; this._invoke = function (method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); }; } function maybeInvokeDelegate(delegate, context) { var method = delegate.iterator[context.method]; if (undefined === method) { if (context.delegate = null, "throw" === context.method) { if (delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel; context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method"); } return 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, define(Gp, "constructor", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, "constructor", GeneratorFunction), 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 (object) { var 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; }
|
|
6
|
-
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
7
|
-
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
8
|
-
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
9
|
-
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
10
|
-
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
11
|
-
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
12
|
-
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."); }
|
|
13
|
-
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); }
|
|
14
|
-
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; }
|
|
15
|
-
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
16
|
-
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
17
|
-
import { __awaiter } from "tslib";
|
|
18
|
-
import { differenceBy, orderBy, uniqBy } from 'lodash-es';
|
|
19
|
-
import { useMemo, useState } from 'react';
|
|
20
|
-
import { differenceWithIndexs, FILTER_KEY } from './utils';
|
|
21
|
-
function useRecordList(list, queryRecord, options) {
|
|
22
|
-
var _this = this;
|
|
23
|
-
var _useState = useState({
|
|
24
|
-
cidSegments: []
|
|
25
|
-
}),
|
|
26
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
27
|
-
state = _useState2[0],
|
|
28
|
-
setState = _useState2[1];
|
|
29
|
-
var listKey = useMemo(function () {
|
|
30
|
-
return list.map(function (v) {
|
|
31
|
-
var _a, _b;
|
|
32
|
-
return v ? "".concat(v.cid, "|").concat(v.date, "|").concat((_b = (_a = v.segments) === null || _a === void 0 ? void 0 : _a.length) !== null && _b !== void 0 ? _b : 0) : FILTER_KEY;
|
|
33
|
-
}).join('-');
|
|
34
|
-
}, [list]);
|
|
35
|
-
var prevListKey = _usePrevious(listKey);
|
|
36
|
-
var loaddingCallback = _useMemoizedFn(options.loaddingCallback);
|
|
37
|
-
var errorCallback = _useMemoizedFn(options.errorCallback);
|
|
38
|
-
_useAsyncEffect(function () {
|
|
39
|
-
return __awaiter(_this, void 0, void 0, /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
40
|
-
var diffIndexs, arr, _iterator, _step, dif, index, item, record, segments, _segments, _segments2, _segments3;
|
|
41
|
-
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
42
|
-
while (1) {
|
|
43
|
-
switch (_context.prev = _context.next) {
|
|
44
|
-
case 0:
|
|
45
|
-
diffIndexs = differenceWithIndexs(listKey ? listKey.split('-') : [], prevListKey ? prevListKey.split('-') : []);
|
|
46
|
-
if (!(diffIndexs.length === 0)) {
|
|
47
|
-
_context.next = 3;
|
|
48
|
-
break;
|
|
49
|
-
}
|
|
50
|
-
return _context.abrupt("return");
|
|
51
|
-
case 3:
|
|
52
|
-
arr = []; // 存在披露更新的情况
|
|
53
|
-
_iterator = _createForOfIteratorHelper(diffIndexs);
|
|
54
|
-
_context.prev = 5;
|
|
55
|
-
_iterator.s();
|
|
56
|
-
case 7:
|
|
57
|
-
if ((_step = _iterator.n()).done) {
|
|
58
|
-
_context.next = 52;
|
|
59
|
-
break;
|
|
60
|
-
}
|
|
61
|
-
dif = _step.value;
|
|
62
|
-
index = dif.idx;
|
|
63
|
-
item = list[index]; // 当前外部传入的对象
|
|
64
|
-
record = state.cidSegments[index]; //当前转换的播放对象
|
|
65
|
-
if (item) {
|
|
66
|
-
_context.next = 16;
|
|
67
|
-
break;
|
|
68
|
-
}
|
|
69
|
-
// 这里可能原来是空,也可能是外部删除
|
|
70
|
-
arr.push({
|
|
71
|
-
idx: index,
|
|
72
|
-
type: 'delete',
|
|
73
|
-
segments: []
|
|
74
|
-
});
|
|
75
|
-
_context.next = 50;
|
|
76
|
-
break;
|
|
77
|
-
case 16:
|
|
78
|
-
if (item.cid && item.date) {
|
|
79
|
-
_context.next = 18;
|
|
80
|
-
break;
|
|
81
|
-
}
|
|
82
|
-
return _context.abrupt("continue", 50);
|
|
83
|
-
case 18:
|
|
84
|
-
_context.prev = 18;
|
|
85
|
-
loaddingCallback(index, true);
|
|
86
|
-
if (record) {
|
|
87
|
-
_context.next = 27;
|
|
88
|
-
break;
|
|
89
|
-
}
|
|
90
|
-
_context.next = 23;
|
|
91
|
-
return queryRecord(Object.assign(Object.assign({}, item), {
|
|
92
|
-
cid: item.cid,
|
|
93
|
-
date: item.date,
|
|
94
|
-
recordType: item.recordType
|
|
95
|
-
}));
|
|
96
|
-
case 23:
|
|
97
|
-
segments = _context.sent;
|
|
98
|
-
arr.push({
|
|
99
|
-
idx: index,
|
|
100
|
-
type: 'add',
|
|
101
|
-
segments: segments
|
|
102
|
-
});
|
|
103
|
-
_context.next = 42;
|
|
104
|
-
break;
|
|
105
|
-
case 27:
|
|
106
|
-
if (!(record.cid !== item.cid || record.recordType !== item.recordType)) {
|
|
107
|
-
_context.next = 34;
|
|
108
|
-
break;
|
|
109
|
-
}
|
|
110
|
-
_context.next = 30;
|
|
111
|
-
return queryRecord(Object.assign(Object.assign({}, item), {
|
|
112
|
-
cid: item.cid,
|
|
113
|
-
date: item.date,
|
|
114
|
-
recordType: item.recordType
|
|
115
|
-
}));
|
|
116
|
-
case 30:
|
|
117
|
-
_segments = _context.sent;
|
|
118
|
-
arr.push({
|
|
119
|
-
idx: index,
|
|
120
|
-
type: 'add',
|
|
121
|
-
segments: _segments
|
|
122
|
-
});
|
|
123
|
-
_context.next = 42;
|
|
124
|
-
break;
|
|
125
|
-
case 34:
|
|
126
|
-
if (!(record.date !== item.date)) {
|
|
127
|
-
_context.next = 41;
|
|
128
|
-
break;
|
|
129
|
-
}
|
|
130
|
-
_context.next = 37;
|
|
131
|
-
return queryRecord(Object.assign(Object.assign({}, item), {
|
|
132
|
-
cid: item.cid,
|
|
133
|
-
date: item.date,
|
|
134
|
-
recordType: item.recordType
|
|
135
|
-
}));
|
|
136
|
-
case 37:
|
|
137
|
-
_segments2 = _context.sent;
|
|
138
|
-
arr.push({
|
|
139
|
-
idx: index,
|
|
140
|
-
type: 'modify',
|
|
141
|
-
segments: _segments2
|
|
142
|
-
});
|
|
143
|
-
_context.next = 42;
|
|
144
|
-
break;
|
|
145
|
-
case 41:
|
|
146
|
-
if (Array.isArray(item.segments) && item.segments.length > 0) {
|
|
147
|
-
// 时间轴更新
|
|
148
|
-
_segments3 = item.segments;
|
|
149
|
-
arr.push({
|
|
150
|
-
idx: index,
|
|
151
|
-
type: 'modify',
|
|
152
|
-
segments: _segments3
|
|
153
|
-
});
|
|
154
|
-
} else {
|
|
155
|
-
console.debug('无变化!跳过~');
|
|
156
|
-
}
|
|
157
|
-
case 42:
|
|
158
|
-
loaddingCallback(index, false);
|
|
159
|
-
_context.next = 50;
|
|
160
|
-
break;
|
|
161
|
-
case 45:
|
|
162
|
-
_context.prev = 45;
|
|
163
|
-
_context.t0 = _context["catch"](18);
|
|
164
|
-
console.error(_context.t0);
|
|
165
|
-
errorCallback(index);
|
|
166
|
-
loaddingCallback(index, false);
|
|
167
|
-
case 50:
|
|
168
|
-
_context.next = 7;
|
|
169
|
-
break;
|
|
170
|
-
case 52:
|
|
171
|
-
_context.next = 57;
|
|
172
|
-
break;
|
|
173
|
-
case 54:
|
|
174
|
-
_context.prev = 54;
|
|
175
|
-
_context.t1 = _context["catch"](5);
|
|
176
|
-
_iterator.e(_context.t1);
|
|
177
|
-
case 57:
|
|
178
|
-
_context.prev = 57;
|
|
179
|
-
_iterator.f();
|
|
180
|
-
return _context.finish(57);
|
|
181
|
-
case 60:
|
|
182
|
-
setState(function (old) {
|
|
183
|
-
var flag = false; //标记是否更新
|
|
184
|
-
var cidSegments = state.cidSegments;
|
|
185
|
-
arr.forEach(function (_ref) {
|
|
186
|
-
var type = _ref.type,
|
|
187
|
-
segments = _ref.segments,
|
|
188
|
-
idx = _ref.idx;
|
|
189
|
-
var index = idx;
|
|
190
|
-
var item = list[index];
|
|
191
|
-
switch (type) {
|
|
192
|
-
case 'add':
|
|
193
|
-
// 这里重置播放对象
|
|
194
|
-
flag = true;
|
|
195
|
-
var arr1 = item.segments ? [].concat(item.segments, segments) : segments;
|
|
196
|
-
arr1 = arr1.map(function (v) {
|
|
197
|
-
return Object.assign(Object.assign({}, v), {
|
|
198
|
-
id: "".concat(v.beginTime, "-").concat(v.endTime)
|
|
199
|
-
});
|
|
200
|
-
});
|
|
201
|
-
cidSegments[index] = Object.assign(Object.assign({}, item), {
|
|
202
|
-
segments: orderBy(uniqBy(arr1, 'id'), 'beginTime', 'asc')
|
|
203
|
-
});
|
|
204
|
-
break;
|
|
205
|
-
case 'delete':
|
|
206
|
-
// 这里一是保持无播放对象,二是删除当前播放对象
|
|
207
|
-
flag = true;
|
|
208
|
-
cidSegments[index] = undefined;
|
|
209
|
-
break;
|
|
210
|
-
case 'modify':
|
|
211
|
-
// 这里属于相同的播放对象,需要追加播放片断
|
|
212
|
-
flag = true;
|
|
213
|
-
cidSegments[index].date = item.date;
|
|
214
|
-
cidSegments[index].recordType = item.recordType;
|
|
215
|
-
var dif = differenceBy(cidSegments[index].segments, segments, 'beginTime');
|
|
216
|
-
if (dif.length === 0) {
|
|
217
|
-
flag = false;
|
|
218
|
-
} else {
|
|
219
|
-
var arr2 = [].concat(cidSegments[index].segments, segments);
|
|
220
|
-
arr2 = arr2.map(function (v) {
|
|
221
|
-
return Object.assign(Object.assign({}, v), {
|
|
222
|
-
id: "".concat(v.beginTime, "-").concat(v.endTime)
|
|
223
|
-
});
|
|
224
|
-
});
|
|
225
|
-
arr2 = uniqBy(arr2, 'id');
|
|
226
|
-
cidSegments[index].segments = orderBy(arr2, 'beginTime', 'asc');
|
|
227
|
-
}
|
|
228
|
-
break;
|
|
229
|
-
}
|
|
230
|
-
});
|
|
231
|
-
return Object.assign(Object.assign({}, old), {
|
|
232
|
-
cidSegments: flag ? _toConsumableArray(cidSegments) : cidSegments
|
|
233
|
-
});
|
|
234
|
-
});
|
|
235
|
-
case 61:
|
|
236
|
-
case "end":
|
|
237
|
-
return _context.stop();
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
}, _callee, null, [[5, 54, 57, 60], [18, 45]]);
|
|
241
|
-
}));
|
|
242
|
-
}, [list, listKey, prevListKey]);
|
|
243
|
-
return state.cidSegments;
|
|
244
|
-
}
|
|
245
|
-
export default useRecordList;
|