@ezuikit/player-theme 2.1.1-beta.1 → 2.1.2-beta.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/dist/constant.js +2 -5
- package/dist/index.js +245 -512
- package/dist/index.mjs +245 -512
- package/dist/index.umd.js +245 -512
- package/dist/style.css +1 -2
- package/dist/style.js +2 -2
- package/dist/types/index.d.ts +18 -26
- package/package.json +1 -8
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @ezuikit/player-theme v2.1.
|
|
3
|
-
* Copyright (c) 2026-02-
|
|
2
|
+
* @ezuikit/player-theme v2.1.2-beta.1
|
|
3
|
+
* Copyright (c) 2026-02-09 Ezviz-OpenBiz
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
6
6
|
import EventEmitter from 'eventemitter3';
|
|
@@ -140,7 +140,6 @@ var EVENTS = {
|
|
|
140
140
|
/** 对讲状态变化 */ talkingChange: 'talkingChange',
|
|
141
141
|
/** 麦克风音量变化 */ talkVolumeChange: 'talkVolumeChange',
|
|
142
142
|
/** 语音广播状态变化 */ broadcastChange: 'broadcastChange',
|
|
143
|
-
/** AI对话框状态变化 */ aichatChange: 'aichatChange',
|
|
144
143
|
/** 动态切换日志配置 */ setLoggerOptions: 'setLoggerOptions',
|
|
145
144
|
records: 'records',
|
|
146
145
|
ptzSpeedChange: 'ptzSpeedChange',
|
|
@@ -186,8 +185,6 @@ var EVENTS = {
|
|
|
186
185
|
/** 对讲控件销毁 */ talkDestroy: 'Control.talkDestroy',
|
|
187
186
|
/** 语音广播状态变化 */ broadcastChange: 'Control.broadcastChange',
|
|
188
187
|
/** 语音广播控件销毁 */ broadcastDestroy: 'Control.broadcastDestroy',
|
|
189
|
-
/** AI对话框状态变化 */ aichatChange: 'Control.aichatChange',
|
|
190
|
-
/** AI对话框控件销毁 */ aichatDestroy: 'Control.aichatDestroy',
|
|
191
188
|
/** 缩放比例改变 */ zoomChange: 'Control.zoomChange',
|
|
192
189
|
/** 音量调节面板 展示隐藏变换 */ zoomPanelOpenChange: 'Control.zoomPanelOpenChange',
|
|
193
190
|
/** 缩放控件销毁 */ zoomDestroy: 'Control.zoomDestroy',
|
|
@@ -239,7 +236,7 @@ function _create_class$9(Constructor, protoProps, staticProps) {
|
|
|
239
236
|
if (protoProps) _defineProperties$9(Constructor.prototype, protoProps);
|
|
240
237
|
return Constructor;
|
|
241
238
|
}
|
|
242
|
-
function _inherits$
|
|
239
|
+
function _inherits$s(subClass, superClass) {
|
|
243
240
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
244
241
|
throw new TypeError("Super expression must either be null or a function");
|
|
245
242
|
}
|
|
@@ -250,14 +247,14 @@ function _inherits$t(subClass, superClass) {
|
|
|
250
247
|
configurable: true
|
|
251
248
|
}
|
|
252
249
|
});
|
|
253
|
-
if (superClass) _set_prototype_of$
|
|
250
|
+
if (superClass) _set_prototype_of$s(subClass, superClass);
|
|
254
251
|
}
|
|
255
|
-
function _set_prototype_of$
|
|
256
|
-
_set_prototype_of$
|
|
252
|
+
function _set_prototype_of$s(o, p) {
|
|
253
|
+
_set_prototype_of$s = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
257
254
|
o.__proto__ = p;
|
|
258
255
|
return o;
|
|
259
256
|
};
|
|
260
|
-
return _set_prototype_of$
|
|
257
|
+
return _set_prototype_of$s(o, p);
|
|
261
258
|
}
|
|
262
259
|
/**
|
|
263
260
|
* 控件基类
|
|
@@ -271,7 +268,7 @@ function _set_prototype_of$t(o, p) {
|
|
|
271
268
|
* const myControl = new MyControl({})
|
|
272
269
|
* ```
|
|
273
270
|
*/ var Control = /*#__PURE__*/ function(EventEmitter) {
|
|
274
|
-
_inherits$
|
|
271
|
+
_inherits$s(Control, EventEmitter);
|
|
275
272
|
function Control(options) {
|
|
276
273
|
var _this;
|
|
277
274
|
var _this___options;
|
|
@@ -446,8 +443,8 @@ function _set_prototype_of$t(o, p) {
|
|
|
446
443
|
return Control;
|
|
447
444
|
}(EventEmitter);
|
|
448
445
|
|
|
449
|
-
function _extends$
|
|
450
|
-
_extends$
|
|
446
|
+
function _extends$r() {
|
|
447
|
+
_extends$r = Object.assign || function(target) {
|
|
451
448
|
for(var i = 1; i < arguments.length; i++){
|
|
452
449
|
var source = arguments[i];
|
|
453
450
|
for(var key in source){
|
|
@@ -458,9 +455,9 @@ function _extends$s() {
|
|
|
458
455
|
}
|
|
459
456
|
return target;
|
|
460
457
|
};
|
|
461
|
-
return _extends$
|
|
458
|
+
return _extends$r.apply(this, arguments);
|
|
462
459
|
}
|
|
463
|
-
function _inherits$
|
|
460
|
+
function _inherits$r(subClass, superClass) {
|
|
464
461
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
465
462
|
throw new TypeError("Super expression must either be null or a function");
|
|
466
463
|
}
|
|
@@ -471,25 +468,25 @@ function _inherits$s(subClass, superClass) {
|
|
|
471
468
|
configurable: true
|
|
472
469
|
}
|
|
473
470
|
});
|
|
474
|
-
if (superClass) _set_prototype_of$
|
|
471
|
+
if (superClass) _set_prototype_of$r(subClass, superClass);
|
|
475
472
|
}
|
|
476
|
-
function _set_prototype_of$
|
|
477
|
-
_set_prototype_of$
|
|
473
|
+
function _set_prototype_of$r(o, p) {
|
|
474
|
+
_set_prototype_of$r = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
478
475
|
o.__proto__ = p;
|
|
479
476
|
return o;
|
|
480
477
|
};
|
|
481
|
-
return _set_prototype_of$
|
|
478
|
+
return _set_prototype_of$r(o, p);
|
|
482
479
|
}
|
|
483
480
|
var LOADING_DEFAULT_OPTIONS = {};
|
|
484
481
|
/**
|
|
485
482
|
* 加载动画控件
|
|
486
483
|
* @category Control
|
|
487
484
|
*/ var Loading = /*#__PURE__*/ function(Control) {
|
|
488
|
-
_inherits$
|
|
485
|
+
_inherits$r(Loading, Control);
|
|
489
486
|
function Loading(options) {
|
|
490
487
|
if (options === void 0) options = {};
|
|
491
488
|
var _this;
|
|
492
|
-
_this = Control.call(this, Object.assign({}, LOADING_DEFAULT_OPTIONS, _extends$
|
|
489
|
+
_this = Control.call(this, Object.assign({}, LOADING_DEFAULT_OPTIONS, _extends$r({}, options, {
|
|
493
490
|
tagName: 'div',
|
|
494
491
|
controlType: 'block',
|
|
495
492
|
classNameSuffix: 'loading'
|
|
@@ -527,8 +524,8 @@ var LOADING_DEFAULT_OPTIONS = {};
|
|
|
527
524
|
return Loading;
|
|
528
525
|
}(Control);
|
|
529
526
|
|
|
530
|
-
function _extends$
|
|
531
|
-
_extends$
|
|
527
|
+
function _extends$q() {
|
|
528
|
+
_extends$q = Object.assign || function(target) {
|
|
532
529
|
for(var i = 1; i < arguments.length; i++){
|
|
533
530
|
var source = arguments[i];
|
|
534
531
|
for(var key in source){
|
|
@@ -539,9 +536,9 @@ function _extends$r() {
|
|
|
539
536
|
}
|
|
540
537
|
return target;
|
|
541
538
|
};
|
|
542
|
-
return _extends$
|
|
539
|
+
return _extends$q.apply(this, arguments);
|
|
543
540
|
}
|
|
544
|
-
function _inherits$
|
|
541
|
+
function _inherits$q(subClass, superClass) {
|
|
545
542
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
546
543
|
throw new TypeError("Super expression must either be null or a function");
|
|
547
544
|
}
|
|
@@ -552,14 +549,14 @@ function _inherits$r(subClass, superClass) {
|
|
|
552
549
|
configurable: true
|
|
553
550
|
}
|
|
554
551
|
});
|
|
555
|
-
if (superClass) _set_prototype_of$
|
|
552
|
+
if (superClass) _set_prototype_of$q(subClass, superClass);
|
|
556
553
|
}
|
|
557
|
-
function _set_prototype_of$
|
|
558
|
-
_set_prototype_of$
|
|
554
|
+
function _set_prototype_of$q(o, p) {
|
|
555
|
+
_set_prototype_of$q = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
559
556
|
o.__proto__ = p;
|
|
560
557
|
return o;
|
|
561
558
|
};
|
|
562
|
-
return _set_prototype_of$
|
|
559
|
+
return _set_prototype_of$q(o, p);
|
|
563
560
|
}
|
|
564
561
|
// 不放在服务器上 是因为有可能http加载失败
|
|
565
562
|
// prettier-ignore
|
|
@@ -571,11 +568,11 @@ var POSTER_OPTIONS = {
|
|
|
571
568
|
* 封面控件
|
|
572
569
|
* @category Control
|
|
573
570
|
*/ var Poster = /*#__PURE__*/ function(Control) {
|
|
574
|
-
_inherits$
|
|
571
|
+
_inherits$q(Poster, Control);
|
|
575
572
|
function Poster(options) {
|
|
576
573
|
if (options === void 0) options = {};
|
|
577
574
|
var _this;
|
|
578
|
-
_this = Control.call(this, Object.assign({}, POSTER_OPTIONS, _extends$
|
|
575
|
+
_this = Control.call(this, Object.assign({}, POSTER_OPTIONS, _extends$q({}, options, {
|
|
579
576
|
tagName: 'div',
|
|
580
577
|
controlType: 'block',
|
|
581
578
|
classNameSuffix: 'poster'
|
|
@@ -671,7 +668,6 @@ var Icons = {
|
|
|
671
668
|
return '<svg width="1em" height="1em" viewBox="0 0 24 24" focusable="false" aria-hidden="true" data-icon="talk-growth">\n <g fill="currentColor" stroke="currentColor">\n <path stroke="none" d="M9.22313 18.9543C9.6588 18.9543 10.0189 19.2133 10.0759 19.5494L10.0837 19.6428L10.0837 21.7847C10.0837 22.1649 9.69841 22.4732 9.22313 22.4732C8.78745 22.4732 8.42739 22.2142 8.37041 21.8781L8.36255 21.7847L8.36255 19.6428C8.36255 19.2626 8.74784 18.9543 9.22313 18.9543Z" fill-rule="evenodd" />\n <path d="M16.5323 11.3779L16.5323 11.5872C16.5323 15.7472 13.1599 19.1197 8.99981 19.1197C4.83971 19.1197 1.46729 15.7472 1.46729 11.5872L1.46729 11.4335" fill-rule="evenodd" fill="none" stroke-width="1.5" />\n <path stroke="none" d="M4.07861 6.12978C4.07861 3.589 6.30476 1.5293 9.05085 1.5293C11.7969 1.5293 14.0231 3.589 14.0231 6.12978L14.0231 12.075C14.0231 14.6158 11.7969 16.6755 9.05085 16.6755C6.30476 16.6755 4.07861 14.6158 4.07861 12.075L4.07861 6.12978ZM5.57861 12.075L5.57861 6.12978C5.57861 5.94083 5.597 5.75561 5.63376 5.57412C5.67605 5.36539 5.74265 5.16158 5.83357 4.9627C5.86625 4.8912 5.90164 4.82121 5.93974 4.75272C6.09781 4.4685 6.30245 4.21019 6.55365 3.97777C6.64206 3.89597 6.73424 3.81921 6.83019 3.7475C7.0816 3.55959 7.3589 3.40632 7.66207 3.28767C7.79552 3.23545 7.93107 3.19114 8.06871 3.15475C8.38503 3.07111 8.71241 3.0293 9.05085 3.0293C9.38929 3.0293 9.71668 3.07112 10.033 3.15475C10.1706 3.19114 10.3062 3.23545 10.4396 3.28767C10.7428 3.40632 11.0201 3.55959 11.2715 3.74749C11.3675 3.81921 11.4596 3.89596 11.548 3.97777C11.7993 4.2102 12.0039 4.46853 12.162 4.75276C12.2001 4.82124 12.2354 4.89122 12.2681 4.9627C12.359 5.16157 12.4256 5.36536 12.4679 5.57407C12.5047 5.75558 12.5231 5.94082 12.5231 6.12978L12.5231 12.075C12.5231 12.264 12.5047 12.4492 12.4679 12.6307C12.4256 12.8394 12.359 13.0432 12.2681 13.2421C12.2355 13.3136 12.2001 13.3835 12.162 13.452C12.0039 13.7362 11.7993 13.9946 11.548 14.227C11.4596 14.3088 11.3675 14.3856 11.2715 14.4573C11.0201 14.6452 10.7428 14.7985 10.4396 14.9171C10.3062 14.9693 10.1706 15.0136 10.033 15.05C9.71667 15.1337 9.38929 15.1755 9.05085 15.1755C8.71241 15.1755 8.38503 15.1337 8.06871 15.05C7.93107 15.0136 7.79552 14.9693 7.66207 14.9171C7.3589 14.7985 7.0816 14.6452 6.83019 14.4573C6.73424 14.3856 6.64206 14.3088 6.55365 14.227C6.30244 13.9946 6.09779 13.7363 5.93972 13.452C5.90163 13.3836 5.86625 13.3136 5.83357 13.2421C5.74265 13.0432 5.67605 12.8394 5.63377 12.6307C5.597 12.4492 5.57861 12.264 5.57861 12.075Z" fill-rule="evenodd" />\n </g>\n <g class="' + prefix + '-icon-talk-growth-dot">\n <path class="' + prefix + '-icon-talk-growth-dot1" d="M19.1333 6.40039L22.8667 6.40039" stroke="currentColor" stroke-linecap="round" stroke-width="1.86666667" />\n <path class="' + prefix + '-icon-talk-growth-dot2" d="M19.1333 10.1338L21.9331 10.1338" stroke="currentColor" stroke-linecap="round" stroke-width="1.86666667" />\n <path class="' + prefix + '-icon-talk-growth-dot3" d="M19.1333 13.8672L20.9995 13.8672" stroke="currentColor" stroke-linecap="round" stroke-width="1.86666667" />\n <path class="' + prefix + '-icon-talk-growth-dot4" d="M19.1333 17.6001L20.0669 17.6001" stroke="currentColor" stroke-linecap="round" stroke-width="1.86666667" />\n </g>\n </svg>';
|
|
672
669
|
},
|
|
673
670
|
/** 语音广播 */ broadcast: '\n <svg width="1em" height="1em" viewBox="0 0 24 24" fill="currentColor" stroke="none" focusable="false" aria-hidden="true" data-icon="broadcast">\n <g>\n <path id="矢量 1" d="m8.52109,6.76609l6.17823,-2.91335c0.2485,-0.11718 0.5027,-0.19531 0.7627,-0.2351c0.2034,-0.03077 0.4104,-0.03809 0.6211,-0.02173c0.2092,0.01636 0.4116,0.05493 0.6069,0.11621c0.2278,0.07129 0.4461,0.1731 0.6548,0.30542c0.2087,0.13232 0.394,0.28638 0.5557,0.46216l0.0002,0l0,0c0.1384,0.15064 0.2598,0.31714 0.3638,0.49951c0.1047,0.18335 0.1865,0.37354 0.2451,0.57081c0.0752,0.25219 0.1128,0.51562 0.1128,0.79004l0,10.64651c0,0.2744 -0.0376,0.5379 -0.1128,0.7901l0,0c-0.0586,0.197 -0.1404,0.3874 -0.2451,0.5708c-0.104,0.1823 -0.2254,0.3488 -0.364,0.4995c-0.1617,0.1758 -0.347,0.3298 -0.5557,0.4621c-0.2087,0.1324 -0.427,0.2342 -0.6548,0.3054c-0.1953,0.0611 -0.3977,0.0999 -0.6069,0.1163c-0.2107,0.0163 -0.4175,0.009 -0.6209,-0.0218c-0.2602,-0.0398 -0.5144,-0.1181 -0.7629,-0.2351l-5.45044,-2.5703l0,2.759c0,0.1036 -0.01831,0.1995 -0.05494,0.2879c-0.03662,0.0886 -0.09155,0.1692 -0.16479,0.2424c-0.14624,0.1465 -0.32324,0.2197 -0.53027,0.2197l-2,0c-0.14209,0 -0.27344,-0.0373 -0.39429,-0.112c-0.12085,-0.0745 -0.21289,-0.1756 -0.27661,-0.3025l-1.99268,-3.9856c-0.06225,-0.0234 -0.12402,-0.0481 -0.18555,-0.074c-0.26953,-0.114 -0.52417,-0.2502 -0.7644,-0.4084c-0.26636,-0.1758 -0.51489,-0.3789 -0.74512,-0.6094c-0.23047,-0.2302 -0.43359,-0.4788 -0.60937,-0.7451c-0.1582,-0.2403 -0.29444,-0.4949 -0.40845,-0.7644c-0.11328,-0.2679 -0.20068,-0.5413 -0.26245,-0.8206l0,0c-0.07398,-0.3347 -0.11108,-0.6775 -0.11108,-1.0286c0,-0.351 0.0371,-0.6938 0.11108,-1.0285c0.06177,-0.2793 0.14917,-0.5528 0.26245,-0.8206c0.11401,-0.26953 0.25025,-0.52417 0.40845,-0.7644c0.17578,-0.26636 0.3789,-0.5149 0.60937,-0.74512c0.23023,-0.23047 0.47876,-0.4336 0.74512,-0.60938l0,0c0.24023,-0.1582 0.49487,-0.29444 0.7644,-0.40845c0.26783,-0.11328 0.54126,-0.20068 0.82056,-0.26245l0,0l0,0l0,0c0.33472,-0.07398 0.67749,-0.11109 1.02857,-0.11109l2.93872,0c0.02636,-0.0166 0.05444,-0.03198 0.08349,-0.04589zm0.72876,8.47948l6.08937,2.8716c0.1287,0.0606 0.2598,0.0987 0.3935,0.114c0.0772,0.0088 0.1551,0.0103 0.2337,0.0042c0.0857,-0.0068 0.1687,-0.0217 0.2495,-0.0452c0.1133,-0.0329 0.2219,-0.0822 0.3257,-0.1479c0.104,-0.0659 0.1948,-0.1431 0.2729,-0.2317c0.0554,-0.063 0.1045,-0.1318 0.147,-0.2063c0.0393,-0.0686 0.0713,-0.1397 0.0962,-0.2131c0.043,-0.1277 0.0647,-0.2625 0.0647,-0.4046l0,-10.64651c0,-0.14209 -0.0217,-0.2771 -0.0647,-0.40454c-0.0249,-0.07349 -0.0569,-0.14454 -0.0962,-0.21314c-0.0425,-0.07471 -0.0916,-0.14331 -0.147,-0.2063c-0.0781,-0.08862 -0.1689,-0.16577 -0.2729,-0.23169c-0.1038,-0.06567 -0.2124,-0.11523 -0.3257,-0.14795c-0.0808,-0.02344 -0.1638,-0.03833 -0.2495,-0.04517c-0.0786,-0.0061 -0.1565,-0.00463 -0.2337,0.00415c-0.1337,0.01539 -0.2648,0.05347 -0.3935,0.11402l-6.09034,2.87208l0.00097,7.16405zm13.58447,-7.9121l-2,1c-0.3757,0.18775 -0.8184,0.04029 -1.0063,-0.33545c-0.0552,-0.11035 -0.0813,-0.22656 -0.0813,-0.34033c0,-0.27344 0.1516,-0.53321 0.4167,-0.66602l2,-1c0.3757,-0.18775 0.8186,-0.04004 1.0064,0.33545c0.0551,0.11035 0.0813,0.22656 0.0813,0.34033c0,0.27368 -0.1514,0.53345 -0.4168,0.66602zm-15.08544,8.9785l-2.08667,0l1.30029,2.6006l0.78638,0l0,-2.6006zm0,-7.99998l-2.25,0c-0.24976,0 -0.49317,0.02734 -0.73023,0.08179c-0.18188,0.04174 -0.36011,0.09961 -0.53467,0.17334c-0.17944,0.07593 -0.34961,0.1665 -0.51049,0.27124c-0.18702,0.12231 -0.36133,0.26416 -0.52271,0.42554c-0.16138,0.16137 -0.30322,0.33569 -0.42554,0.52267c-0.10473,0.1609 -0.19531,0.3311 -0.27124,0.5105c-0.07373,0.1746 -0.13159,0.3528 -0.17334,0.5347c-0.05444,0.2371 -0.08178,0.4805 -0.08178,0.7302c0,0.2498 0.02734,0.4932 0.08178,0.7303c0.04175,0.1818 0.09961,0.3601 0.17334,0.5346c0.07593,0.1795 0.16651,0.3496 0.27124,0.5105c0.12232,0.187 0.26416,0.3614 0.42554,0.5227c0.16138,0.1614 0.33569,0.3033 0.52271,0.4256c0.16088,0.1047 0.33105,0.1953 0.51049,0.2712c0.17456,0.0737 0.35279,0.1316 0.53467,0.1734c0.23706,0.0544 0.48047,0.0817 0.73023,0.0817l2.25097,0l-0.00097,-6.49998zm12.75004,2.60058l2,0c0.4199,0 0.75,0.3301 0.75,0.75c0,0.4199 -0.3301,0.75 -0.75,0.75l-2,0c-0.42,0 -0.75,-0.3301 -0.75,-0.75c0,-0.4199 0.33,-0.75 0.75,-0.75zm0.3354,4.0791l2,1c0.2654,0.1326 0.4168,0.3924 0.4168,0.6661c0,0.1137 -0.0262,0.2299 -0.0813,0.3403c-0.1878,0.3755 -0.6307,0.5232 -1.0064,0.3354l-2,-1c-0.2651,-0.1328 -0.4167,-0.3925 -0.4167,-0.666c0,-0.1138 0.0261,-0.23 0.0813,-0.3403c0.1879,-0.3758 0.6306,-0.5232 1.0063,-0.3355z" fill-rule="evenodd"/>\n </g>\n</svg>',
|
|
674
|
-
/** AI对话 */ aiChat: '\n <svg width="24" height="24" viewBox="0 0 24 24" fill="none">\n <defs>\n <linearGradient id="gradient0" x1="10.667" x2="10.667" y1="0.667" y2="20.667">\n <stop stop-color="#33D9FF" offset="0.354"/>\n <stop stop-color="#CE77FF" offset="1"/>\n </linearGradient>\n <linearGradient id="gradient1" x1="8.318" x2="8.318" y1="0" y2="18.001">\n <stop stop-color="#33D9FF" offset="0.354"/>\n <stop stop-color="#CE77FF" offset="1"/>\n </linearGradient>\n </defs>\n \n <g transform="scale(1.2) translate(-3, -0.5)">\n <path d="M6.917 0C8.776 0 10.52 0.738 11.808 2.026C12.45 2.668 12.961 3.43 13.309 4.269C13.442 4.588 13.29 4.954 12.971 5.086C12.653 5.218 12.287 5.067 12.155 4.748C11.87 4.061 11.451 3.436 10.925 2.91C9.868 1.854 8.441 1.25 6.917 1.25C3.787 1.25 1.25 3.787 1.25 6.917C1.25 10.047 3.787 12.584 6.917 12.584C8.441 12.584 9.868 11.981 10.925 10.925C11.169 10.681 11.564 10.681 11.808 10.925C12.052 11.169 12.052 11.565 11.808 11.809C10.666 12.951 9.164 13.661 7.542 13.807L7.542 17.376C7.542 17.721 7.262 18.001 6.917 18.001C6.572 18.001 6.292 17.721 6.292 17.376L6.292 13.807C2.765 13.49 0 10.527 0 6.917C0 3.097 3.097 0 6.917 0ZM11.051 6.495C11.295 6.739 11.295 7.135 11.051 7.379L7.547 10.882C7.303 11.126 6.908 11.126 6.664 10.882C6.42 10.638 6.42 10.242 6.664 9.998L10.167 6.495C10.411 6.251 10.807 6.251 11.051 6.495ZM8.566 4.559L6.501 9.5C6.368 9.818 6.002 9.969 5.684 9.836C5.365 9.703 5.215 9.336 5.348 9.018L5.712 8.147L4.094 6.529L3.198 6.884C2.904 7.001 2.575 6.878 2.424 6.61C2.297 6.289 2.418 5.849 2.739 5.722L7.76 3.736C8.274 3.533 8.779 4.049 8.566 4.559ZM16.614 6.171C16.642 6.236 16.642 6.309 16.614 6.373L15.964 7.848C15.936 7.912 15.936 7.986 15.964 8.05L16.614 9.525C16.67 9.651 16.613 9.799 16.486 9.855C16.422 9.883 16.349 9.883 16.285 9.855L14.809 9.205C14.745 9.176 14.672 9.176 14.608 9.205L13.133 9.855C13.006 9.911 12.859 9.853 12.803 9.727C12.775 9.662 12.775 9.589 12.803 9.525L13.453 8.05C13.482 7.986 13.482 7.912 13.453 7.848L12.803 6.373C12.747 6.247 12.805 6.099 12.931 6.043C12.995 6.015 13.068 6.015 13.133 6.043L14.608 6.694C14.672 6.722 14.745 6.722 14.809 6.694L16.285 6.043C16.411 5.988 16.558 6.045 16.614 6.171ZM6.841 5.443L5.361 6.028L6.233 6.9L6.841 5.443Z" fill="url(#gradient1)" transform="matrix(0.707 -0.707 0.707 0.707 0.085 9.868)"/>\n </g>\n </svg>\n ',
|
|
675
671
|
/** 相机/截图 */ capturePicture: '<svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" focusable="false" aria-hidden="true" data-icon="capture-picture">\n <path d="M6.94 7.51C7.34 7.51 7.7 7.28 7.86 6.91L8.43 5.6C8.59 5.23 8.95 5 9.35 5L14.69 5C15.04 5 15.37 5.18 15.55 5.49L16.45 7.02C16.63 7.33 16.96 7.51 17.31 7.51L18.5 7.51C19.6 7.51 20.5 8.41 20.5 9.51L20.5 17C20.5 18.1 19.6 19 18.5 19L5.5 19C4.39 19 3.5 18.1 3.5 17L3.5 9.51C3.5 8.41 4.39 7.51 5.5 7.51L6.94 7.51Z" stroke-width="1.5"/>\n <circle cx="12" cy="12.525146" r="3.068097" stroke-width="1.5"/>\n </svg>',
|
|
676
672
|
/** 电子放大 */ zoom: '<svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" focusable="false" aria-hidden="true" data-icon="zoom">\n <ellipse cx="10.914795" cy="11.25" rx="8.004043" ry="8.25" stroke-width="1.5"/>\n <path d="M14.31 11.04L8.05 11.14" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/>\n <path d="M11.13 14.22L11.23 7.95" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/>\n <path d="M16.45 17.83L19.36 20.83" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/>\n </svg>',
|
|
677
673
|
/** 隐私遮蔽 */ privacyMasking: '<svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" focusable="false" aria-hidden="true" data-icon="privacy-masking">\n <path d="M12 19C11.15 19 10.31 18.82 9.49 18.5" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/>\n <path d="M20.88 12.46C18.98 15.96 15.49 19 11.99 19" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/>\n <path d="M19.07 8.92C19.76 9.72 20.38 10.61 20.88 11.53C21.03 11.82 21.03 12.17 20.88 12.46" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/>\n <path d="M5 19L19 5" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/>\n <path d="M9.77 14.22C8.54 12.99 8.54 11 9.77 9.77C11 8.54 12.99 8.54 14.22 9.77" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/>\n <path d="M17.04 6.95C15.49 5.75 13.74 5 12 5C8.5 5 5.01 8.03 3.11 11.53C2.96 11.82 2.96 12.17 3.11 12.46C4.06 14.21 5.41 15.84 6.95 17.04" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/>\n </svg>',
|
|
@@ -760,10 +756,6 @@ var IconComponents = {
|
|
|
760
756
|
if (attr === void 0) attr = {};
|
|
761
757
|
return createIcon(Icons.broadcast, 'broadcast', attr);
|
|
762
758
|
},
|
|
763
|
-
aiChat: function(attr) {
|
|
764
|
-
if (attr === void 0) attr = {};
|
|
765
|
-
return createIcon(Icons.aiChat, 'aiChat', attr);
|
|
766
|
-
},
|
|
767
759
|
talkGrowth: function(attr) {
|
|
768
760
|
if (attr === void 0) attr = {};
|
|
769
761
|
return createIcon(Icons.talkGrowth(PREFIX_CLASS), 'talk-growth', attr);
|
|
@@ -842,8 +834,8 @@ var IconComponents = {
|
|
|
842
834
|
}
|
|
843
835
|
};
|
|
844
836
|
|
|
845
|
-
function _extends$
|
|
846
|
-
_extends$
|
|
837
|
+
function _extends$p() {
|
|
838
|
+
_extends$p = Object.assign || function(target) {
|
|
847
839
|
for(var i = 1; i < arguments.length; i++){
|
|
848
840
|
var source = arguments[i];
|
|
849
841
|
for(var key in source){
|
|
@@ -854,9 +846,9 @@ function _extends$q() {
|
|
|
854
846
|
}
|
|
855
847
|
return target;
|
|
856
848
|
};
|
|
857
|
-
return _extends$
|
|
849
|
+
return _extends$p.apply(this, arguments);
|
|
858
850
|
}
|
|
859
|
-
function _inherits$
|
|
851
|
+
function _inherits$p(subClass, superClass) {
|
|
860
852
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
861
853
|
throw new TypeError("Super expression must either be null or a function");
|
|
862
854
|
}
|
|
@@ -867,25 +859,25 @@ function _inherits$q(subClass, superClass) {
|
|
|
867
859
|
configurable: true
|
|
868
860
|
}
|
|
869
861
|
});
|
|
870
|
-
if (superClass) _set_prototype_of$
|
|
862
|
+
if (superClass) _set_prototype_of$p(subClass, superClass);
|
|
871
863
|
}
|
|
872
|
-
function _set_prototype_of$
|
|
873
|
-
_set_prototype_of$
|
|
864
|
+
function _set_prototype_of$p(o, p) {
|
|
865
|
+
_set_prototype_of$p = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
874
866
|
o.__proto__ = p;
|
|
875
867
|
return o;
|
|
876
868
|
};
|
|
877
|
-
return _set_prototype_of$
|
|
869
|
+
return _set_prototype_of$p(o, p);
|
|
878
870
|
}
|
|
879
871
|
var MESSAGE_DEFAULT_OPTIONS = {};
|
|
880
872
|
/**
|
|
881
873
|
* 消息控件
|
|
882
874
|
* @category Control
|
|
883
875
|
*/ var Message = /*#__PURE__*/ function(Control) {
|
|
884
|
-
_inherits$
|
|
876
|
+
_inherits$p(Message, Control);
|
|
885
877
|
function Message(options) {
|
|
886
878
|
if (options === void 0) options = {};
|
|
887
879
|
var _this;
|
|
888
|
-
_this = Control.call(this, Object.assign({}, MESSAGE_DEFAULT_OPTIONS, _extends$
|
|
880
|
+
_this = Control.call(this, Object.assign({}, MESSAGE_DEFAULT_OPTIONS, _extends$p({}, options, {
|
|
889
881
|
tagName: 'div',
|
|
890
882
|
controlType: 'block'
|
|
891
883
|
}))) || this;
|
|
@@ -1038,8 +1030,8 @@ function _create_class$8(Constructor, protoProps, staticProps) {
|
|
|
1038
1030
|
if (protoProps) _defineProperties$8(Constructor.prototype, protoProps);
|
|
1039
1031
|
return Constructor;
|
|
1040
1032
|
}
|
|
1041
|
-
function _extends$
|
|
1042
|
-
_extends$
|
|
1033
|
+
function _extends$o() {
|
|
1034
|
+
_extends$o = Object.assign || function(target) {
|
|
1043
1035
|
for(var i = 1; i < arguments.length; i++){
|
|
1044
1036
|
var source = arguments[i];
|
|
1045
1037
|
for(var key in source){
|
|
@@ -1050,9 +1042,9 @@ function _extends$p() {
|
|
|
1050
1042
|
}
|
|
1051
1043
|
return target;
|
|
1052
1044
|
};
|
|
1053
|
-
return _extends$
|
|
1045
|
+
return _extends$o.apply(this, arguments);
|
|
1054
1046
|
}
|
|
1055
|
-
function _inherits$
|
|
1047
|
+
function _inherits$o(subClass, superClass) {
|
|
1056
1048
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
1057
1049
|
throw new TypeError("Super expression must either be null or a function");
|
|
1058
1050
|
}
|
|
@@ -1063,23 +1055,23 @@ function _inherits$p(subClass, superClass) {
|
|
|
1063
1055
|
configurable: true
|
|
1064
1056
|
}
|
|
1065
1057
|
});
|
|
1066
|
-
if (superClass) _set_prototype_of$
|
|
1058
|
+
if (superClass) _set_prototype_of$o(subClass, superClass);
|
|
1067
1059
|
}
|
|
1068
|
-
function _set_prototype_of$
|
|
1069
|
-
_set_prototype_of$
|
|
1060
|
+
function _set_prototype_of$o(o, p) {
|
|
1061
|
+
_set_prototype_of$o = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
1070
1062
|
o.__proto__ = p;
|
|
1071
1063
|
return o;
|
|
1072
1064
|
};
|
|
1073
|
-
return _set_prototype_of$
|
|
1065
|
+
return _set_prototype_of$o(o, p);
|
|
1074
1066
|
}
|
|
1075
1067
|
/**
|
|
1076
1068
|
* 播放/暂停控件
|
|
1077
1069
|
* @category Control
|
|
1078
1070
|
*/ var Play = /*#__PURE__*/ function(Control) {
|
|
1079
|
-
_inherits$
|
|
1071
|
+
_inherits$o(Play, Control);
|
|
1080
1072
|
function Play(options) {
|
|
1081
1073
|
var _this;
|
|
1082
|
-
_this = Control.call(this, _extends$
|
|
1074
|
+
_this = Control.call(this, _extends$o({}, options, {
|
|
1083
1075
|
tagName: 'span',
|
|
1084
1076
|
controlType: 'button',
|
|
1085
1077
|
classNameSuffix: 'play'
|
|
@@ -1695,8 +1687,8 @@ function _create_class$6(Constructor, protoProps, staticProps) {
|
|
|
1695
1687
|
if (protoProps) _defineProperties$6(Constructor.prototype, protoProps);
|
|
1696
1688
|
return Constructor;
|
|
1697
1689
|
}
|
|
1698
|
-
function _extends$
|
|
1699
|
-
_extends$
|
|
1690
|
+
function _extends$n() {
|
|
1691
|
+
_extends$n = Object.assign || function(target) {
|
|
1700
1692
|
for(var i = 1; i < arguments.length; i++){
|
|
1701
1693
|
var source = arguments[i];
|
|
1702
1694
|
for(var key in source){
|
|
@@ -1707,9 +1699,9 @@ function _extends$o() {
|
|
|
1707
1699
|
}
|
|
1708
1700
|
return target;
|
|
1709
1701
|
};
|
|
1710
|
-
return _extends$
|
|
1702
|
+
return _extends$n.apply(this, arguments);
|
|
1711
1703
|
}
|
|
1712
|
-
function _inherits$
|
|
1704
|
+
function _inherits$n(subClass, superClass) {
|
|
1713
1705
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
1714
1706
|
throw new TypeError("Super expression must either be null or a function");
|
|
1715
1707
|
}
|
|
@@ -1720,14 +1712,14 @@ function _inherits$o(subClass, superClass) {
|
|
|
1720
1712
|
configurable: true
|
|
1721
1713
|
}
|
|
1722
1714
|
});
|
|
1723
|
-
if (superClass) _set_prototype_of$
|
|
1715
|
+
if (superClass) _set_prototype_of$n(subClass, superClass);
|
|
1724
1716
|
}
|
|
1725
|
-
function _set_prototype_of$
|
|
1726
|
-
_set_prototype_of$
|
|
1717
|
+
function _set_prototype_of$n(o, p) {
|
|
1718
|
+
_set_prototype_of$n = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
1727
1719
|
o.__proto__ = p;
|
|
1728
1720
|
return o;
|
|
1729
1721
|
};
|
|
1730
|
-
return _set_prototype_of$
|
|
1722
|
+
return _set_prototype_of$n(o, p);
|
|
1731
1723
|
}
|
|
1732
1724
|
var VOLUME_DEFAULT_OPTIONS = {
|
|
1733
1725
|
volume: 0.8,
|
|
@@ -1741,12 +1733,12 @@ var VOLUME_DEFAULT_OPTIONS = {
|
|
|
1741
1733
|
* 音量调节控件
|
|
1742
1734
|
* @category Control
|
|
1743
1735
|
*/ var Volume = /*#__PURE__*/ function(Control) {
|
|
1744
|
-
_inherits$
|
|
1736
|
+
_inherits$n(Volume, Control);
|
|
1745
1737
|
function Volume(options) {
|
|
1746
1738
|
if (options === void 0) options = {};
|
|
1747
1739
|
var _this;
|
|
1748
1740
|
var _this__options_props, _this__options_props1, _this__options_props2, _this__options_props3;
|
|
1749
|
-
_this = Control.call(this, _extends$
|
|
1741
|
+
_this = Control.call(this, _extends$n({}, options, {
|
|
1750
1742
|
tagName: 'span',
|
|
1751
1743
|
classNameSuffix: 'volume',
|
|
1752
1744
|
controlType: 'button'
|
|
@@ -1962,7 +1954,7 @@ var VOLUME_DEFAULT_OPTIONS = {
|
|
|
1962
1954
|
return Volume;
|
|
1963
1955
|
}(Control);
|
|
1964
1956
|
|
|
1965
|
-
function asyncGeneratorStep$
|
|
1957
|
+
function asyncGeneratorStep$6(gen, resolve, reject, _next, _throw, key, arg) {
|
|
1966
1958
|
try {
|
|
1967
1959
|
var info = gen[key](arg);
|
|
1968
1960
|
var value = info.value;
|
|
@@ -1976,22 +1968,22 @@ function asyncGeneratorStep$7(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
1976
1968
|
Promise.resolve(value).then(_next, _throw);
|
|
1977
1969
|
}
|
|
1978
1970
|
}
|
|
1979
|
-
function _async_to_generator$
|
|
1971
|
+
function _async_to_generator$6(fn) {
|
|
1980
1972
|
return function() {
|
|
1981
1973
|
var self = this, args = arguments;
|
|
1982
1974
|
return new Promise(function(resolve, reject) {
|
|
1983
1975
|
var gen = fn.apply(self, args);
|
|
1984
1976
|
function _next(value) {
|
|
1985
|
-
asyncGeneratorStep$
|
|
1977
|
+
asyncGeneratorStep$6(gen, resolve, reject, _next, _throw, "next", value);
|
|
1986
1978
|
}
|
|
1987
1979
|
function _throw(err) {
|
|
1988
|
-
asyncGeneratorStep$
|
|
1980
|
+
asyncGeneratorStep$6(gen, resolve, reject, _next, _throw, "throw", err);
|
|
1989
1981
|
}
|
|
1990
1982
|
_next(undefined);
|
|
1991
1983
|
});
|
|
1992
1984
|
};
|
|
1993
1985
|
}
|
|
1994
|
-
function _ts_generator$
|
|
1986
|
+
function _ts_generator$6(thisArg, body) {
|
|
1995
1987
|
var f, y, t, _ = {
|
|
1996
1988
|
label: 0,
|
|
1997
1989
|
sent: function() {
|
|
@@ -2205,8 +2197,8 @@ var __fullscreenProvider__ = Provider.getInstance();
|
|
|
2205
2197
|
* 全屏
|
|
2206
2198
|
* @returns Promise<void>
|
|
2207
2199
|
*/ _proto.fullscreen = function fullscreen() {
|
|
2208
|
-
return _async_to_generator$
|
|
2209
|
-
return _ts_generator$
|
|
2200
|
+
return _async_to_generator$6(function() {
|
|
2201
|
+
return _ts_generator$6(this, function(_state) {
|
|
2210
2202
|
switch(_state.label){
|
|
2211
2203
|
case 0:
|
|
2212
2204
|
if (!Utils.isMobile) return [
|
|
@@ -2241,8 +2233,8 @@ var __fullscreenProvider__ = Provider.getInstance();
|
|
|
2241
2233
|
* 退出全屏
|
|
2242
2234
|
* @returns Promise<void>
|
|
2243
2235
|
*/ _proto.exitFullscreen = function exitFullscreen() {
|
|
2244
|
-
return _async_to_generator$
|
|
2245
|
-
return _ts_generator$
|
|
2236
|
+
return _async_to_generator$6(function() {
|
|
2237
|
+
return _ts_generator$6(this, function(_state) {
|
|
2246
2238
|
switch(_state.label){
|
|
2247
2239
|
case 0:
|
|
2248
2240
|
if (!Utils.isMobile) return [
|
|
@@ -2281,8 +2273,8 @@ var __fullscreenProvider__ = Provider.getInstance();
|
|
|
2281
2273
|
* 全屏切换
|
|
2282
2274
|
* @returns Promise<void>
|
|
2283
2275
|
*/ _proto.toggle = function toggle() {
|
|
2284
|
-
return _async_to_generator$
|
|
2285
|
-
return _ts_generator$
|
|
2276
|
+
return _async_to_generator$6(function() {
|
|
2277
|
+
return _ts_generator$6(this, function(_state) {
|
|
2286
2278
|
switch(_state.label){
|
|
2287
2279
|
case 0:
|
|
2288
2280
|
if (!Utils.isMobile) return [
|
|
@@ -2405,8 +2397,8 @@ var __fullscreenProvider__ = Provider.getInstance();
|
|
|
2405
2397
|
return Fullscreen;
|
|
2406
2398
|
}();
|
|
2407
2399
|
|
|
2408
|
-
function _extends$
|
|
2409
|
-
_extends$
|
|
2400
|
+
function _extends$m() {
|
|
2401
|
+
_extends$m = Object.assign || function(target) {
|
|
2410
2402
|
for(var i = 1; i < arguments.length; i++){
|
|
2411
2403
|
var source = arguments[i];
|
|
2412
2404
|
for(var key in source){
|
|
@@ -2417,9 +2409,9 @@ function _extends$n() {
|
|
|
2417
2409
|
}
|
|
2418
2410
|
return target;
|
|
2419
2411
|
};
|
|
2420
|
-
return _extends$
|
|
2412
|
+
return _extends$m.apply(this, arguments);
|
|
2421
2413
|
}
|
|
2422
|
-
function _inherits$
|
|
2414
|
+
function _inherits$m(subClass, superClass) {
|
|
2423
2415
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
2424
2416
|
throw new TypeError("Super expression must either be null or a function");
|
|
2425
2417
|
}
|
|
@@ -2430,24 +2422,24 @@ function _inherits$n(subClass, superClass) {
|
|
|
2430
2422
|
configurable: true
|
|
2431
2423
|
}
|
|
2432
2424
|
});
|
|
2433
|
-
if (superClass) _set_prototype_of$
|
|
2425
|
+
if (superClass) _set_prototype_of$m(subClass, superClass);
|
|
2434
2426
|
}
|
|
2435
|
-
function _set_prototype_of$
|
|
2436
|
-
_set_prototype_of$
|
|
2427
|
+
function _set_prototype_of$m(o, p) {
|
|
2428
|
+
_set_prototype_of$m = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
2437
2429
|
o.__proto__ = p;
|
|
2438
2430
|
return o;
|
|
2439
2431
|
};
|
|
2440
|
-
return _set_prototype_of$
|
|
2432
|
+
return _set_prototype_of$m(o, p);
|
|
2441
2433
|
}
|
|
2442
2434
|
/**
|
|
2443
2435
|
* 全屏控件
|
|
2444
2436
|
* @category Control
|
|
2445
2437
|
*/ var Fullscreen = /*#__PURE__*/ function(Control) {
|
|
2446
|
-
_inherits$
|
|
2438
|
+
_inherits$m(Fullscreen, Control);
|
|
2447
2439
|
function Fullscreen(options) {
|
|
2448
2440
|
var _this;
|
|
2449
2441
|
var _options_props, _this_options;
|
|
2450
|
-
_this = Control.call(this, _extends$
|
|
2442
|
+
_this = Control.call(this, _extends$m({
|
|
2451
2443
|
tagName: 'span',
|
|
2452
2444
|
classNameSuffix: 'fullscreen',
|
|
2453
2445
|
controlType: 'button'
|
|
@@ -2512,8 +2504,8 @@ function _set_prototype_of$n(o, p) {
|
|
|
2512
2504
|
return Fullscreen;
|
|
2513
2505
|
}(Control);
|
|
2514
2506
|
|
|
2515
|
-
function _extends$
|
|
2516
|
-
_extends$
|
|
2507
|
+
function _extends$l() {
|
|
2508
|
+
_extends$l = Object.assign || function(target) {
|
|
2517
2509
|
for(var i = 1; i < arguments.length; i++){
|
|
2518
2510
|
var source = arguments[i];
|
|
2519
2511
|
for(var key in source){
|
|
@@ -2524,9 +2516,9 @@ function _extends$m() {
|
|
|
2524
2516
|
}
|
|
2525
2517
|
return target;
|
|
2526
2518
|
};
|
|
2527
|
-
return _extends$
|
|
2519
|
+
return _extends$l.apply(this, arguments);
|
|
2528
2520
|
}
|
|
2529
|
-
function _inherits$
|
|
2521
|
+
function _inherits$l(subClass, superClass) {
|
|
2530
2522
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
2531
2523
|
throw new TypeError("Super expression must either be null or a function");
|
|
2532
2524
|
}
|
|
@@ -2537,24 +2529,24 @@ function _inherits$m(subClass, superClass) {
|
|
|
2537
2529
|
configurable: true
|
|
2538
2530
|
}
|
|
2539
2531
|
});
|
|
2540
|
-
if (superClass) _set_prototype_of$
|
|
2532
|
+
if (superClass) _set_prototype_of$l(subClass, superClass);
|
|
2541
2533
|
}
|
|
2542
|
-
function _set_prototype_of$
|
|
2543
|
-
_set_prototype_of$
|
|
2534
|
+
function _set_prototype_of$l(o, p) {
|
|
2535
|
+
_set_prototype_of$l = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
2544
2536
|
o.__proto__ = p;
|
|
2545
2537
|
return o;
|
|
2546
2538
|
};
|
|
2547
|
-
return _set_prototype_of$
|
|
2539
|
+
return _set_prototype_of$l(o, p);
|
|
2548
2540
|
}
|
|
2549
2541
|
/**
|
|
2550
2542
|
* 回放类型切换(本地回放(sdk 卡), 云存储回放, 云录制回放)控件
|
|
2551
2543
|
* @category Control
|
|
2552
2544
|
*/ var Rec = /*#__PURE__*/ function(Control) {
|
|
2553
|
-
_inherits$
|
|
2545
|
+
_inherits$l(Rec, Control);
|
|
2554
2546
|
function Rec(options) {
|
|
2555
2547
|
var _this;
|
|
2556
2548
|
var _options_props;
|
|
2557
|
-
_this = Control.call(this, _extends$
|
|
2549
|
+
_this = Control.call(this, _extends$l({}, options, {
|
|
2558
2550
|
tagName: 'div',
|
|
2559
2551
|
controlType: 'block',
|
|
2560
2552
|
classNameSuffix: 'rec'
|
|
@@ -2830,7 +2822,6 @@ var zh = {
|
|
|
2830
2822
|
BTN_CAPTURE: '截图',
|
|
2831
2823
|
BTN_TALK: '对讲',
|
|
2832
2824
|
BTN_BROADCAST: '语音广播',
|
|
2833
|
-
BTN_AICHAT: 'AI对话',
|
|
2834
2825
|
BTN_ZOOM: '电子放大',
|
|
2835
2826
|
BTN_3D_ZOOM: '3D定位',
|
|
2836
2827
|
BTN_PTZ: '云台控制',
|
|
@@ -3102,7 +3093,6 @@ var en = {
|
|
|
3102
3093
|
BTN_CAPTURE: 'Screenshot',
|
|
3103
3094
|
BTN_TALK: 'Intercom',
|
|
3104
3095
|
BTN_BROADCAST: 'Voice broadcast',
|
|
3105
|
-
BTN_AICHAT: 'AI Chat',
|
|
3106
3096
|
BTN_ZOOM: 'Electronic zoom',
|
|
3107
3097
|
BTN_3D_ZOOM: '3D positioning',
|
|
3108
3098
|
BTN_PTZ: 'PTZ control',
|
|
@@ -3397,12 +3387,6 @@ var en = {
|
|
|
3397
3387
|
defaultActive: 0,
|
|
3398
3388
|
isrender: 1
|
|
3399
3389
|
},
|
|
3400
|
-
{
|
|
3401
|
-
iconId: 'aiChat',
|
|
3402
|
-
part: 'left',
|
|
3403
|
-
defaultActive: 0,
|
|
3404
|
-
isrender: 1
|
|
3405
|
-
},
|
|
3406
3390
|
{
|
|
3407
3391
|
iconId: 'speed',
|
|
3408
3392
|
part: 'right',
|
|
@@ -3587,12 +3571,6 @@ var en = {
|
|
|
3587
3571
|
defaultActive: 0,
|
|
3588
3572
|
isrender: 1
|
|
3589
3573
|
},
|
|
3590
|
-
{
|
|
3591
|
-
iconId: 'aiChat',
|
|
3592
|
-
part: 'left',
|
|
3593
|
-
defaultActive: 0,
|
|
3594
|
-
isrender: 1
|
|
3595
|
-
},
|
|
3596
3574
|
{
|
|
3597
3575
|
iconId: 'speed',
|
|
3598
3576
|
part: 'right',
|
|
@@ -3753,7 +3731,7 @@ var en = {
|
|
|
3753
3731
|
voice: voice
|
|
3754
3732
|
};
|
|
3755
3733
|
|
|
3756
|
-
function _inherits$
|
|
3734
|
+
function _inherits$k(subClass, superClass) {
|
|
3757
3735
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
3758
3736
|
throw new TypeError("Super expression must either be null or a function");
|
|
3759
3737
|
}
|
|
@@ -3764,20 +3742,20 @@ function _inherits$l(subClass, superClass) {
|
|
|
3764
3742
|
configurable: true
|
|
3765
3743
|
}
|
|
3766
3744
|
});
|
|
3767
|
-
if (superClass) _set_prototype_of$
|
|
3745
|
+
if (superClass) _set_prototype_of$k(subClass, superClass);
|
|
3768
3746
|
}
|
|
3769
|
-
function _set_prototype_of$
|
|
3770
|
-
_set_prototype_of$
|
|
3747
|
+
function _set_prototype_of$k(o, p) {
|
|
3748
|
+
_set_prototype_of$k = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
3771
3749
|
o.__proto__ = p;
|
|
3772
3750
|
return o;
|
|
3773
3751
|
};
|
|
3774
|
-
return _set_prototype_of$
|
|
3752
|
+
return _set_prototype_of$k(o, p);
|
|
3775
3753
|
}
|
|
3776
3754
|
/**
|
|
3777
3755
|
* 截图控件
|
|
3778
3756
|
* @category Content
|
|
3779
3757
|
*/ var Content = /*#__PURE__*/ function(EventEmitter) {
|
|
3780
|
-
_inherits$
|
|
3758
|
+
_inherits$k(Content, EventEmitter);
|
|
3781
3759
|
function Content(options) {
|
|
3782
3760
|
var _this;
|
|
3783
3761
|
_this = EventEmitter.call(this) || this, _this._scaleMode = 0, _this._cleanUpResizeObserver = null, _this._originWidth = 0, _this._originHeight = 0, _this._width = 0, _this._height = 0;
|
|
@@ -3892,8 +3870,8 @@ function _set_prototype_of$l(o, p) {
|
|
|
3892
3870
|
return Content;
|
|
3893
3871
|
}(EventEmitter);
|
|
3894
3872
|
|
|
3895
|
-
function _extends$
|
|
3896
|
-
_extends$
|
|
3873
|
+
function _extends$k() {
|
|
3874
|
+
_extends$k = Object.assign || function(target) {
|
|
3897
3875
|
for(var i = 1; i < arguments.length; i++){
|
|
3898
3876
|
var source = arguments[i];
|
|
3899
3877
|
for(var key in source){
|
|
@@ -3904,9 +3882,9 @@ function _extends$l() {
|
|
|
3904
3882
|
}
|
|
3905
3883
|
return target;
|
|
3906
3884
|
};
|
|
3907
|
-
return _extends$
|
|
3885
|
+
return _extends$k.apply(this, arguments);
|
|
3908
3886
|
}
|
|
3909
|
-
function _inherits$
|
|
3887
|
+
function _inherits$j(subClass, superClass) {
|
|
3910
3888
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
3911
3889
|
throw new TypeError("Super expression must either be null or a function");
|
|
3912
3890
|
}
|
|
@@ -3917,23 +3895,23 @@ function _inherits$k(subClass, superClass) {
|
|
|
3917
3895
|
configurable: true
|
|
3918
3896
|
}
|
|
3919
3897
|
});
|
|
3920
|
-
if (superClass) _set_prototype_of$
|
|
3898
|
+
if (superClass) _set_prototype_of$j(subClass, superClass);
|
|
3921
3899
|
}
|
|
3922
|
-
function _set_prototype_of$
|
|
3923
|
-
_set_prototype_of$
|
|
3900
|
+
function _set_prototype_of$j(o, p) {
|
|
3901
|
+
_set_prototype_of$j = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
3924
3902
|
o.__proto__ = p;
|
|
3925
3903
|
return o;
|
|
3926
3904
|
};
|
|
3927
|
-
return _set_prototype_of$
|
|
3905
|
+
return _set_prototype_of$j(o, p);
|
|
3928
3906
|
}
|
|
3929
3907
|
/**
|
|
3930
3908
|
* 更多控件
|
|
3931
3909
|
* @category Control
|
|
3932
3910
|
*/ var More = /*#__PURE__*/ function(Control) {
|
|
3933
|
-
_inherits$
|
|
3911
|
+
_inherits$j(More, Control);
|
|
3934
3912
|
function More(options) {
|
|
3935
3913
|
var _this;
|
|
3936
|
-
_this = Control.call(this, _extends$
|
|
3914
|
+
_this = Control.call(this, _extends$k({}, options, {
|
|
3937
3915
|
tagName: 'span',
|
|
3938
3916
|
controlType: 'button',
|
|
3939
3917
|
classNameSuffix: 'more'
|
|
@@ -4139,16 +4117,6 @@ function debounce(func, wait) {
|
|
|
4139
4117
|
}
|
|
4140
4118
|
});
|
|
4141
4119
|
// =======================================================
|
|
4142
|
-
// AI对话框
|
|
4143
|
-
// =======================================================
|
|
4144
|
-
theme.on(EVENTS.aichatChange, function(active) {
|
|
4145
|
-
var _theme_controls, _theme_controls_aiChatControl, _theme_controls1;
|
|
4146
|
-
if (((_theme_controls = theme.controls) == null ? void 0 : _theme_controls.aiChatControl) && active !== ((_theme_controls1 = theme.controls) == null ? void 0 : (_theme_controls_aiChatControl = _theme_controls1.aiChatControl) == null ? void 0 : _theme_controls_aiChatControl.active)) {
|
|
4147
|
-
var _theme_controls_aiChatControl1, _theme_controls2;
|
|
4148
|
-
(_theme_controls2 = theme.controls) == null ? void 0 : (_theme_controls_aiChatControl1 = _theme_controls2.aiChatControl) == null ? void 0 : _theme_controls_aiChatControl1.emit(EVENTS.aichatChange, active);
|
|
4149
|
-
}
|
|
4150
|
-
});
|
|
4151
|
-
// =======================================================
|
|
4152
4120
|
// 录制
|
|
4153
4121
|
// =======================================================
|
|
4154
4122
|
theme.on(EVENTS.recordingChange, function(recording) {
|
|
@@ -4244,7 +4212,7 @@ function debounce(func, wait) {
|
|
|
4244
4212
|
*
|
|
4245
4213
|
* @param theme - Theme
|
|
4246
4214
|
*/ function _controlEventemitter(theme) {
|
|
4247
|
-
var _theme_controls, _theme_controls1, _theme_controls2, _theme_controls3, _theme_controls4, _theme_controls5, _theme_controls6, _theme_controls7, _theme_controls8, _theme_controls9, _theme_controls10, _theme_controls11, _theme_controls12, _theme_controls13, _theme_controls14, _theme_controls15
|
|
4215
|
+
var _theme_controls, _theme_controls1, _theme_controls2, _theme_controls3, _theme_controls4, _theme_controls5, _theme_controls6, _theme_controls7, _theme_controls8, _theme_controls9, _theme_controls10, _theme_controls11, _theme_controls12, _theme_controls13, _theme_controls14, _theme_controls15;
|
|
4248
4216
|
// Controls
|
|
4249
4217
|
if (theme._recFooter) {
|
|
4250
4218
|
theme._recFooter.on(EVENTS.theme.recFooterDestroy, function() {
|
|
@@ -4346,17 +4314,8 @@ function debounce(func, wait) {
|
|
|
4346
4314
|
theme.emit(EVENTS.control.broadcastDestroy);
|
|
4347
4315
|
});
|
|
4348
4316
|
}
|
|
4349
|
-
// AI对话框
|
|
4350
|
-
if ((_theme_controls6 = theme.controls) == null ? void 0 : _theme_controls6.aiChatControl) {
|
|
4351
|
-
theme.controls.aiChatControl.on(EVENTS.control.aichatChange, function(active) {
|
|
4352
|
-
theme.emit(EVENTS.control.aichatChange, active);
|
|
4353
|
-
});
|
|
4354
|
-
theme.controls.aiChatControl.on(EVENTS.control.aichatDestroy, function() {
|
|
4355
|
-
theme.emit(EVENTS.control.aichatDestroy);
|
|
4356
|
-
});
|
|
4357
|
-
}
|
|
4358
4317
|
// 缩放控件
|
|
4359
|
-
if ((
|
|
4318
|
+
if ((_theme_controls6 = theme.controls) == null ? void 0 : _theme_controls6.zoomControl) {
|
|
4360
4319
|
theme.controls.zoomControl.on(EVENTS.control.zoomChange, function(value, _percent, _range) {
|
|
4361
4320
|
if (theme.zoom !== value) {
|
|
4362
4321
|
theme.zoom = value;
|
|
@@ -4378,7 +4337,7 @@ function debounce(func, wait) {
|
|
|
4378
4337
|
});
|
|
4379
4338
|
}
|
|
4380
4339
|
// 清晰度控件
|
|
4381
|
-
if ((
|
|
4340
|
+
if ((_theme_controls7 = theme.controls) == null ? void 0 : _theme_controls7.definitionControl) {
|
|
4382
4341
|
theme.controls.definitionControl.on(EVENTS.control.definitionPanelOpenChange, function(open, definition, item) {
|
|
4383
4342
|
theme.emit(CLEAR_TIMER_HEADER_FOOTER_ANIMATION, open, definition);
|
|
4384
4343
|
theme.emit(EVENTS.control.definitionPanelOpenChange, open, definition, item);
|
|
@@ -4391,7 +4350,7 @@ function debounce(func, wait) {
|
|
|
4391
4350
|
});
|
|
4392
4351
|
}
|
|
4393
4352
|
// 倍速控件
|
|
4394
|
-
if ((
|
|
4353
|
+
if ((_theme_controls8 = theme.controls) == null ? void 0 : _theme_controls8.speedControl) {
|
|
4395
4354
|
theme.controls.speedControl.on(EVENTS.control.speedPanelOpenChange, function(open, speed, item) {
|
|
4396
4355
|
theme.emit(CLEAR_TIMER_HEADER_FOOTER_ANIMATION, open, speed);
|
|
4397
4356
|
theme.emit(EVENTS.control.speedPanelOpenChange, open, speed, item);
|
|
@@ -4404,7 +4363,7 @@ function debounce(func, wait) {
|
|
|
4404
4363
|
});
|
|
4405
4364
|
}
|
|
4406
4365
|
// 截图控件
|
|
4407
|
-
if ((
|
|
4366
|
+
if ((_theme_controls9 = theme.controls) == null ? void 0 : _theme_controls9.capturePictureControl) {
|
|
4408
4367
|
theme.controls.capturePictureControl.on(EVENTS.control.capturePicture, function(options) {
|
|
4409
4368
|
theme.emit(EVENTS.control.capturePicture, options);
|
|
4410
4369
|
});
|
|
@@ -4413,25 +4372,25 @@ function debounce(func, wait) {
|
|
|
4413
4372
|
});
|
|
4414
4373
|
}
|
|
4415
4374
|
// 全屏控件
|
|
4416
|
-
if ((
|
|
4375
|
+
if ((_theme_controls10 = theme.controls) == null ? void 0 : _theme_controls10.fullscreenControl) {
|
|
4417
4376
|
theme.controls.fullscreenControl.on(EVENTS.control.fullscreenDestroy, function() {
|
|
4418
4377
|
theme.emit(EVENTS.control.fullscreenDestroy);
|
|
4419
4378
|
});
|
|
4420
4379
|
}
|
|
4421
4380
|
// 全局全屏控件
|
|
4422
|
-
if ((
|
|
4381
|
+
if ((_theme_controls11 = theme.controls) == null ? void 0 : _theme_controls11.globalFullscreenControl) {
|
|
4423
4382
|
theme.controls.globalFullscreenControl.on(EVENTS.control.globalFullscreenDestroy, function() {
|
|
4424
4383
|
theme.emit(EVENTS.control.globalFullscreenDestroy);
|
|
4425
4384
|
});
|
|
4426
4385
|
}
|
|
4427
4386
|
// 设备信息控件
|
|
4428
|
-
if ((
|
|
4387
|
+
if ((_theme_controls12 = theme.controls) == null ? void 0 : _theme_controls12.deviceControl) {
|
|
4429
4388
|
theme.controls.deviceControl.on(EVENTS.control.deviceDestroy, function() {
|
|
4430
4389
|
theme.emit(EVENTS.control.deviceDestroy);
|
|
4431
4390
|
});
|
|
4432
4391
|
}
|
|
4433
4392
|
// 回放类型切换控件
|
|
4434
|
-
if ((
|
|
4393
|
+
if ((_theme_controls13 = theme.controls) == null ? void 0 : _theme_controls13.recControl) {
|
|
4435
4394
|
// prettier-ignore
|
|
4436
4395
|
theme.controls.recControl.on(EVENTS.control.recTypeChange, function(type) {
|
|
4437
4396
|
if (theme.recType !== type) {
|
|
@@ -4452,7 +4411,7 @@ function debounce(func, wait) {
|
|
|
4452
4411
|
});
|
|
4453
4412
|
}
|
|
4454
4413
|
// 时间轴控件
|
|
4455
|
-
if ((
|
|
4414
|
+
if ((_theme_controls14 = theme.controls) == null ? void 0 : _theme_controls14.timeLineControl) {
|
|
4456
4415
|
theme.controls.timeLineControl.on(EVENTS.control.timeLineChange, function(date) {
|
|
4457
4416
|
theme.emit(EVENTS.control.timeLineChange, date);
|
|
4458
4417
|
});
|
|
@@ -4469,7 +4428,7 @@ function debounce(func, wait) {
|
|
|
4469
4428
|
});
|
|
4470
4429
|
}
|
|
4471
4430
|
// 日历控件
|
|
4472
|
-
if ((
|
|
4431
|
+
if ((_theme_controls15 = theme.controls) == null ? void 0 : _theme_controls15.dateControl) {
|
|
4473
4432
|
theme.controls.dateControl.on(EVENTS.control.datePanelOpenChange, function(open, date) {
|
|
4474
4433
|
theme.emit(EVENTS.control.datePanelOpenChange, open, date);
|
|
4475
4434
|
});
|
|
@@ -4564,8 +4523,8 @@ function _create_class$5(Constructor, protoProps, staticProps) {
|
|
|
4564
4523
|
if (protoProps) _defineProperties$5(Constructor.prototype, protoProps);
|
|
4565
4524
|
return Constructor;
|
|
4566
4525
|
}
|
|
4567
|
-
function _extends$
|
|
4568
|
-
_extends$
|
|
4526
|
+
function _extends$j() {
|
|
4527
|
+
_extends$j = Object.assign || function(target) {
|
|
4569
4528
|
for(var i = 1; i < arguments.length; i++){
|
|
4570
4529
|
var source = arguments[i];
|
|
4571
4530
|
for(var key in source){
|
|
@@ -4576,9 +4535,9 @@ function _extends$k() {
|
|
|
4576
4535
|
}
|
|
4577
4536
|
return target;
|
|
4578
4537
|
};
|
|
4579
|
-
return _extends$
|
|
4538
|
+
return _extends$j.apply(this, arguments);
|
|
4580
4539
|
}
|
|
4581
|
-
function _inherits$
|
|
4540
|
+
function _inherits$i(subClass, superClass) {
|
|
4582
4541
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
4583
4542
|
throw new TypeError("Super expression must either be null or a function");
|
|
4584
4543
|
}
|
|
@@ -4589,14 +4548,14 @@ function _inherits$j(subClass, superClass) {
|
|
|
4589
4548
|
configurable: true
|
|
4590
4549
|
}
|
|
4591
4550
|
});
|
|
4592
|
-
if (superClass) _set_prototype_of$
|
|
4551
|
+
if (superClass) _set_prototype_of$i(subClass, superClass);
|
|
4593
4552
|
}
|
|
4594
|
-
function _set_prototype_of$
|
|
4595
|
-
_set_prototype_of$
|
|
4553
|
+
function _set_prototype_of$i(o, p) {
|
|
4554
|
+
_set_prototype_of$i = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
4596
4555
|
o.__proto__ = p;
|
|
4597
4556
|
return o;
|
|
4598
4557
|
};
|
|
4599
|
-
return _set_prototype_of$
|
|
4558
|
+
return _set_prototype_of$i(o, p);
|
|
4600
4559
|
}
|
|
4601
4560
|
var ZOOM_DEFAULT_OPTIONS = {
|
|
4602
4561
|
open: false,
|
|
@@ -4606,10 +4565,10 @@ var ZOOM_DEFAULT_OPTIONS = {
|
|
|
4606
4565
|
* 电子放大控件
|
|
4607
4566
|
* @category Control
|
|
4608
4567
|
*/ var Zoom$1 = /*#__PURE__*/ function(Control) {
|
|
4609
|
-
_inherits$
|
|
4568
|
+
_inherits$i(Zoom, Control);
|
|
4610
4569
|
function Zoom(options) {
|
|
4611
4570
|
var _this;
|
|
4612
|
-
_this = Control.call(this, _extends$
|
|
4571
|
+
_this = Control.call(this, _extends$j({}, options, {
|
|
4613
4572
|
tagName: 'span',
|
|
4614
4573
|
controlType: 'button',
|
|
4615
4574
|
classNameSuffix: 'zoom'
|
|
@@ -5466,8 +5425,8 @@ function requireDist$1 () {
|
|
|
5466
5425
|
var distExports$1 = requireDist$1();
|
|
5467
5426
|
var Zoom = /*@__PURE__*/getDefaultExportFromCjs(distExports$1);
|
|
5468
5427
|
|
|
5469
|
-
function _extends$
|
|
5470
|
-
_extends$
|
|
5428
|
+
function _extends$i() {
|
|
5429
|
+
_extends$i = Object.assign || function(target) {
|
|
5471
5430
|
for(var i = 1; i < arguments.length; i++){
|
|
5472
5431
|
var source = arguments[i];
|
|
5473
5432
|
for(var key in source){
|
|
@@ -5478,10 +5437,10 @@ function _extends$j() {
|
|
|
5478
5437
|
}
|
|
5479
5438
|
return target;
|
|
5480
5439
|
};
|
|
5481
|
-
return _extends$
|
|
5440
|
+
return _extends$i.apply(this, arguments);
|
|
5482
5441
|
}
|
|
5483
5442
|
function __zoom(theme, container, options) {
|
|
5484
|
-
theme.zoomUtil = new Zoom(container, _extends$
|
|
5443
|
+
theme.zoomUtil = new Zoom(container, _extends$i({}, options || {}, {
|
|
5485
5444
|
min: 1,
|
|
5486
5445
|
onChange: function(zoom, reset) {
|
|
5487
5446
|
if (zoom !== theme._zoom) {
|
|
@@ -5499,7 +5458,7 @@ function __zoom(theme, container, options) {
|
|
|
5499
5458
|
}));
|
|
5500
5459
|
}
|
|
5501
5460
|
|
|
5502
|
-
function asyncGeneratorStep$
|
|
5461
|
+
function asyncGeneratorStep$5(gen, resolve, reject, _next, _throw, key, arg) {
|
|
5503
5462
|
try {
|
|
5504
5463
|
var info = gen[key](arg);
|
|
5505
5464
|
var value = info.value;
|
|
@@ -5513,22 +5472,22 @@ function asyncGeneratorStep$6(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
5513
5472
|
Promise.resolve(value).then(_next, _throw);
|
|
5514
5473
|
}
|
|
5515
5474
|
}
|
|
5516
|
-
function _async_to_generator$
|
|
5475
|
+
function _async_to_generator$5(fn) {
|
|
5517
5476
|
return function() {
|
|
5518
5477
|
var self = this, args = arguments;
|
|
5519
5478
|
return new Promise(function(resolve, reject) {
|
|
5520
5479
|
var gen = fn.apply(self, args);
|
|
5521
5480
|
function _next(value) {
|
|
5522
|
-
asyncGeneratorStep$
|
|
5481
|
+
asyncGeneratorStep$5(gen, resolve, reject, _next, _throw, "next", value);
|
|
5523
5482
|
}
|
|
5524
5483
|
function _throw(err) {
|
|
5525
|
-
asyncGeneratorStep$
|
|
5484
|
+
asyncGeneratorStep$5(gen, resolve, reject, _next, _throw, "throw", err);
|
|
5526
5485
|
}
|
|
5527
5486
|
_next(undefined);
|
|
5528
5487
|
});
|
|
5529
5488
|
};
|
|
5530
5489
|
}
|
|
5531
|
-
function _ts_generator$
|
|
5490
|
+
function _ts_generator$5(thisArg, body) {
|
|
5532
5491
|
var f, y, t, _ = {
|
|
5533
5492
|
label: 0,
|
|
5534
5493
|
sent: function() {
|
|
@@ -5620,9 +5579,9 @@ function _ts_generator$6(thisArg, body) {
|
|
|
5620
5579
|
}
|
|
5621
5580
|
}
|
|
5622
5581
|
function getThemeDataByTemplate(theme, id) {
|
|
5623
|
-
return _async_to_generator$
|
|
5582
|
+
return _async_to_generator$5(function() {
|
|
5624
5583
|
var _theme_options_token_httpToken, _theme_options_token, url;
|
|
5625
|
-
return _ts_generator$
|
|
5584
|
+
return _ts_generator$5(this, function(_state) {
|
|
5626
5585
|
switch(_state.label){
|
|
5627
5586
|
case 0:
|
|
5628
5587
|
url = theme.options.env.domain + "/api/service/media/template/getDetail?accessToken=" + (theme.options.accessToken || ((_theme_options_token = theme.options.token) == null ? void 0 : (_theme_options_token_httpToken = _theme_options_token.httpToken) == null ? void 0 : _theme_options_token_httpToken.url)) + "&id=" + id;
|
|
@@ -5631,8 +5590,8 @@ function getThemeDataByTemplate(theme, id) {
|
|
|
5631
5590
|
fetch(url, {
|
|
5632
5591
|
method: 'GET'
|
|
5633
5592
|
}).then(function(response) {
|
|
5634
|
-
return _async_to_generator$
|
|
5635
|
-
return _ts_generator$
|
|
5593
|
+
return _async_to_generator$5(function() {
|
|
5594
|
+
return _ts_generator$5(this, function(_state) {
|
|
5636
5595
|
switch(_state.label){
|
|
5637
5596
|
case 0:
|
|
5638
5597
|
return [
|
|
@@ -5677,7 +5636,7 @@ function getThemeDataByTemplate(theme, id) {
|
|
|
5677
5636
|
})();
|
|
5678
5637
|
}
|
|
5679
5638
|
|
|
5680
|
-
function asyncGeneratorStep$
|
|
5639
|
+
function asyncGeneratorStep$4(gen, resolve, reject, _next, _throw, key, arg) {
|
|
5681
5640
|
try {
|
|
5682
5641
|
var info = gen[key](arg);
|
|
5683
5642
|
var value = info.value;
|
|
@@ -5691,23 +5650,23 @@ function asyncGeneratorStep$5(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
5691
5650
|
Promise.resolve(value).then(_next, _throw);
|
|
5692
5651
|
}
|
|
5693
5652
|
}
|
|
5694
|
-
function _async_to_generator$
|
|
5653
|
+
function _async_to_generator$4(fn) {
|
|
5695
5654
|
return function() {
|
|
5696
5655
|
var self = this, args = arguments;
|
|
5697
5656
|
return new Promise(function(resolve, reject) {
|
|
5698
5657
|
var gen = fn.apply(self, args);
|
|
5699
5658
|
function _next(value) {
|
|
5700
|
-
asyncGeneratorStep$
|
|
5659
|
+
asyncGeneratorStep$4(gen, resolve, reject, _next, _throw, "next", value);
|
|
5701
5660
|
}
|
|
5702
5661
|
function _throw(err) {
|
|
5703
|
-
asyncGeneratorStep$
|
|
5662
|
+
asyncGeneratorStep$4(gen, resolve, reject, _next, _throw, "throw", err);
|
|
5704
5663
|
}
|
|
5705
5664
|
_next(undefined);
|
|
5706
5665
|
});
|
|
5707
5666
|
};
|
|
5708
5667
|
}
|
|
5709
|
-
function _extends$
|
|
5710
|
-
_extends$
|
|
5668
|
+
function _extends$h() {
|
|
5669
|
+
_extends$h = Object.assign || function(target) {
|
|
5711
5670
|
for(var i = 1; i < arguments.length; i++){
|
|
5712
5671
|
var source = arguments[i];
|
|
5713
5672
|
for(var key in source){
|
|
@@ -5718,9 +5677,9 @@ function _extends$i() {
|
|
|
5718
5677
|
}
|
|
5719
5678
|
return target;
|
|
5720
5679
|
};
|
|
5721
|
-
return _extends$
|
|
5680
|
+
return _extends$h.apply(this, arguments);
|
|
5722
5681
|
}
|
|
5723
|
-
function _ts_generator$
|
|
5682
|
+
function _ts_generator$4(thisArg, body) {
|
|
5724
5683
|
var f, y, t, _ = {
|
|
5725
5684
|
label: 0,
|
|
5726
5685
|
sent: function() {
|
|
@@ -5846,7 +5805,7 @@ function _ts_generator$5(thisArg, body) {
|
|
|
5846
5805
|
}
|
|
5847
5806
|
if (item.isrender === 1 && REC_GROUP.includes(item.iconId)) {
|
|
5848
5807
|
// TODO: 因为回放是一组, 位置以第一个位置为准
|
|
5849
|
-
recControls.push(recControls[0] ? _extends$
|
|
5808
|
+
recControls.push(recControls[0] ? _extends$h({}, item, {
|
|
5850
5809
|
part: recControls[0].part
|
|
5851
5810
|
}) : item);
|
|
5852
5811
|
return false;
|
|
@@ -5869,7 +5828,7 @@ function _ts_generator$5(thisArg, body) {
|
|
|
5869
5828
|
}
|
|
5870
5829
|
if (item.isrender === 1 && REC_GROUP.includes(item.iconId)) {
|
|
5871
5830
|
// TODO: 因为回放是一组, 位置以第一个位置为准
|
|
5872
|
-
recControls.push(recControls[0] ? _extends$
|
|
5831
|
+
recControls.push(recControls[0] ? _extends$h({}, item, {
|
|
5873
5832
|
part: recControls[0].part
|
|
5874
5833
|
}) : item);
|
|
5875
5834
|
return false;
|
|
@@ -5931,9 +5890,9 @@ function _filterLeftRightControls(btnList) {
|
|
|
5931
5890
|
* @param data
|
|
5932
5891
|
* @returns
|
|
5933
5892
|
*/ function getThemeData(theme, data) {
|
|
5934
|
-
return _async_to_generator$
|
|
5893
|
+
return _async_to_generator$4(function() {
|
|
5935
5894
|
var themeData, _theme_logger, template;
|
|
5936
|
-
return _ts_generator$
|
|
5895
|
+
return _ts_generator$4(this, function(_state) {
|
|
5937
5896
|
switch(_state.label){
|
|
5938
5897
|
case 0:
|
|
5939
5898
|
themeData = data;
|
|
@@ -6124,8 +6083,8 @@ function rgbOrHexToRgbaWithOpacity(color, opacity) {
|
|
|
6124
6083
|
return Component;
|
|
6125
6084
|
}();
|
|
6126
6085
|
|
|
6127
|
-
function _extends$
|
|
6128
|
-
_extends$
|
|
6086
|
+
function _extends$g() {
|
|
6087
|
+
_extends$g = Object.assign || function(target) {
|
|
6129
6088
|
for(var i = 1; i < arguments.length; i++){
|
|
6130
6089
|
var source = arguments[i];
|
|
6131
6090
|
for(var key in source){
|
|
@@ -6136,9 +6095,9 @@ function _extends$h() {
|
|
|
6136
6095
|
}
|
|
6137
6096
|
return target;
|
|
6138
6097
|
};
|
|
6139
|
-
return _extends$
|
|
6098
|
+
return _extends$g.apply(this, arguments);
|
|
6140
6099
|
}
|
|
6141
|
-
function _inherits$
|
|
6100
|
+
function _inherits$h(subClass, superClass) {
|
|
6142
6101
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
6143
6102
|
throw new TypeError("Super expression must either be null or a function");
|
|
6144
6103
|
}
|
|
@@ -6149,28 +6108,28 @@ function _inherits$i(subClass, superClass) {
|
|
|
6149
6108
|
configurable: true
|
|
6150
6109
|
}
|
|
6151
6110
|
});
|
|
6152
|
-
if (superClass) _set_prototype_of$
|
|
6111
|
+
if (superClass) _set_prototype_of$h(subClass, superClass);
|
|
6153
6112
|
}
|
|
6154
|
-
function _set_prototype_of$
|
|
6155
|
-
_set_prototype_of$
|
|
6113
|
+
function _set_prototype_of$h(o, p) {
|
|
6114
|
+
_set_prototype_of$h = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
6156
6115
|
o.__proto__ = p;
|
|
6157
6116
|
return o;
|
|
6158
6117
|
};
|
|
6159
|
-
return _set_prototype_of$
|
|
6118
|
+
return _set_prototype_of$h(o, p);
|
|
6160
6119
|
}
|
|
6161
6120
|
var Footer = /*#__PURE__*/ function(Component) {
|
|
6162
|
-
_inherits$
|
|
6121
|
+
_inherits$h(Footer, Component);
|
|
6163
6122
|
function Footer(options) {
|
|
6164
6123
|
if (options === void 0) options = {};
|
|
6165
|
-
return Component.call(this, _extends$
|
|
6124
|
+
return Component.call(this, _extends$g({}, options, {
|
|
6166
6125
|
cType: 'footer'
|
|
6167
6126
|
})) || this;
|
|
6168
6127
|
}
|
|
6169
6128
|
return Footer;
|
|
6170
6129
|
}(Component);
|
|
6171
6130
|
|
|
6172
|
-
function _extends$
|
|
6173
|
-
_extends$
|
|
6131
|
+
function _extends$f() {
|
|
6132
|
+
_extends$f = Object.assign || function(target) {
|
|
6174
6133
|
for(var i = 1; i < arguments.length; i++){
|
|
6175
6134
|
var source = arguments[i];
|
|
6176
6135
|
for(var key in source){
|
|
@@ -6181,9 +6140,9 @@ function _extends$g() {
|
|
|
6181
6140
|
}
|
|
6182
6141
|
return target;
|
|
6183
6142
|
};
|
|
6184
|
-
return _extends$
|
|
6143
|
+
return _extends$f.apply(this, arguments);
|
|
6185
6144
|
}
|
|
6186
|
-
function _inherits$
|
|
6145
|
+
function _inherits$g(subClass, superClass) {
|
|
6187
6146
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
6188
6147
|
throw new TypeError("Super expression must either be null or a function");
|
|
6189
6148
|
}
|
|
@@ -6194,20 +6153,20 @@ function _inherits$h(subClass, superClass) {
|
|
|
6194
6153
|
configurable: true
|
|
6195
6154
|
}
|
|
6196
6155
|
});
|
|
6197
|
-
if (superClass) _set_prototype_of$
|
|
6156
|
+
if (superClass) _set_prototype_of$g(subClass, superClass);
|
|
6198
6157
|
}
|
|
6199
|
-
function _set_prototype_of$
|
|
6200
|
-
_set_prototype_of$
|
|
6158
|
+
function _set_prototype_of$g(o, p) {
|
|
6159
|
+
_set_prototype_of$g = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
6201
6160
|
o.__proto__ = p;
|
|
6202
6161
|
return o;
|
|
6203
6162
|
};
|
|
6204
|
-
return _set_prototype_of$
|
|
6163
|
+
return _set_prototype_of$g(o, p);
|
|
6205
6164
|
}
|
|
6206
6165
|
var Header = /*#__PURE__*/ function(Component) {
|
|
6207
|
-
_inherits$
|
|
6166
|
+
_inherits$g(Header, Component);
|
|
6208
6167
|
function Header(options) {
|
|
6209
6168
|
if (options === void 0) options = {};
|
|
6210
|
-
return Component.call(this, _extends$
|
|
6169
|
+
return Component.call(this, _extends$f({}, options, {
|
|
6211
6170
|
cType: 'header'
|
|
6212
6171
|
})) || this;
|
|
6213
6172
|
}
|
|
@@ -6373,8 +6332,8 @@ function interactiveHF($container, second, callback) {
|
|
|
6373
6332
|
};
|
|
6374
6333
|
}
|
|
6375
6334
|
|
|
6376
|
-
function _extends$
|
|
6377
|
-
_extends$
|
|
6335
|
+
function _extends$e() {
|
|
6336
|
+
_extends$e = Object.assign || function(target) {
|
|
6378
6337
|
for(var i = 1; i < arguments.length; i++){
|
|
6379
6338
|
var source = arguments[i];
|
|
6380
6339
|
for(var key in source){
|
|
@@ -6385,9 +6344,9 @@ function _extends$f() {
|
|
|
6385
6344
|
}
|
|
6386
6345
|
return target;
|
|
6387
6346
|
};
|
|
6388
|
-
return _extends$
|
|
6347
|
+
return _extends$e.apply(this, arguments);
|
|
6389
6348
|
}
|
|
6390
|
-
function _inherits$
|
|
6349
|
+
function _inherits$f(subClass, superClass) {
|
|
6391
6350
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
6392
6351
|
throw new TypeError("Super expression must either be null or a function");
|
|
6393
6352
|
}
|
|
@@ -6398,23 +6357,23 @@ function _inherits$g(subClass, superClass) {
|
|
|
6398
6357
|
configurable: true
|
|
6399
6358
|
}
|
|
6400
6359
|
});
|
|
6401
|
-
if (superClass) _set_prototype_of$
|
|
6360
|
+
if (superClass) _set_prototype_of$f(subClass, superClass);
|
|
6402
6361
|
}
|
|
6403
|
-
function _set_prototype_of$
|
|
6404
|
-
_set_prototype_of$
|
|
6362
|
+
function _set_prototype_of$f(o, p) {
|
|
6363
|
+
_set_prototype_of$f = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
6405
6364
|
o.__proto__ = p;
|
|
6406
6365
|
return o;
|
|
6407
6366
|
};
|
|
6408
|
-
return _set_prototype_of$
|
|
6367
|
+
return _set_prototype_of$f(o, p);
|
|
6409
6368
|
}
|
|
6410
6369
|
/**
|
|
6411
6370
|
* 全局全屏
|
|
6412
6371
|
* 主题和播放器不提供全局全屏的api, 如果开发者想要可以参考这个组件自己实现
|
|
6413
6372
|
* @category Control
|
|
6414
6373
|
*/ var GlobalFullscreen = /*#__PURE__*/ function(Fullscreen) {
|
|
6415
|
-
_inherits$
|
|
6374
|
+
_inherits$f(GlobalFullscreen, Fullscreen);
|
|
6416
6375
|
function GlobalFullscreen(options) {
|
|
6417
|
-
return Fullscreen.call(this, _extends$
|
|
6376
|
+
return Fullscreen.call(this, _extends$e({}, options, {
|
|
6418
6377
|
controlType: 'button',
|
|
6419
6378
|
classNameSuffix: 'global-fullscreen'
|
|
6420
6379
|
})) || this;
|
|
@@ -6445,8 +6404,8 @@ function _set_prototype_of$g(o, p) {
|
|
|
6445
6404
|
return GlobalFullscreen;
|
|
6446
6405
|
}(Fullscreen);
|
|
6447
6406
|
|
|
6448
|
-
function _extends$
|
|
6449
|
-
_extends$
|
|
6407
|
+
function _extends$d() {
|
|
6408
|
+
_extends$d = Object.assign || function(target) {
|
|
6450
6409
|
for(var i = 1; i < arguments.length; i++){
|
|
6451
6410
|
var source = arguments[i];
|
|
6452
6411
|
for(var key in source){
|
|
@@ -6457,9 +6416,9 @@ function _extends$e() {
|
|
|
6457
6416
|
}
|
|
6458
6417
|
return target;
|
|
6459
6418
|
};
|
|
6460
|
-
return _extends$
|
|
6419
|
+
return _extends$d.apply(this, arguments);
|
|
6461
6420
|
}
|
|
6462
|
-
function _inherits$
|
|
6421
|
+
function _inherits$e(subClass, superClass) {
|
|
6463
6422
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
6464
6423
|
throw new TypeError("Super expression must either be null or a function");
|
|
6465
6424
|
}
|
|
@@ -6470,23 +6429,23 @@ function _inherits$f(subClass, superClass) {
|
|
|
6470
6429
|
configurable: true
|
|
6471
6430
|
}
|
|
6472
6431
|
});
|
|
6473
|
-
if (superClass) _set_prototype_of$
|
|
6432
|
+
if (superClass) _set_prototype_of$e(subClass, superClass);
|
|
6474
6433
|
}
|
|
6475
|
-
function _set_prototype_of$
|
|
6476
|
-
_set_prototype_of$
|
|
6434
|
+
function _set_prototype_of$e(o, p) {
|
|
6435
|
+
_set_prototype_of$e = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
6477
6436
|
o.__proto__ = p;
|
|
6478
6437
|
return o;
|
|
6479
6438
|
};
|
|
6480
|
-
return _set_prototype_of$
|
|
6439
|
+
return _set_prototype_of$e(o, p);
|
|
6481
6440
|
}
|
|
6482
6441
|
/**
|
|
6483
6442
|
* 截图控件,点击后会触发截图事件, 截图数据会通过 onCapture 回调函数返回
|
|
6484
6443
|
* @category Control
|
|
6485
6444
|
*/ var CapturePicture = /*#__PURE__*/ function(Control) {
|
|
6486
|
-
_inherits$
|
|
6445
|
+
_inherits$e(CapturePicture, Control);
|
|
6487
6446
|
function CapturePicture(options) {
|
|
6488
6447
|
var _this;
|
|
6489
|
-
_this = Control.call(this, _extends$
|
|
6448
|
+
_this = Control.call(this, _extends$d({}, options, {
|
|
6490
6449
|
tagName: 'span',
|
|
6491
6450
|
classNameSuffix: 'capture-picture'
|
|
6492
6451
|
})) || this, _this._timer = null;
|
|
@@ -7495,8 +7454,8 @@ function _create_class$4(Constructor, protoProps, staticProps) {
|
|
|
7495
7454
|
if (protoProps) _defineProperties$4(Constructor.prototype, protoProps);
|
|
7496
7455
|
return Constructor;
|
|
7497
7456
|
}
|
|
7498
|
-
function _extends$
|
|
7499
|
-
_extends$
|
|
7457
|
+
function _extends$c() {
|
|
7458
|
+
_extends$c = Object.assign || function(target) {
|
|
7500
7459
|
for(var i = 1; i < arguments.length; i++){
|
|
7501
7460
|
var source = arguments[i];
|
|
7502
7461
|
for(var key in source){
|
|
@@ -7507,9 +7466,9 @@ function _extends$d() {
|
|
|
7507
7466
|
}
|
|
7508
7467
|
return target;
|
|
7509
7468
|
};
|
|
7510
|
-
return _extends$
|
|
7469
|
+
return _extends$c.apply(this, arguments);
|
|
7511
7470
|
}
|
|
7512
|
-
function _inherits$
|
|
7471
|
+
function _inherits$d(subClass, superClass) {
|
|
7513
7472
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
7514
7473
|
throw new TypeError("Super expression must either be null or a function");
|
|
7515
7474
|
}
|
|
@@ -7520,23 +7479,23 @@ function _inherits$e(subClass, superClass) {
|
|
|
7520
7479
|
configurable: true
|
|
7521
7480
|
}
|
|
7522
7481
|
});
|
|
7523
|
-
if (superClass) _set_prototype_of$
|
|
7482
|
+
if (superClass) _set_prototype_of$d(subClass, superClass);
|
|
7524
7483
|
}
|
|
7525
|
-
function _set_prototype_of$
|
|
7526
|
-
_set_prototype_of$
|
|
7484
|
+
function _set_prototype_of$d(o, p) {
|
|
7485
|
+
_set_prototype_of$d = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
7527
7486
|
o.__proto__ = p;
|
|
7528
7487
|
return o;
|
|
7529
7488
|
};
|
|
7530
|
-
return _set_prototype_of$
|
|
7489
|
+
return _set_prototype_of$d(o, p);
|
|
7531
7490
|
}
|
|
7532
7491
|
/**
|
|
7533
7492
|
* 云台控件
|
|
7534
7493
|
* @category Control
|
|
7535
7494
|
*/ var Ptz = /*#__PURE__*/ function(Control) {
|
|
7536
|
-
_inherits$
|
|
7495
|
+
_inherits$d(Ptz, Control);
|
|
7537
7496
|
function Ptz(options) {
|
|
7538
7497
|
var _this;
|
|
7539
|
-
_this = Control.call(this, _extends$
|
|
7498
|
+
_this = Control.call(this, _extends$c({}, options, {
|
|
7540
7499
|
tagName: 'span',
|
|
7541
7500
|
controlType: 'button',
|
|
7542
7501
|
classNameSuffix: 'ptz'
|
|
@@ -7579,7 +7538,7 @@ function _set_prototype_of$e(o, p) {
|
|
|
7579
7538
|
this.$turntable.classList.add("" + PREFIX_CLASS + "-ptz-turntable");
|
|
7580
7539
|
this.$panel.appendChild(this.$turntable);
|
|
7581
7540
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
|
7582
|
-
this._ptzControl = new distExports.Ptz(this.$turntable, _extends$
|
|
7541
|
+
this._ptzControl = new distExports.Ptz(this.$turntable, _extends$c({}, this._options, {
|
|
7583
7542
|
onSpeedChange: this._onSpeedChange.bind(this),
|
|
7584
7543
|
onDirection: this._onDirection.bind(this)
|
|
7585
7544
|
}));
|
|
@@ -7588,7 +7547,7 @@ function _set_prototype_of$e(o, p) {
|
|
|
7588
7547
|
};
|
|
7589
7548
|
_proto.renderMobileExtend = function renderMobileExtend($container) {
|
|
7590
7549
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
|
7591
|
-
if (!this._ptzControl1) this._ptzControl1 = new distExports.MobilePtz($container, _extends$
|
|
7550
|
+
if (!this._ptzControl1) this._ptzControl1 = new distExports.MobilePtz($container, _extends$c({}, this._options, {
|
|
7592
7551
|
onSpeedChange: this._onSpeedChange.bind(this),
|
|
7593
7552
|
onDirection: this._onDirection.bind(this)
|
|
7594
7553
|
}));
|
|
@@ -7691,8 +7650,8 @@ function _create_class$3(Constructor, protoProps, staticProps) {
|
|
|
7691
7650
|
if (protoProps) _defineProperties$3(Constructor.prototype, protoProps);
|
|
7692
7651
|
return Constructor;
|
|
7693
7652
|
}
|
|
7694
|
-
function _extends$
|
|
7695
|
-
_extends$
|
|
7653
|
+
function _extends$b() {
|
|
7654
|
+
_extends$b = Object.assign || function(target) {
|
|
7696
7655
|
for(var i = 1; i < arguments.length; i++){
|
|
7697
7656
|
var source = arguments[i];
|
|
7698
7657
|
for(var key in source){
|
|
@@ -7703,9 +7662,9 @@ function _extends$c() {
|
|
|
7703
7662
|
}
|
|
7704
7663
|
return target;
|
|
7705
7664
|
};
|
|
7706
|
-
return _extends$
|
|
7665
|
+
return _extends$b.apply(this, arguments);
|
|
7707
7666
|
}
|
|
7708
|
-
function _inherits$
|
|
7667
|
+
function _inherits$c(subClass, superClass) {
|
|
7709
7668
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
7710
7669
|
throw new TypeError("Super expression must either be null or a function");
|
|
7711
7670
|
}
|
|
@@ -7716,14 +7675,14 @@ function _inherits$d(subClass, superClass) {
|
|
|
7716
7675
|
configurable: true
|
|
7717
7676
|
}
|
|
7718
7677
|
});
|
|
7719
|
-
if (superClass) _set_prototype_of$
|
|
7678
|
+
if (superClass) _set_prototype_of$c(subClass, superClass);
|
|
7720
7679
|
}
|
|
7721
|
-
function _set_prototype_of$
|
|
7722
|
-
_set_prototype_of$
|
|
7680
|
+
function _set_prototype_of$c(o, p) {
|
|
7681
|
+
_set_prototype_of$c = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
7723
7682
|
o.__proto__ = p;
|
|
7724
7683
|
return o;
|
|
7725
7684
|
};
|
|
7726
|
-
return _set_prototype_of$
|
|
7685
|
+
return _set_prototype_of$c(o, p);
|
|
7727
7686
|
}
|
|
7728
7687
|
var RECORD_DEFAULT_OPTIONS = {
|
|
7729
7688
|
maxDuration: 3600
|
|
@@ -7737,10 +7696,10 @@ var RECORD_DEFAULT_OPTIONS = {
|
|
|
7737
7696
|
* 2. 录制时间很短可能会因为浏览器的限制或没有I帧而无法生成有效的视频文件
|
|
7738
7697
|
* @category Control
|
|
7739
7698
|
*/ var Record = /*#__PURE__*/ function(Control) {
|
|
7740
|
-
_inherits$
|
|
7699
|
+
_inherits$c(Record, Control);
|
|
7741
7700
|
function Record(options) {
|
|
7742
7701
|
var _this;
|
|
7743
|
-
_this = Control.call(this, _extends$
|
|
7702
|
+
_this = Control.call(this, _extends$b({}, options, {
|
|
7744
7703
|
tagName: 'span',
|
|
7745
7704
|
controlType: 'button',
|
|
7746
7705
|
classNameSuffix: 'record'
|
|
@@ -7839,7 +7798,7 @@ var RECORD_DEFAULT_OPTIONS = {
|
|
|
7839
7798
|
return Record;
|
|
7840
7799
|
}(Control);
|
|
7841
7800
|
|
|
7842
|
-
function asyncGeneratorStep$
|
|
7801
|
+
function asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, key, arg) {
|
|
7843
7802
|
try {
|
|
7844
7803
|
var info = gen[key](arg);
|
|
7845
7804
|
var value = info.value;
|
|
@@ -7853,16 +7812,16 @@ function asyncGeneratorStep$4(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
7853
7812
|
Promise.resolve(value).then(_next, _throw);
|
|
7854
7813
|
}
|
|
7855
7814
|
}
|
|
7856
|
-
function _async_to_generator$
|
|
7815
|
+
function _async_to_generator$3(fn) {
|
|
7857
7816
|
return function() {
|
|
7858
7817
|
var self = this, args = arguments;
|
|
7859
7818
|
return new Promise(function(resolve, reject) {
|
|
7860
7819
|
var gen = fn.apply(self, args);
|
|
7861
7820
|
function _next(value) {
|
|
7862
|
-
asyncGeneratorStep$
|
|
7821
|
+
asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, "next", value);
|
|
7863
7822
|
}
|
|
7864
7823
|
function _throw(err) {
|
|
7865
|
-
asyncGeneratorStep$
|
|
7824
|
+
asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, "throw", err);
|
|
7866
7825
|
}
|
|
7867
7826
|
_next(undefined);
|
|
7868
7827
|
});
|
|
@@ -7881,8 +7840,8 @@ function _create_class$2(Constructor, protoProps, staticProps) {
|
|
|
7881
7840
|
if (protoProps) _defineProperties$2(Constructor.prototype, protoProps);
|
|
7882
7841
|
return Constructor;
|
|
7883
7842
|
}
|
|
7884
|
-
function _extends$
|
|
7885
|
-
_extends$
|
|
7843
|
+
function _extends$a() {
|
|
7844
|
+
_extends$a = Object.assign || function(target) {
|
|
7886
7845
|
for(var i = 1; i < arguments.length; i++){
|
|
7887
7846
|
var source = arguments[i];
|
|
7888
7847
|
for(var key in source){
|
|
@@ -7893,9 +7852,9 @@ function _extends$b() {
|
|
|
7893
7852
|
}
|
|
7894
7853
|
return target;
|
|
7895
7854
|
};
|
|
7896
|
-
return _extends$
|
|
7855
|
+
return _extends$a.apply(this, arguments);
|
|
7897
7856
|
}
|
|
7898
|
-
function _inherits$
|
|
7857
|
+
function _inherits$b(subClass, superClass) {
|
|
7899
7858
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
7900
7859
|
throw new TypeError("Super expression must either be null or a function");
|
|
7901
7860
|
}
|
|
@@ -7906,16 +7865,16 @@ function _inherits$c(subClass, superClass) {
|
|
|
7906
7865
|
configurable: true
|
|
7907
7866
|
}
|
|
7908
7867
|
});
|
|
7909
|
-
if (superClass) _set_prototype_of$
|
|
7868
|
+
if (superClass) _set_prototype_of$b(subClass, superClass);
|
|
7910
7869
|
}
|
|
7911
|
-
function _set_prototype_of$
|
|
7912
|
-
_set_prototype_of$
|
|
7870
|
+
function _set_prototype_of$b(o, p) {
|
|
7871
|
+
_set_prototype_of$b = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
7913
7872
|
o.__proto__ = p;
|
|
7914
7873
|
return o;
|
|
7915
7874
|
};
|
|
7916
|
-
return _set_prototype_of$
|
|
7875
|
+
return _set_prototype_of$b(o, p);
|
|
7917
7876
|
}
|
|
7918
|
-
function _ts_generator$
|
|
7877
|
+
function _ts_generator$3(thisArg, body) {
|
|
7919
7878
|
var f, y, t, _ = {
|
|
7920
7879
|
label: 0,
|
|
7921
7880
|
sent: function() {
|
|
@@ -8015,10 +7974,10 @@ function _ts_generator$4(thisArg, body) {
|
|
|
8015
7974
|
*
|
|
8016
7975
|
* @category Control
|
|
8017
7976
|
*/ var Talk = /*#__PURE__*/ function(Control) {
|
|
8018
|
-
_inherits$
|
|
7977
|
+
_inherits$b(Talk, Control);
|
|
8019
7978
|
function Talk(options) {
|
|
8020
7979
|
var _this;
|
|
8021
|
-
_this = Control.call(this, _extends$
|
|
7980
|
+
_this = Control.call(this, _extends$a({}, options, {
|
|
8022
7981
|
tagName: 'span',
|
|
8023
7982
|
controlType: 'button',
|
|
8024
7983
|
classNameSuffix: 'talk'
|
|
@@ -8070,8 +8029,8 @@ function _ts_generator$4(thisArg, body) {
|
|
|
8070
8029
|
var _this = this, _superprop_get__onControlClick = function() {
|
|
8071
8030
|
return Control.prototype._onControlClick;
|
|
8072
8031
|
};
|
|
8073
|
-
return _async_to_generator$
|
|
8074
|
-
return _ts_generator$
|
|
8032
|
+
return _async_to_generator$3(function() {
|
|
8033
|
+
return _ts_generator$3(this, function(_state) {
|
|
8075
8034
|
_superprop_get__onControlClick().call(_this, e);
|
|
8076
8035
|
this.active = !this.active;
|
|
8077
8036
|
this.emit(EVENTS.control.talkingChange, this.active);
|
|
@@ -8122,231 +8081,6 @@ function _ts_generator$4(thisArg, body) {
|
|
|
8122
8081
|
return Talk;
|
|
8123
8082
|
}(Control);
|
|
8124
8083
|
|
|
8125
|
-
function asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, key, arg) {
|
|
8126
|
-
try {
|
|
8127
|
-
var info = gen[key](arg);
|
|
8128
|
-
var value = info.value;
|
|
8129
|
-
} catch (error) {
|
|
8130
|
-
reject(error);
|
|
8131
|
-
return;
|
|
8132
|
-
}
|
|
8133
|
-
if (info.done) {
|
|
8134
|
-
resolve(value);
|
|
8135
|
-
} else {
|
|
8136
|
-
Promise.resolve(value).then(_next, _throw);
|
|
8137
|
-
}
|
|
8138
|
-
}
|
|
8139
|
-
function _async_to_generator$3(fn) {
|
|
8140
|
-
return function() {
|
|
8141
|
-
var self = this, args = arguments;
|
|
8142
|
-
return new Promise(function(resolve, reject) {
|
|
8143
|
-
var gen = fn.apply(self, args);
|
|
8144
|
-
function _next(value) {
|
|
8145
|
-
asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, "next", value);
|
|
8146
|
-
}
|
|
8147
|
-
function _throw(err) {
|
|
8148
|
-
asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, "throw", err);
|
|
8149
|
-
}
|
|
8150
|
-
_next(undefined);
|
|
8151
|
-
});
|
|
8152
|
-
};
|
|
8153
|
-
}
|
|
8154
|
-
function _extends$a() {
|
|
8155
|
-
_extends$a = Object.assign || function(target) {
|
|
8156
|
-
for(var i = 1; i < arguments.length; i++){
|
|
8157
|
-
var source = arguments[i];
|
|
8158
|
-
for(var key in source){
|
|
8159
|
-
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
8160
|
-
target[key] = source[key];
|
|
8161
|
-
}
|
|
8162
|
-
}
|
|
8163
|
-
}
|
|
8164
|
-
return target;
|
|
8165
|
-
};
|
|
8166
|
-
return _extends$a.apply(this, arguments);
|
|
8167
|
-
}
|
|
8168
|
-
function _inherits$b(subClass, superClass) {
|
|
8169
|
-
if (typeof superClass !== "function" && superClass !== null) {
|
|
8170
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
8171
|
-
}
|
|
8172
|
-
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
8173
|
-
constructor: {
|
|
8174
|
-
value: subClass,
|
|
8175
|
-
writable: true,
|
|
8176
|
-
configurable: true
|
|
8177
|
-
}
|
|
8178
|
-
});
|
|
8179
|
-
if (superClass) _set_prototype_of$b(subClass, superClass);
|
|
8180
|
-
}
|
|
8181
|
-
function _set_prototype_of$b(o, p) {
|
|
8182
|
-
_set_prototype_of$b = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
8183
|
-
o.__proto__ = p;
|
|
8184
|
-
return o;
|
|
8185
|
-
};
|
|
8186
|
-
return _set_prototype_of$b(o, p);
|
|
8187
|
-
}
|
|
8188
|
-
function _ts_generator$3(thisArg, body) {
|
|
8189
|
-
var f, y, t, _ = {
|
|
8190
|
-
label: 0,
|
|
8191
|
-
sent: function() {
|
|
8192
|
-
if (t[0] & 1) throw t[1];
|
|
8193
|
-
return t[1];
|
|
8194
|
-
},
|
|
8195
|
-
trys: [],
|
|
8196
|
-
ops: []
|
|
8197
|
-
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
8198
|
-
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
8199
|
-
return this;
|
|
8200
|
-
}), g;
|
|
8201
|
-
function verb(n) {
|
|
8202
|
-
return function(v) {
|
|
8203
|
-
return step([
|
|
8204
|
-
n,
|
|
8205
|
-
v
|
|
8206
|
-
]);
|
|
8207
|
-
};
|
|
8208
|
-
}
|
|
8209
|
-
function step(op) {
|
|
8210
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
8211
|
-
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
8212
|
-
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
8213
|
-
if (y = 0, t) op = [
|
|
8214
|
-
op[0] & 2,
|
|
8215
|
-
t.value
|
|
8216
|
-
];
|
|
8217
|
-
switch(op[0]){
|
|
8218
|
-
case 0:
|
|
8219
|
-
case 1:
|
|
8220
|
-
t = op;
|
|
8221
|
-
break;
|
|
8222
|
-
case 4:
|
|
8223
|
-
_.label++;
|
|
8224
|
-
return {
|
|
8225
|
-
value: op[1],
|
|
8226
|
-
done: false
|
|
8227
|
-
};
|
|
8228
|
-
case 5:
|
|
8229
|
-
_.label++;
|
|
8230
|
-
y = op[1];
|
|
8231
|
-
op = [
|
|
8232
|
-
0
|
|
8233
|
-
];
|
|
8234
|
-
continue;
|
|
8235
|
-
case 7:
|
|
8236
|
-
op = _.ops.pop();
|
|
8237
|
-
_.trys.pop();
|
|
8238
|
-
continue;
|
|
8239
|
-
default:
|
|
8240
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
8241
|
-
_ = 0;
|
|
8242
|
-
continue;
|
|
8243
|
-
}
|
|
8244
|
-
if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
|
|
8245
|
-
_.label = op[1];
|
|
8246
|
-
break;
|
|
8247
|
-
}
|
|
8248
|
-
if (op[0] === 6 && _.label < t[1]) {
|
|
8249
|
-
_.label = t[1];
|
|
8250
|
-
t = op;
|
|
8251
|
-
break;
|
|
8252
|
-
}
|
|
8253
|
-
if (t && _.label < t[2]) {
|
|
8254
|
-
_.label = t[2];
|
|
8255
|
-
_.ops.push(op);
|
|
8256
|
-
break;
|
|
8257
|
-
}
|
|
8258
|
-
if (t[2]) _.ops.pop();
|
|
8259
|
-
_.trys.pop();
|
|
8260
|
-
continue;
|
|
8261
|
-
}
|
|
8262
|
-
op = body.call(thisArg, _);
|
|
8263
|
-
} catch (e) {
|
|
8264
|
-
op = [
|
|
8265
|
-
6,
|
|
8266
|
-
e
|
|
8267
|
-
];
|
|
8268
|
-
y = 0;
|
|
8269
|
-
} finally{
|
|
8270
|
-
f = t = 0;
|
|
8271
|
-
}
|
|
8272
|
-
if (op[0] & 5) throw op[1];
|
|
8273
|
-
return {
|
|
8274
|
-
value: op[0] ? op[1] : void 0,
|
|
8275
|
-
done: true
|
|
8276
|
-
};
|
|
8277
|
-
}
|
|
8278
|
-
}
|
|
8279
|
-
/**
|
|
8280
|
-
* 语音广播控件
|
|
8281
|
-
*
|
|
8282
|
-
* 用于触发语音广播功能的按钮控件
|
|
8283
|
-
*
|
|
8284
|
-
* @category Control
|
|
8285
|
-
*/ var Broadcast = /*#__PURE__*/ function(Control) {
|
|
8286
|
-
_inherits$b(Broadcast, Control);
|
|
8287
|
-
function Broadcast(options) {
|
|
8288
|
-
var _this;
|
|
8289
|
-
_this = Control.call(this, _extends$a({}, options, {
|
|
8290
|
-
tagName: 'span',
|
|
8291
|
-
controlType: 'button',
|
|
8292
|
-
classNameSuffix: 'broadcast'
|
|
8293
|
-
})) || this;
|
|
8294
|
-
_this._options = options;
|
|
8295
|
-
_this._render();
|
|
8296
|
-
_this.on(EVENTS.broadcastChange, function(active) {
|
|
8297
|
-
if (_this.active !== active) {
|
|
8298
|
-
_this.active = active;
|
|
8299
|
-
_this._render();
|
|
8300
|
-
}
|
|
8301
|
-
});
|
|
8302
|
-
return _this;
|
|
8303
|
-
}
|
|
8304
|
-
var _proto = Broadcast.prototype;
|
|
8305
|
-
_proto._render = function _render() {
|
|
8306
|
-
var _this_locale;
|
|
8307
|
-
this.$container.innerHTML = IconComponents.broadcast({
|
|
8308
|
-
title: (_this_locale = this.locale) == null ? void 0 : _this_locale.BTN_BROADCAST
|
|
8309
|
-
});
|
|
8310
|
-
};
|
|
8311
|
-
_proto.reset = function reset(hide) {
|
|
8312
|
-
if (this.active) {
|
|
8313
|
-
this.active = false;
|
|
8314
|
-
this._render();
|
|
8315
|
-
this.emit(EVENTS.control.broadcastChange, false);
|
|
8316
|
-
Control.prototype.reset.call(this, hide);
|
|
8317
|
-
}
|
|
8318
|
-
};
|
|
8319
|
-
/**
|
|
8320
|
-
* 销毁语音广播控件
|
|
8321
|
-
*/ _proto.destroy = function destroy() {
|
|
8322
|
-
if (this.active) {
|
|
8323
|
-
this.reset();
|
|
8324
|
-
}
|
|
8325
|
-
Control.prototype.destroy.call(this);
|
|
8326
|
-
};
|
|
8327
|
-
/**
|
|
8328
|
-
* 点击 Control 会触发
|
|
8329
|
-
*/ _proto._onControlClick = function _onControlClick(e) {
|
|
8330
|
-
var _this = this, _superprop_get__onControlClick = function() {
|
|
8331
|
-
return Control.prototype._onControlClick;
|
|
8332
|
-
};
|
|
8333
|
-
return _async_to_generator$3(function() {
|
|
8334
|
-
var _this__options_onChange, _this__options;
|
|
8335
|
-
return _ts_generator$3(this, function(_state) {
|
|
8336
|
-
_superprop_get__onControlClick().call(_this, e);
|
|
8337
|
-
this.active = !this.active;
|
|
8338
|
-
this.emit(EVENTS.control.broadcastChange, this.active);
|
|
8339
|
-
(_this__options = this._options) == null ? void 0 : (_this__options_onChange = _this__options.onChange) == null ? void 0 : _this__options_onChange.call(_this__options, this.active);
|
|
8340
|
-
this._render();
|
|
8341
|
-
return [
|
|
8342
|
-
2
|
|
8343
|
-
];
|
|
8344
|
-
});
|
|
8345
|
-
}).call(this);
|
|
8346
|
-
};
|
|
8347
|
-
return Broadcast;
|
|
8348
|
-
}(Control);
|
|
8349
|
-
|
|
8350
8084
|
function asyncGeneratorStep$2(gen, resolve, reject, _next, _throw, key, arg) {
|
|
8351
8085
|
try {
|
|
8352
8086
|
var info = gen[key](arg);
|
|
@@ -8502,23 +8236,23 @@ function _ts_generator$2(thisArg, body) {
|
|
|
8502
8236
|
}
|
|
8503
8237
|
}
|
|
8504
8238
|
/**
|
|
8505
|
-
*
|
|
8239
|
+
* 语音广播控件
|
|
8506
8240
|
*
|
|
8507
|
-
*
|
|
8241
|
+
* 用于触发语音广播功能的按钮控件
|
|
8508
8242
|
*
|
|
8509
8243
|
* @category Control
|
|
8510
|
-
*/ var
|
|
8511
|
-
_inherits$a(
|
|
8512
|
-
function
|
|
8244
|
+
*/ var Broadcast = /*#__PURE__*/ function(Control) {
|
|
8245
|
+
_inherits$a(Broadcast, Control);
|
|
8246
|
+
function Broadcast(options) {
|
|
8513
8247
|
var _this;
|
|
8514
8248
|
_this = Control.call(this, _extends$9({}, options, {
|
|
8515
8249
|
tagName: 'span',
|
|
8516
8250
|
controlType: 'button',
|
|
8517
|
-
classNameSuffix: '
|
|
8251
|
+
classNameSuffix: 'broadcast'
|
|
8518
8252
|
})) || this;
|
|
8519
8253
|
_this._options = options;
|
|
8520
8254
|
_this._render();
|
|
8521
|
-
_this.on(EVENTS.
|
|
8255
|
+
_this.on(EVENTS.broadcastChange, function(active) {
|
|
8522
8256
|
if (_this.active !== active) {
|
|
8523
8257
|
_this.active = active;
|
|
8524
8258
|
_this._render();
|
|
@@ -8526,23 +8260,23 @@ function _ts_generator$2(thisArg, body) {
|
|
|
8526
8260
|
});
|
|
8527
8261
|
return _this;
|
|
8528
8262
|
}
|
|
8529
|
-
var _proto =
|
|
8263
|
+
var _proto = Broadcast.prototype;
|
|
8530
8264
|
_proto._render = function _render() {
|
|
8531
8265
|
var _this_locale;
|
|
8532
|
-
this.$container.innerHTML = IconComponents.
|
|
8533
|
-
title: (_this_locale = this.locale) == null ? void 0 : _this_locale.
|
|
8266
|
+
this.$container.innerHTML = IconComponents.broadcast({
|
|
8267
|
+
title: (_this_locale = this.locale) == null ? void 0 : _this_locale.BTN_BROADCAST
|
|
8534
8268
|
});
|
|
8535
8269
|
};
|
|
8536
8270
|
_proto.reset = function reset(hide) {
|
|
8537
8271
|
if (this.active) {
|
|
8538
8272
|
this.active = false;
|
|
8539
8273
|
this._render();
|
|
8540
|
-
this.emit(EVENTS.control.
|
|
8274
|
+
this.emit(EVENTS.control.broadcastChange, false);
|
|
8541
8275
|
Control.prototype.reset.call(this, hide);
|
|
8542
8276
|
}
|
|
8543
8277
|
};
|
|
8544
8278
|
/**
|
|
8545
|
-
*
|
|
8279
|
+
* 销毁语音广播控件
|
|
8546
8280
|
*/ _proto.destroy = function destroy() {
|
|
8547
8281
|
if (this.active) {
|
|
8548
8282
|
this.reset();
|
|
@@ -8560,7 +8294,7 @@ function _ts_generator$2(thisArg, body) {
|
|
|
8560
8294
|
return _ts_generator$2(this, function(_state) {
|
|
8561
8295
|
_superprop_get__onControlClick().call(_this, e);
|
|
8562
8296
|
this.active = !this.active;
|
|
8563
|
-
this.emit(EVENTS.control.
|
|
8297
|
+
this.emit(EVENTS.control.broadcastChange, this.active);
|
|
8564
8298
|
(_this__options = this._options) == null ? void 0 : (_this__options_onChange = _this__options.onChange) == null ? void 0 : _this__options_onChange.call(_this__options, this.active);
|
|
8565
8299
|
this._render();
|
|
8566
8300
|
return [
|
|
@@ -8569,7 +8303,7 @@ function _ts_generator$2(thisArg, body) {
|
|
|
8569
8303
|
});
|
|
8570
8304
|
}).call(this);
|
|
8571
8305
|
};
|
|
8572
|
-
return
|
|
8306
|
+
return Broadcast;
|
|
8573
8307
|
}(Control);
|
|
8574
8308
|
|
|
8575
8309
|
function _defineProperties$1(target, props) {
|
|
@@ -9563,7 +9297,6 @@ var Controls = {
|
|
|
9563
9297
|
record: Record,
|
|
9564
9298
|
talk: Talk,
|
|
9565
9299
|
broadcast: Broadcast,
|
|
9566
|
-
aiChat: AIChat,
|
|
9567
9300
|
zoom: Zoom$1,
|
|
9568
9301
|
definition: Definition,
|
|
9569
9302
|
fullscreen: Fullscreen,
|
|
@@ -11946,6 +11679,6 @@ var THEME_DEFAULT_OPTIONS = {
|
|
|
11946
11679
|
zh: zh,
|
|
11947
11680
|
en: en
|
|
11948
11681
|
};
|
|
11949
|
-
/** 版本号 @since 0.0.1 */ Theme.THEME_VERSION = '2.1.
|
|
11682
|
+
/** 版本号 @since 0.0.1 */ Theme.THEME_VERSION = '2.1.2-beta.1';
|
|
11950
11683
|
|
|
11951
11684
|
export { Control, EVENTS, Fullscreen, Loading, Message, Play, Poster, Rec, Theme, Utils, Volume };
|