@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.js
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
|
'use strict';
|
|
@@ -142,7 +142,6 @@ var EVENTS = {
|
|
|
142
142
|
/** 对讲状态变化 */ talkingChange: 'talkingChange',
|
|
143
143
|
/** 麦克风音量变化 */ talkVolumeChange: 'talkVolumeChange',
|
|
144
144
|
/** 语音广播状态变化 */ broadcastChange: 'broadcastChange',
|
|
145
|
-
/** AI对话框状态变化 */ aichatChange: 'aichatChange',
|
|
146
145
|
/** 动态切换日志配置 */ setLoggerOptions: 'setLoggerOptions',
|
|
147
146
|
records: 'records',
|
|
148
147
|
ptzSpeedChange: 'ptzSpeedChange',
|
|
@@ -188,8 +187,6 @@ var EVENTS = {
|
|
|
188
187
|
/** 对讲控件销毁 */ talkDestroy: 'Control.talkDestroy',
|
|
189
188
|
/** 语音广播状态变化 */ broadcastChange: 'Control.broadcastChange',
|
|
190
189
|
/** 语音广播控件销毁 */ broadcastDestroy: 'Control.broadcastDestroy',
|
|
191
|
-
/** AI对话框状态变化 */ aichatChange: 'Control.aichatChange',
|
|
192
|
-
/** AI对话框控件销毁 */ aichatDestroy: 'Control.aichatDestroy',
|
|
193
190
|
/** 缩放比例改变 */ zoomChange: 'Control.zoomChange',
|
|
194
191
|
/** 音量调节面板 展示隐藏变换 */ zoomPanelOpenChange: 'Control.zoomPanelOpenChange',
|
|
195
192
|
/** 缩放控件销毁 */ zoomDestroy: 'Control.zoomDestroy',
|
|
@@ -241,7 +238,7 @@ function _create_class$9(Constructor, protoProps, staticProps) {
|
|
|
241
238
|
if (protoProps) _defineProperties$9(Constructor.prototype, protoProps);
|
|
242
239
|
return Constructor;
|
|
243
240
|
}
|
|
244
|
-
function _inherits$
|
|
241
|
+
function _inherits$s(subClass, superClass) {
|
|
245
242
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
246
243
|
throw new TypeError("Super expression must either be null or a function");
|
|
247
244
|
}
|
|
@@ -252,14 +249,14 @@ function _inherits$t(subClass, superClass) {
|
|
|
252
249
|
configurable: true
|
|
253
250
|
}
|
|
254
251
|
});
|
|
255
|
-
if (superClass) _set_prototype_of$
|
|
252
|
+
if (superClass) _set_prototype_of$s(subClass, superClass);
|
|
256
253
|
}
|
|
257
|
-
function _set_prototype_of$
|
|
258
|
-
_set_prototype_of$
|
|
254
|
+
function _set_prototype_of$s(o, p) {
|
|
255
|
+
_set_prototype_of$s = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
259
256
|
o.__proto__ = p;
|
|
260
257
|
return o;
|
|
261
258
|
};
|
|
262
|
-
return _set_prototype_of$
|
|
259
|
+
return _set_prototype_of$s(o, p);
|
|
263
260
|
}
|
|
264
261
|
/**
|
|
265
262
|
* 控件基类
|
|
@@ -273,7 +270,7 @@ function _set_prototype_of$t(o, p) {
|
|
|
273
270
|
* const myControl = new MyControl({})
|
|
274
271
|
* ```
|
|
275
272
|
*/ var Control = /*#__PURE__*/ function(EventEmitter) {
|
|
276
|
-
_inherits$
|
|
273
|
+
_inherits$s(Control, EventEmitter);
|
|
277
274
|
function Control(options) {
|
|
278
275
|
var _this;
|
|
279
276
|
var _this___options;
|
|
@@ -448,8 +445,8 @@ function _set_prototype_of$t(o, p) {
|
|
|
448
445
|
return Control;
|
|
449
446
|
}(EventEmitter);
|
|
450
447
|
|
|
451
|
-
function _extends$
|
|
452
|
-
_extends$
|
|
448
|
+
function _extends$r() {
|
|
449
|
+
_extends$r = Object.assign || function(target) {
|
|
453
450
|
for(var i = 1; i < arguments.length; i++){
|
|
454
451
|
var source = arguments[i];
|
|
455
452
|
for(var key in source){
|
|
@@ -460,9 +457,9 @@ function _extends$s() {
|
|
|
460
457
|
}
|
|
461
458
|
return target;
|
|
462
459
|
};
|
|
463
|
-
return _extends$
|
|
460
|
+
return _extends$r.apply(this, arguments);
|
|
464
461
|
}
|
|
465
|
-
function _inherits$
|
|
462
|
+
function _inherits$r(subClass, superClass) {
|
|
466
463
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
467
464
|
throw new TypeError("Super expression must either be null or a function");
|
|
468
465
|
}
|
|
@@ -473,25 +470,25 @@ function _inherits$s(subClass, superClass) {
|
|
|
473
470
|
configurable: true
|
|
474
471
|
}
|
|
475
472
|
});
|
|
476
|
-
if (superClass) _set_prototype_of$
|
|
473
|
+
if (superClass) _set_prototype_of$r(subClass, superClass);
|
|
477
474
|
}
|
|
478
|
-
function _set_prototype_of$
|
|
479
|
-
_set_prototype_of$
|
|
475
|
+
function _set_prototype_of$r(o, p) {
|
|
476
|
+
_set_prototype_of$r = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
480
477
|
o.__proto__ = p;
|
|
481
478
|
return o;
|
|
482
479
|
};
|
|
483
|
-
return _set_prototype_of$
|
|
480
|
+
return _set_prototype_of$r(o, p);
|
|
484
481
|
}
|
|
485
482
|
var LOADING_DEFAULT_OPTIONS = {};
|
|
486
483
|
/**
|
|
487
484
|
* 加载动画控件
|
|
488
485
|
* @category Control
|
|
489
486
|
*/ var Loading = /*#__PURE__*/ function(Control) {
|
|
490
|
-
_inherits$
|
|
487
|
+
_inherits$r(Loading, Control);
|
|
491
488
|
function Loading(options) {
|
|
492
489
|
if (options === void 0) options = {};
|
|
493
490
|
var _this;
|
|
494
|
-
_this = Control.call(this, Object.assign({}, LOADING_DEFAULT_OPTIONS, _extends$
|
|
491
|
+
_this = Control.call(this, Object.assign({}, LOADING_DEFAULT_OPTIONS, _extends$r({}, options, {
|
|
495
492
|
tagName: 'div',
|
|
496
493
|
controlType: 'block',
|
|
497
494
|
classNameSuffix: 'loading'
|
|
@@ -529,8 +526,8 @@ var LOADING_DEFAULT_OPTIONS = {};
|
|
|
529
526
|
return Loading;
|
|
530
527
|
}(Control);
|
|
531
528
|
|
|
532
|
-
function _extends$
|
|
533
|
-
_extends$
|
|
529
|
+
function _extends$q() {
|
|
530
|
+
_extends$q = Object.assign || function(target) {
|
|
534
531
|
for(var i = 1; i < arguments.length; i++){
|
|
535
532
|
var source = arguments[i];
|
|
536
533
|
for(var key in source){
|
|
@@ -541,9 +538,9 @@ function _extends$r() {
|
|
|
541
538
|
}
|
|
542
539
|
return target;
|
|
543
540
|
};
|
|
544
|
-
return _extends$
|
|
541
|
+
return _extends$q.apply(this, arguments);
|
|
545
542
|
}
|
|
546
|
-
function _inherits$
|
|
543
|
+
function _inherits$q(subClass, superClass) {
|
|
547
544
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
548
545
|
throw new TypeError("Super expression must either be null or a function");
|
|
549
546
|
}
|
|
@@ -554,14 +551,14 @@ function _inherits$r(subClass, superClass) {
|
|
|
554
551
|
configurable: true
|
|
555
552
|
}
|
|
556
553
|
});
|
|
557
|
-
if (superClass) _set_prototype_of$
|
|
554
|
+
if (superClass) _set_prototype_of$q(subClass, superClass);
|
|
558
555
|
}
|
|
559
|
-
function _set_prototype_of$
|
|
560
|
-
_set_prototype_of$
|
|
556
|
+
function _set_prototype_of$q(o, p) {
|
|
557
|
+
_set_prototype_of$q = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
561
558
|
o.__proto__ = p;
|
|
562
559
|
return o;
|
|
563
560
|
};
|
|
564
|
-
return _set_prototype_of$
|
|
561
|
+
return _set_prototype_of$q(o, p);
|
|
565
562
|
}
|
|
566
563
|
// 不放在服务器上 是因为有可能http加载失败
|
|
567
564
|
// prettier-ignore
|
|
@@ -573,11 +570,11 @@ var POSTER_OPTIONS = {
|
|
|
573
570
|
* 封面控件
|
|
574
571
|
* @category Control
|
|
575
572
|
*/ var Poster = /*#__PURE__*/ function(Control) {
|
|
576
|
-
_inherits$
|
|
573
|
+
_inherits$q(Poster, Control);
|
|
577
574
|
function Poster(options) {
|
|
578
575
|
if (options === void 0) options = {};
|
|
579
576
|
var _this;
|
|
580
|
-
_this = Control.call(this, Object.assign({}, POSTER_OPTIONS, _extends$
|
|
577
|
+
_this = Control.call(this, Object.assign({}, POSTER_OPTIONS, _extends$q({}, options, {
|
|
581
578
|
tagName: 'div',
|
|
582
579
|
controlType: 'block',
|
|
583
580
|
classNameSuffix: 'poster'
|
|
@@ -673,7 +670,6 @@ var Icons = {
|
|
|
673
670
|
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>';
|
|
674
671
|
},
|
|
675
672
|
/** 语音广播 */ 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>',
|
|
676
|
-
/** 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 ',
|
|
677
673
|
/** 相机/截图 */ 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>',
|
|
678
674
|
/** 电子放大 */ 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>',
|
|
679
675
|
/** 隐私遮蔽 */ 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>',
|
|
@@ -762,10 +758,6 @@ var IconComponents = {
|
|
|
762
758
|
if (attr === void 0) attr = {};
|
|
763
759
|
return createIcon(Icons.broadcast, 'broadcast', attr);
|
|
764
760
|
},
|
|
765
|
-
aiChat: function(attr) {
|
|
766
|
-
if (attr === void 0) attr = {};
|
|
767
|
-
return createIcon(Icons.aiChat, 'aiChat', attr);
|
|
768
|
-
},
|
|
769
761
|
talkGrowth: function(attr) {
|
|
770
762
|
if (attr === void 0) attr = {};
|
|
771
763
|
return createIcon(Icons.talkGrowth(PREFIX_CLASS), 'talk-growth', attr);
|
|
@@ -844,8 +836,8 @@ var IconComponents = {
|
|
|
844
836
|
}
|
|
845
837
|
};
|
|
846
838
|
|
|
847
|
-
function _extends$
|
|
848
|
-
_extends$
|
|
839
|
+
function _extends$p() {
|
|
840
|
+
_extends$p = Object.assign || function(target) {
|
|
849
841
|
for(var i = 1; i < arguments.length; i++){
|
|
850
842
|
var source = arguments[i];
|
|
851
843
|
for(var key in source){
|
|
@@ -856,9 +848,9 @@ function _extends$q() {
|
|
|
856
848
|
}
|
|
857
849
|
return target;
|
|
858
850
|
};
|
|
859
|
-
return _extends$
|
|
851
|
+
return _extends$p.apply(this, arguments);
|
|
860
852
|
}
|
|
861
|
-
function _inherits$
|
|
853
|
+
function _inherits$p(subClass, superClass) {
|
|
862
854
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
863
855
|
throw new TypeError("Super expression must either be null or a function");
|
|
864
856
|
}
|
|
@@ -869,25 +861,25 @@ function _inherits$q(subClass, superClass) {
|
|
|
869
861
|
configurable: true
|
|
870
862
|
}
|
|
871
863
|
});
|
|
872
|
-
if (superClass) _set_prototype_of$
|
|
864
|
+
if (superClass) _set_prototype_of$p(subClass, superClass);
|
|
873
865
|
}
|
|
874
|
-
function _set_prototype_of$
|
|
875
|
-
_set_prototype_of$
|
|
866
|
+
function _set_prototype_of$p(o, p) {
|
|
867
|
+
_set_prototype_of$p = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
876
868
|
o.__proto__ = p;
|
|
877
869
|
return o;
|
|
878
870
|
};
|
|
879
|
-
return _set_prototype_of$
|
|
871
|
+
return _set_prototype_of$p(o, p);
|
|
880
872
|
}
|
|
881
873
|
var MESSAGE_DEFAULT_OPTIONS = {};
|
|
882
874
|
/**
|
|
883
875
|
* 消息控件
|
|
884
876
|
* @category Control
|
|
885
877
|
*/ var Message = /*#__PURE__*/ function(Control) {
|
|
886
|
-
_inherits$
|
|
878
|
+
_inherits$p(Message, Control);
|
|
887
879
|
function Message(options) {
|
|
888
880
|
if (options === void 0) options = {};
|
|
889
881
|
var _this;
|
|
890
|
-
_this = Control.call(this, Object.assign({}, MESSAGE_DEFAULT_OPTIONS, _extends$
|
|
882
|
+
_this = Control.call(this, Object.assign({}, MESSAGE_DEFAULT_OPTIONS, _extends$p({}, options, {
|
|
891
883
|
tagName: 'div',
|
|
892
884
|
controlType: 'block'
|
|
893
885
|
}))) || this;
|
|
@@ -1040,8 +1032,8 @@ function _create_class$8(Constructor, protoProps, staticProps) {
|
|
|
1040
1032
|
if (protoProps) _defineProperties$8(Constructor.prototype, protoProps);
|
|
1041
1033
|
return Constructor;
|
|
1042
1034
|
}
|
|
1043
|
-
function _extends$
|
|
1044
|
-
_extends$
|
|
1035
|
+
function _extends$o() {
|
|
1036
|
+
_extends$o = Object.assign || function(target) {
|
|
1045
1037
|
for(var i = 1; i < arguments.length; i++){
|
|
1046
1038
|
var source = arguments[i];
|
|
1047
1039
|
for(var key in source){
|
|
@@ -1052,9 +1044,9 @@ function _extends$p() {
|
|
|
1052
1044
|
}
|
|
1053
1045
|
return target;
|
|
1054
1046
|
};
|
|
1055
|
-
return _extends$
|
|
1047
|
+
return _extends$o.apply(this, arguments);
|
|
1056
1048
|
}
|
|
1057
|
-
function _inherits$
|
|
1049
|
+
function _inherits$o(subClass, superClass) {
|
|
1058
1050
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
1059
1051
|
throw new TypeError("Super expression must either be null or a function");
|
|
1060
1052
|
}
|
|
@@ -1065,23 +1057,23 @@ function _inherits$p(subClass, superClass) {
|
|
|
1065
1057
|
configurable: true
|
|
1066
1058
|
}
|
|
1067
1059
|
});
|
|
1068
|
-
if (superClass) _set_prototype_of$
|
|
1060
|
+
if (superClass) _set_prototype_of$o(subClass, superClass);
|
|
1069
1061
|
}
|
|
1070
|
-
function _set_prototype_of$
|
|
1071
|
-
_set_prototype_of$
|
|
1062
|
+
function _set_prototype_of$o(o, p) {
|
|
1063
|
+
_set_prototype_of$o = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
1072
1064
|
o.__proto__ = p;
|
|
1073
1065
|
return o;
|
|
1074
1066
|
};
|
|
1075
|
-
return _set_prototype_of$
|
|
1067
|
+
return _set_prototype_of$o(o, p);
|
|
1076
1068
|
}
|
|
1077
1069
|
/**
|
|
1078
1070
|
* 播放/暂停控件
|
|
1079
1071
|
* @category Control
|
|
1080
1072
|
*/ var Play = /*#__PURE__*/ function(Control) {
|
|
1081
|
-
_inherits$
|
|
1073
|
+
_inherits$o(Play, Control);
|
|
1082
1074
|
function Play(options) {
|
|
1083
1075
|
var _this;
|
|
1084
|
-
_this = Control.call(this, _extends$
|
|
1076
|
+
_this = Control.call(this, _extends$o({}, options, {
|
|
1085
1077
|
tagName: 'span',
|
|
1086
1078
|
controlType: 'button',
|
|
1087
1079
|
classNameSuffix: 'play'
|
|
@@ -1697,8 +1689,8 @@ function _create_class$6(Constructor, protoProps, staticProps) {
|
|
|
1697
1689
|
if (protoProps) _defineProperties$6(Constructor.prototype, protoProps);
|
|
1698
1690
|
return Constructor;
|
|
1699
1691
|
}
|
|
1700
|
-
function _extends$
|
|
1701
|
-
_extends$
|
|
1692
|
+
function _extends$n() {
|
|
1693
|
+
_extends$n = Object.assign || function(target) {
|
|
1702
1694
|
for(var i = 1; i < arguments.length; i++){
|
|
1703
1695
|
var source = arguments[i];
|
|
1704
1696
|
for(var key in source){
|
|
@@ -1709,9 +1701,9 @@ function _extends$o() {
|
|
|
1709
1701
|
}
|
|
1710
1702
|
return target;
|
|
1711
1703
|
};
|
|
1712
|
-
return _extends$
|
|
1704
|
+
return _extends$n.apply(this, arguments);
|
|
1713
1705
|
}
|
|
1714
|
-
function _inherits$
|
|
1706
|
+
function _inherits$n(subClass, superClass) {
|
|
1715
1707
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
1716
1708
|
throw new TypeError("Super expression must either be null or a function");
|
|
1717
1709
|
}
|
|
@@ -1722,14 +1714,14 @@ function _inherits$o(subClass, superClass) {
|
|
|
1722
1714
|
configurable: true
|
|
1723
1715
|
}
|
|
1724
1716
|
});
|
|
1725
|
-
if (superClass) _set_prototype_of$
|
|
1717
|
+
if (superClass) _set_prototype_of$n(subClass, superClass);
|
|
1726
1718
|
}
|
|
1727
|
-
function _set_prototype_of$
|
|
1728
|
-
_set_prototype_of$
|
|
1719
|
+
function _set_prototype_of$n(o, p) {
|
|
1720
|
+
_set_prototype_of$n = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
1729
1721
|
o.__proto__ = p;
|
|
1730
1722
|
return o;
|
|
1731
1723
|
};
|
|
1732
|
-
return _set_prototype_of$
|
|
1724
|
+
return _set_prototype_of$n(o, p);
|
|
1733
1725
|
}
|
|
1734
1726
|
var VOLUME_DEFAULT_OPTIONS = {
|
|
1735
1727
|
volume: 0.8,
|
|
@@ -1743,12 +1735,12 @@ var VOLUME_DEFAULT_OPTIONS = {
|
|
|
1743
1735
|
* 音量调节控件
|
|
1744
1736
|
* @category Control
|
|
1745
1737
|
*/ var Volume = /*#__PURE__*/ function(Control) {
|
|
1746
|
-
_inherits$
|
|
1738
|
+
_inherits$n(Volume, Control);
|
|
1747
1739
|
function Volume(options) {
|
|
1748
1740
|
if (options === void 0) options = {};
|
|
1749
1741
|
var _this;
|
|
1750
1742
|
var _this__options_props, _this__options_props1, _this__options_props2, _this__options_props3;
|
|
1751
|
-
_this = Control.call(this, _extends$
|
|
1743
|
+
_this = Control.call(this, _extends$n({}, options, {
|
|
1752
1744
|
tagName: 'span',
|
|
1753
1745
|
classNameSuffix: 'volume',
|
|
1754
1746
|
controlType: 'button'
|
|
@@ -1964,7 +1956,7 @@ var VOLUME_DEFAULT_OPTIONS = {
|
|
|
1964
1956
|
return Volume;
|
|
1965
1957
|
}(Control);
|
|
1966
1958
|
|
|
1967
|
-
function asyncGeneratorStep$
|
|
1959
|
+
function asyncGeneratorStep$6(gen, resolve, reject, _next, _throw, key, arg) {
|
|
1968
1960
|
try {
|
|
1969
1961
|
var info = gen[key](arg);
|
|
1970
1962
|
var value = info.value;
|
|
@@ -1978,22 +1970,22 @@ function asyncGeneratorStep$7(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
1978
1970
|
Promise.resolve(value).then(_next, _throw);
|
|
1979
1971
|
}
|
|
1980
1972
|
}
|
|
1981
|
-
function _async_to_generator$
|
|
1973
|
+
function _async_to_generator$6(fn) {
|
|
1982
1974
|
return function() {
|
|
1983
1975
|
var self = this, args = arguments;
|
|
1984
1976
|
return new Promise(function(resolve, reject) {
|
|
1985
1977
|
var gen = fn.apply(self, args);
|
|
1986
1978
|
function _next(value) {
|
|
1987
|
-
asyncGeneratorStep$
|
|
1979
|
+
asyncGeneratorStep$6(gen, resolve, reject, _next, _throw, "next", value);
|
|
1988
1980
|
}
|
|
1989
1981
|
function _throw(err) {
|
|
1990
|
-
asyncGeneratorStep$
|
|
1982
|
+
asyncGeneratorStep$6(gen, resolve, reject, _next, _throw, "throw", err);
|
|
1991
1983
|
}
|
|
1992
1984
|
_next(undefined);
|
|
1993
1985
|
});
|
|
1994
1986
|
};
|
|
1995
1987
|
}
|
|
1996
|
-
function _ts_generator$
|
|
1988
|
+
function _ts_generator$6(thisArg, body) {
|
|
1997
1989
|
var f, y, t, _ = {
|
|
1998
1990
|
label: 0,
|
|
1999
1991
|
sent: function() {
|
|
@@ -2207,8 +2199,8 @@ var __fullscreenProvider__ = Provider.getInstance();
|
|
|
2207
2199
|
* 全屏
|
|
2208
2200
|
* @returns Promise<void>
|
|
2209
2201
|
*/ _proto.fullscreen = function fullscreen() {
|
|
2210
|
-
return _async_to_generator$
|
|
2211
|
-
return _ts_generator$
|
|
2202
|
+
return _async_to_generator$6(function() {
|
|
2203
|
+
return _ts_generator$6(this, function(_state) {
|
|
2212
2204
|
switch(_state.label){
|
|
2213
2205
|
case 0:
|
|
2214
2206
|
if (!Utils.isMobile) return [
|
|
@@ -2243,8 +2235,8 @@ var __fullscreenProvider__ = Provider.getInstance();
|
|
|
2243
2235
|
* 退出全屏
|
|
2244
2236
|
* @returns Promise<void>
|
|
2245
2237
|
*/ _proto.exitFullscreen = function exitFullscreen() {
|
|
2246
|
-
return _async_to_generator$
|
|
2247
|
-
return _ts_generator$
|
|
2238
|
+
return _async_to_generator$6(function() {
|
|
2239
|
+
return _ts_generator$6(this, function(_state) {
|
|
2248
2240
|
switch(_state.label){
|
|
2249
2241
|
case 0:
|
|
2250
2242
|
if (!Utils.isMobile) return [
|
|
@@ -2283,8 +2275,8 @@ var __fullscreenProvider__ = Provider.getInstance();
|
|
|
2283
2275
|
* 全屏切换
|
|
2284
2276
|
* @returns Promise<void>
|
|
2285
2277
|
*/ _proto.toggle = function toggle() {
|
|
2286
|
-
return _async_to_generator$
|
|
2287
|
-
return _ts_generator$
|
|
2278
|
+
return _async_to_generator$6(function() {
|
|
2279
|
+
return _ts_generator$6(this, function(_state) {
|
|
2288
2280
|
switch(_state.label){
|
|
2289
2281
|
case 0:
|
|
2290
2282
|
if (!Utils.isMobile) return [
|
|
@@ -2407,8 +2399,8 @@ var __fullscreenProvider__ = Provider.getInstance();
|
|
|
2407
2399
|
return Fullscreen;
|
|
2408
2400
|
}();
|
|
2409
2401
|
|
|
2410
|
-
function _extends$
|
|
2411
|
-
_extends$
|
|
2402
|
+
function _extends$m() {
|
|
2403
|
+
_extends$m = Object.assign || function(target) {
|
|
2412
2404
|
for(var i = 1; i < arguments.length; i++){
|
|
2413
2405
|
var source = arguments[i];
|
|
2414
2406
|
for(var key in source){
|
|
@@ -2419,9 +2411,9 @@ function _extends$n() {
|
|
|
2419
2411
|
}
|
|
2420
2412
|
return target;
|
|
2421
2413
|
};
|
|
2422
|
-
return _extends$
|
|
2414
|
+
return _extends$m.apply(this, arguments);
|
|
2423
2415
|
}
|
|
2424
|
-
function _inherits$
|
|
2416
|
+
function _inherits$m(subClass, superClass) {
|
|
2425
2417
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
2426
2418
|
throw new TypeError("Super expression must either be null or a function");
|
|
2427
2419
|
}
|
|
@@ -2432,24 +2424,24 @@ function _inherits$n(subClass, superClass) {
|
|
|
2432
2424
|
configurable: true
|
|
2433
2425
|
}
|
|
2434
2426
|
});
|
|
2435
|
-
if (superClass) _set_prototype_of$
|
|
2427
|
+
if (superClass) _set_prototype_of$m(subClass, superClass);
|
|
2436
2428
|
}
|
|
2437
|
-
function _set_prototype_of$
|
|
2438
|
-
_set_prototype_of$
|
|
2429
|
+
function _set_prototype_of$m(o, p) {
|
|
2430
|
+
_set_prototype_of$m = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
2439
2431
|
o.__proto__ = p;
|
|
2440
2432
|
return o;
|
|
2441
2433
|
};
|
|
2442
|
-
return _set_prototype_of$
|
|
2434
|
+
return _set_prototype_of$m(o, p);
|
|
2443
2435
|
}
|
|
2444
2436
|
/**
|
|
2445
2437
|
* 全屏控件
|
|
2446
2438
|
* @category Control
|
|
2447
2439
|
*/ var Fullscreen = /*#__PURE__*/ function(Control) {
|
|
2448
|
-
_inherits$
|
|
2440
|
+
_inherits$m(Fullscreen, Control);
|
|
2449
2441
|
function Fullscreen(options) {
|
|
2450
2442
|
var _this;
|
|
2451
2443
|
var _options_props, _this_options;
|
|
2452
|
-
_this = Control.call(this, _extends$
|
|
2444
|
+
_this = Control.call(this, _extends$m({
|
|
2453
2445
|
tagName: 'span',
|
|
2454
2446
|
classNameSuffix: 'fullscreen',
|
|
2455
2447
|
controlType: 'button'
|
|
@@ -2514,8 +2506,8 @@ function _set_prototype_of$n(o, p) {
|
|
|
2514
2506
|
return Fullscreen;
|
|
2515
2507
|
}(Control);
|
|
2516
2508
|
|
|
2517
|
-
function _extends$
|
|
2518
|
-
_extends$
|
|
2509
|
+
function _extends$l() {
|
|
2510
|
+
_extends$l = Object.assign || function(target) {
|
|
2519
2511
|
for(var i = 1; i < arguments.length; i++){
|
|
2520
2512
|
var source = arguments[i];
|
|
2521
2513
|
for(var key in source){
|
|
@@ -2526,9 +2518,9 @@ function _extends$m() {
|
|
|
2526
2518
|
}
|
|
2527
2519
|
return target;
|
|
2528
2520
|
};
|
|
2529
|
-
return _extends$
|
|
2521
|
+
return _extends$l.apply(this, arguments);
|
|
2530
2522
|
}
|
|
2531
|
-
function _inherits$
|
|
2523
|
+
function _inherits$l(subClass, superClass) {
|
|
2532
2524
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
2533
2525
|
throw new TypeError("Super expression must either be null or a function");
|
|
2534
2526
|
}
|
|
@@ -2539,24 +2531,24 @@ function _inherits$m(subClass, superClass) {
|
|
|
2539
2531
|
configurable: true
|
|
2540
2532
|
}
|
|
2541
2533
|
});
|
|
2542
|
-
if (superClass) _set_prototype_of$
|
|
2534
|
+
if (superClass) _set_prototype_of$l(subClass, superClass);
|
|
2543
2535
|
}
|
|
2544
|
-
function _set_prototype_of$
|
|
2545
|
-
_set_prototype_of$
|
|
2536
|
+
function _set_prototype_of$l(o, p) {
|
|
2537
|
+
_set_prototype_of$l = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
2546
2538
|
o.__proto__ = p;
|
|
2547
2539
|
return o;
|
|
2548
2540
|
};
|
|
2549
|
-
return _set_prototype_of$
|
|
2541
|
+
return _set_prototype_of$l(o, p);
|
|
2550
2542
|
}
|
|
2551
2543
|
/**
|
|
2552
2544
|
* 回放类型切换(本地回放(sdk 卡), 云存储回放, 云录制回放)控件
|
|
2553
2545
|
* @category Control
|
|
2554
2546
|
*/ var Rec = /*#__PURE__*/ function(Control) {
|
|
2555
|
-
_inherits$
|
|
2547
|
+
_inherits$l(Rec, Control);
|
|
2556
2548
|
function Rec(options) {
|
|
2557
2549
|
var _this;
|
|
2558
2550
|
var _options_props;
|
|
2559
|
-
_this = Control.call(this, _extends$
|
|
2551
|
+
_this = Control.call(this, _extends$l({}, options, {
|
|
2560
2552
|
tagName: 'div',
|
|
2561
2553
|
controlType: 'block',
|
|
2562
2554
|
classNameSuffix: 'rec'
|
|
@@ -2832,7 +2824,6 @@ var zh = {
|
|
|
2832
2824
|
BTN_CAPTURE: '截图',
|
|
2833
2825
|
BTN_TALK: '对讲',
|
|
2834
2826
|
BTN_BROADCAST: '语音广播',
|
|
2835
|
-
BTN_AICHAT: 'AI对话',
|
|
2836
2827
|
BTN_ZOOM: '电子放大',
|
|
2837
2828
|
BTN_3D_ZOOM: '3D定位',
|
|
2838
2829
|
BTN_PTZ: '云台控制',
|
|
@@ -3104,7 +3095,6 @@ var en = {
|
|
|
3104
3095
|
BTN_CAPTURE: 'Screenshot',
|
|
3105
3096
|
BTN_TALK: 'Intercom',
|
|
3106
3097
|
BTN_BROADCAST: 'Voice broadcast',
|
|
3107
|
-
BTN_AICHAT: 'AI Chat',
|
|
3108
3098
|
BTN_ZOOM: 'Electronic zoom',
|
|
3109
3099
|
BTN_3D_ZOOM: '3D positioning',
|
|
3110
3100
|
BTN_PTZ: 'PTZ control',
|
|
@@ -3399,12 +3389,6 @@ var en = {
|
|
|
3399
3389
|
defaultActive: 0,
|
|
3400
3390
|
isrender: 1
|
|
3401
3391
|
},
|
|
3402
|
-
{
|
|
3403
|
-
iconId: 'aiChat',
|
|
3404
|
-
part: 'left',
|
|
3405
|
-
defaultActive: 0,
|
|
3406
|
-
isrender: 1
|
|
3407
|
-
},
|
|
3408
3392
|
{
|
|
3409
3393
|
iconId: 'speed',
|
|
3410
3394
|
part: 'right',
|
|
@@ -3589,12 +3573,6 @@ var en = {
|
|
|
3589
3573
|
defaultActive: 0,
|
|
3590
3574
|
isrender: 1
|
|
3591
3575
|
},
|
|
3592
|
-
{
|
|
3593
|
-
iconId: 'aiChat',
|
|
3594
|
-
part: 'left',
|
|
3595
|
-
defaultActive: 0,
|
|
3596
|
-
isrender: 1
|
|
3597
|
-
},
|
|
3598
3576
|
{
|
|
3599
3577
|
iconId: 'speed',
|
|
3600
3578
|
part: 'right',
|
|
@@ -3755,7 +3733,7 @@ var en = {
|
|
|
3755
3733
|
voice: voice
|
|
3756
3734
|
};
|
|
3757
3735
|
|
|
3758
|
-
function _inherits$
|
|
3736
|
+
function _inherits$k(subClass, superClass) {
|
|
3759
3737
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
3760
3738
|
throw new TypeError("Super expression must either be null or a function");
|
|
3761
3739
|
}
|
|
@@ -3766,20 +3744,20 @@ function _inherits$l(subClass, superClass) {
|
|
|
3766
3744
|
configurable: true
|
|
3767
3745
|
}
|
|
3768
3746
|
});
|
|
3769
|
-
if (superClass) _set_prototype_of$
|
|
3747
|
+
if (superClass) _set_prototype_of$k(subClass, superClass);
|
|
3770
3748
|
}
|
|
3771
|
-
function _set_prototype_of$
|
|
3772
|
-
_set_prototype_of$
|
|
3749
|
+
function _set_prototype_of$k(o, p) {
|
|
3750
|
+
_set_prototype_of$k = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
3773
3751
|
o.__proto__ = p;
|
|
3774
3752
|
return o;
|
|
3775
3753
|
};
|
|
3776
|
-
return _set_prototype_of$
|
|
3754
|
+
return _set_prototype_of$k(o, p);
|
|
3777
3755
|
}
|
|
3778
3756
|
/**
|
|
3779
3757
|
* 截图控件
|
|
3780
3758
|
* @category Content
|
|
3781
3759
|
*/ var Content = /*#__PURE__*/ function(EventEmitter) {
|
|
3782
|
-
_inherits$
|
|
3760
|
+
_inherits$k(Content, EventEmitter);
|
|
3783
3761
|
function Content(options) {
|
|
3784
3762
|
var _this;
|
|
3785
3763
|
_this = EventEmitter.call(this) || this, _this._scaleMode = 0, _this._cleanUpResizeObserver = null, _this._originWidth = 0, _this._originHeight = 0, _this._width = 0, _this._height = 0;
|
|
@@ -3894,8 +3872,8 @@ function _set_prototype_of$l(o, p) {
|
|
|
3894
3872
|
return Content;
|
|
3895
3873
|
}(EventEmitter);
|
|
3896
3874
|
|
|
3897
|
-
function _extends$
|
|
3898
|
-
_extends$
|
|
3875
|
+
function _extends$k() {
|
|
3876
|
+
_extends$k = Object.assign || function(target) {
|
|
3899
3877
|
for(var i = 1; i < arguments.length; i++){
|
|
3900
3878
|
var source = arguments[i];
|
|
3901
3879
|
for(var key in source){
|
|
@@ -3906,9 +3884,9 @@ function _extends$l() {
|
|
|
3906
3884
|
}
|
|
3907
3885
|
return target;
|
|
3908
3886
|
};
|
|
3909
|
-
return _extends$
|
|
3887
|
+
return _extends$k.apply(this, arguments);
|
|
3910
3888
|
}
|
|
3911
|
-
function _inherits$
|
|
3889
|
+
function _inherits$j(subClass, superClass) {
|
|
3912
3890
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
3913
3891
|
throw new TypeError("Super expression must either be null or a function");
|
|
3914
3892
|
}
|
|
@@ -3919,23 +3897,23 @@ function _inherits$k(subClass, superClass) {
|
|
|
3919
3897
|
configurable: true
|
|
3920
3898
|
}
|
|
3921
3899
|
});
|
|
3922
|
-
if (superClass) _set_prototype_of$
|
|
3900
|
+
if (superClass) _set_prototype_of$j(subClass, superClass);
|
|
3923
3901
|
}
|
|
3924
|
-
function _set_prototype_of$
|
|
3925
|
-
_set_prototype_of$
|
|
3902
|
+
function _set_prototype_of$j(o, p) {
|
|
3903
|
+
_set_prototype_of$j = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
3926
3904
|
o.__proto__ = p;
|
|
3927
3905
|
return o;
|
|
3928
3906
|
};
|
|
3929
|
-
return _set_prototype_of$
|
|
3907
|
+
return _set_prototype_of$j(o, p);
|
|
3930
3908
|
}
|
|
3931
3909
|
/**
|
|
3932
3910
|
* 更多控件
|
|
3933
3911
|
* @category Control
|
|
3934
3912
|
*/ var More = /*#__PURE__*/ function(Control) {
|
|
3935
|
-
_inherits$
|
|
3913
|
+
_inherits$j(More, Control);
|
|
3936
3914
|
function More(options) {
|
|
3937
3915
|
var _this;
|
|
3938
|
-
_this = Control.call(this, _extends$
|
|
3916
|
+
_this = Control.call(this, _extends$k({}, options, {
|
|
3939
3917
|
tagName: 'span',
|
|
3940
3918
|
controlType: 'button',
|
|
3941
3919
|
classNameSuffix: 'more'
|
|
@@ -4141,16 +4119,6 @@ function debounce(func, wait) {
|
|
|
4141
4119
|
}
|
|
4142
4120
|
});
|
|
4143
4121
|
// =======================================================
|
|
4144
|
-
// AI对话框
|
|
4145
|
-
// =======================================================
|
|
4146
|
-
theme.on(EVENTS.aichatChange, function(active) {
|
|
4147
|
-
var _theme_controls, _theme_controls_aiChatControl, _theme_controls1;
|
|
4148
|
-
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)) {
|
|
4149
|
-
var _theme_controls_aiChatControl1, _theme_controls2;
|
|
4150
|
-
(_theme_controls2 = theme.controls) == null ? void 0 : (_theme_controls_aiChatControl1 = _theme_controls2.aiChatControl) == null ? void 0 : _theme_controls_aiChatControl1.emit(EVENTS.aichatChange, active);
|
|
4151
|
-
}
|
|
4152
|
-
});
|
|
4153
|
-
// =======================================================
|
|
4154
4122
|
// 录制
|
|
4155
4123
|
// =======================================================
|
|
4156
4124
|
theme.on(EVENTS.recordingChange, function(recording) {
|
|
@@ -4246,7 +4214,7 @@ function debounce(func, wait) {
|
|
|
4246
4214
|
*
|
|
4247
4215
|
* @param theme - Theme
|
|
4248
4216
|
*/ function _controlEventemitter(theme) {
|
|
4249
|
-
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
|
|
4217
|
+
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;
|
|
4250
4218
|
// Controls
|
|
4251
4219
|
if (theme._recFooter) {
|
|
4252
4220
|
theme._recFooter.on(EVENTS.theme.recFooterDestroy, function() {
|
|
@@ -4348,17 +4316,8 @@ function debounce(func, wait) {
|
|
|
4348
4316
|
theme.emit(EVENTS.control.broadcastDestroy);
|
|
4349
4317
|
});
|
|
4350
4318
|
}
|
|
4351
|
-
// AI对话框
|
|
4352
|
-
if ((_theme_controls6 = theme.controls) == null ? void 0 : _theme_controls6.aiChatControl) {
|
|
4353
|
-
theme.controls.aiChatControl.on(EVENTS.control.aichatChange, function(active) {
|
|
4354
|
-
theme.emit(EVENTS.control.aichatChange, active);
|
|
4355
|
-
});
|
|
4356
|
-
theme.controls.aiChatControl.on(EVENTS.control.aichatDestroy, function() {
|
|
4357
|
-
theme.emit(EVENTS.control.aichatDestroy);
|
|
4358
|
-
});
|
|
4359
|
-
}
|
|
4360
4319
|
// 缩放控件
|
|
4361
|
-
if ((
|
|
4320
|
+
if ((_theme_controls6 = theme.controls) == null ? void 0 : _theme_controls6.zoomControl) {
|
|
4362
4321
|
theme.controls.zoomControl.on(EVENTS.control.zoomChange, function(value, _percent, _range) {
|
|
4363
4322
|
if (theme.zoom !== value) {
|
|
4364
4323
|
theme.zoom = value;
|
|
@@ -4380,7 +4339,7 @@ function debounce(func, wait) {
|
|
|
4380
4339
|
});
|
|
4381
4340
|
}
|
|
4382
4341
|
// 清晰度控件
|
|
4383
|
-
if ((
|
|
4342
|
+
if ((_theme_controls7 = theme.controls) == null ? void 0 : _theme_controls7.definitionControl) {
|
|
4384
4343
|
theme.controls.definitionControl.on(EVENTS.control.definitionPanelOpenChange, function(open, definition, item) {
|
|
4385
4344
|
theme.emit(CLEAR_TIMER_HEADER_FOOTER_ANIMATION, open, definition);
|
|
4386
4345
|
theme.emit(EVENTS.control.definitionPanelOpenChange, open, definition, item);
|
|
@@ -4393,7 +4352,7 @@ function debounce(func, wait) {
|
|
|
4393
4352
|
});
|
|
4394
4353
|
}
|
|
4395
4354
|
// 倍速控件
|
|
4396
|
-
if ((
|
|
4355
|
+
if ((_theme_controls8 = theme.controls) == null ? void 0 : _theme_controls8.speedControl) {
|
|
4397
4356
|
theme.controls.speedControl.on(EVENTS.control.speedPanelOpenChange, function(open, speed, item) {
|
|
4398
4357
|
theme.emit(CLEAR_TIMER_HEADER_FOOTER_ANIMATION, open, speed);
|
|
4399
4358
|
theme.emit(EVENTS.control.speedPanelOpenChange, open, speed, item);
|
|
@@ -4406,7 +4365,7 @@ function debounce(func, wait) {
|
|
|
4406
4365
|
});
|
|
4407
4366
|
}
|
|
4408
4367
|
// 截图控件
|
|
4409
|
-
if ((
|
|
4368
|
+
if ((_theme_controls9 = theme.controls) == null ? void 0 : _theme_controls9.capturePictureControl) {
|
|
4410
4369
|
theme.controls.capturePictureControl.on(EVENTS.control.capturePicture, function(options) {
|
|
4411
4370
|
theme.emit(EVENTS.control.capturePicture, options);
|
|
4412
4371
|
});
|
|
@@ -4415,25 +4374,25 @@ function debounce(func, wait) {
|
|
|
4415
4374
|
});
|
|
4416
4375
|
}
|
|
4417
4376
|
// 全屏控件
|
|
4418
|
-
if ((
|
|
4377
|
+
if ((_theme_controls10 = theme.controls) == null ? void 0 : _theme_controls10.fullscreenControl) {
|
|
4419
4378
|
theme.controls.fullscreenControl.on(EVENTS.control.fullscreenDestroy, function() {
|
|
4420
4379
|
theme.emit(EVENTS.control.fullscreenDestroy);
|
|
4421
4380
|
});
|
|
4422
4381
|
}
|
|
4423
4382
|
// 全局全屏控件
|
|
4424
|
-
if ((
|
|
4383
|
+
if ((_theme_controls11 = theme.controls) == null ? void 0 : _theme_controls11.globalFullscreenControl) {
|
|
4425
4384
|
theme.controls.globalFullscreenControl.on(EVENTS.control.globalFullscreenDestroy, function() {
|
|
4426
4385
|
theme.emit(EVENTS.control.globalFullscreenDestroy);
|
|
4427
4386
|
});
|
|
4428
4387
|
}
|
|
4429
4388
|
// 设备信息控件
|
|
4430
|
-
if ((
|
|
4389
|
+
if ((_theme_controls12 = theme.controls) == null ? void 0 : _theme_controls12.deviceControl) {
|
|
4431
4390
|
theme.controls.deviceControl.on(EVENTS.control.deviceDestroy, function() {
|
|
4432
4391
|
theme.emit(EVENTS.control.deviceDestroy);
|
|
4433
4392
|
});
|
|
4434
4393
|
}
|
|
4435
4394
|
// 回放类型切换控件
|
|
4436
|
-
if ((
|
|
4395
|
+
if ((_theme_controls13 = theme.controls) == null ? void 0 : _theme_controls13.recControl) {
|
|
4437
4396
|
// prettier-ignore
|
|
4438
4397
|
theme.controls.recControl.on(EVENTS.control.recTypeChange, function(type) {
|
|
4439
4398
|
if (theme.recType !== type) {
|
|
@@ -4454,7 +4413,7 @@ function debounce(func, wait) {
|
|
|
4454
4413
|
});
|
|
4455
4414
|
}
|
|
4456
4415
|
// 时间轴控件
|
|
4457
|
-
if ((
|
|
4416
|
+
if ((_theme_controls14 = theme.controls) == null ? void 0 : _theme_controls14.timeLineControl) {
|
|
4458
4417
|
theme.controls.timeLineControl.on(EVENTS.control.timeLineChange, function(date) {
|
|
4459
4418
|
theme.emit(EVENTS.control.timeLineChange, date);
|
|
4460
4419
|
});
|
|
@@ -4471,7 +4430,7 @@ function debounce(func, wait) {
|
|
|
4471
4430
|
});
|
|
4472
4431
|
}
|
|
4473
4432
|
// 日历控件
|
|
4474
|
-
if ((
|
|
4433
|
+
if ((_theme_controls15 = theme.controls) == null ? void 0 : _theme_controls15.dateControl) {
|
|
4475
4434
|
theme.controls.dateControl.on(EVENTS.control.datePanelOpenChange, function(open, date) {
|
|
4476
4435
|
theme.emit(EVENTS.control.datePanelOpenChange, open, date);
|
|
4477
4436
|
});
|
|
@@ -4566,8 +4525,8 @@ function _create_class$5(Constructor, protoProps, staticProps) {
|
|
|
4566
4525
|
if (protoProps) _defineProperties$5(Constructor.prototype, protoProps);
|
|
4567
4526
|
return Constructor;
|
|
4568
4527
|
}
|
|
4569
|
-
function _extends$
|
|
4570
|
-
_extends$
|
|
4528
|
+
function _extends$j() {
|
|
4529
|
+
_extends$j = Object.assign || function(target) {
|
|
4571
4530
|
for(var i = 1; i < arguments.length; i++){
|
|
4572
4531
|
var source = arguments[i];
|
|
4573
4532
|
for(var key in source){
|
|
@@ -4578,9 +4537,9 @@ function _extends$k() {
|
|
|
4578
4537
|
}
|
|
4579
4538
|
return target;
|
|
4580
4539
|
};
|
|
4581
|
-
return _extends$
|
|
4540
|
+
return _extends$j.apply(this, arguments);
|
|
4582
4541
|
}
|
|
4583
|
-
function _inherits$
|
|
4542
|
+
function _inherits$i(subClass, superClass) {
|
|
4584
4543
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
4585
4544
|
throw new TypeError("Super expression must either be null or a function");
|
|
4586
4545
|
}
|
|
@@ -4591,14 +4550,14 @@ function _inherits$j(subClass, superClass) {
|
|
|
4591
4550
|
configurable: true
|
|
4592
4551
|
}
|
|
4593
4552
|
});
|
|
4594
|
-
if (superClass) _set_prototype_of$
|
|
4553
|
+
if (superClass) _set_prototype_of$i(subClass, superClass);
|
|
4595
4554
|
}
|
|
4596
|
-
function _set_prototype_of$
|
|
4597
|
-
_set_prototype_of$
|
|
4555
|
+
function _set_prototype_of$i(o, p) {
|
|
4556
|
+
_set_prototype_of$i = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
4598
4557
|
o.__proto__ = p;
|
|
4599
4558
|
return o;
|
|
4600
4559
|
};
|
|
4601
|
-
return _set_prototype_of$
|
|
4560
|
+
return _set_prototype_of$i(o, p);
|
|
4602
4561
|
}
|
|
4603
4562
|
var ZOOM_DEFAULT_OPTIONS = {
|
|
4604
4563
|
open: false,
|
|
@@ -4608,10 +4567,10 @@ var ZOOM_DEFAULT_OPTIONS = {
|
|
|
4608
4567
|
* 电子放大控件
|
|
4609
4568
|
* @category Control
|
|
4610
4569
|
*/ var Zoom$1 = /*#__PURE__*/ function(Control) {
|
|
4611
|
-
_inherits$
|
|
4570
|
+
_inherits$i(Zoom, Control);
|
|
4612
4571
|
function Zoom(options) {
|
|
4613
4572
|
var _this;
|
|
4614
|
-
_this = Control.call(this, _extends$
|
|
4573
|
+
_this = Control.call(this, _extends$j({}, options, {
|
|
4615
4574
|
tagName: 'span',
|
|
4616
4575
|
controlType: 'button',
|
|
4617
4576
|
classNameSuffix: 'zoom'
|
|
@@ -5468,8 +5427,8 @@ function requireDist$1 () {
|
|
|
5468
5427
|
var distExports$1 = requireDist$1();
|
|
5469
5428
|
var Zoom = /*@__PURE__*/getDefaultExportFromCjs(distExports$1);
|
|
5470
5429
|
|
|
5471
|
-
function _extends$
|
|
5472
|
-
_extends$
|
|
5430
|
+
function _extends$i() {
|
|
5431
|
+
_extends$i = Object.assign || function(target) {
|
|
5473
5432
|
for(var i = 1; i < arguments.length; i++){
|
|
5474
5433
|
var source = arguments[i];
|
|
5475
5434
|
for(var key in source){
|
|
@@ -5480,10 +5439,10 @@ function _extends$j() {
|
|
|
5480
5439
|
}
|
|
5481
5440
|
return target;
|
|
5482
5441
|
};
|
|
5483
|
-
return _extends$
|
|
5442
|
+
return _extends$i.apply(this, arguments);
|
|
5484
5443
|
}
|
|
5485
5444
|
function __zoom(theme, container, options) {
|
|
5486
|
-
theme.zoomUtil = new Zoom(container, _extends$
|
|
5445
|
+
theme.zoomUtil = new Zoom(container, _extends$i({}, options || {}, {
|
|
5487
5446
|
min: 1,
|
|
5488
5447
|
onChange: function(zoom, reset) {
|
|
5489
5448
|
if (zoom !== theme._zoom) {
|
|
@@ -5501,7 +5460,7 @@ function __zoom(theme, container, options) {
|
|
|
5501
5460
|
}));
|
|
5502
5461
|
}
|
|
5503
5462
|
|
|
5504
|
-
function asyncGeneratorStep$
|
|
5463
|
+
function asyncGeneratorStep$5(gen, resolve, reject, _next, _throw, key, arg) {
|
|
5505
5464
|
try {
|
|
5506
5465
|
var info = gen[key](arg);
|
|
5507
5466
|
var value = info.value;
|
|
@@ -5515,22 +5474,22 @@ function asyncGeneratorStep$6(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
5515
5474
|
Promise.resolve(value).then(_next, _throw);
|
|
5516
5475
|
}
|
|
5517
5476
|
}
|
|
5518
|
-
function _async_to_generator$
|
|
5477
|
+
function _async_to_generator$5(fn) {
|
|
5519
5478
|
return function() {
|
|
5520
5479
|
var self = this, args = arguments;
|
|
5521
5480
|
return new Promise(function(resolve, reject) {
|
|
5522
5481
|
var gen = fn.apply(self, args);
|
|
5523
5482
|
function _next(value) {
|
|
5524
|
-
asyncGeneratorStep$
|
|
5483
|
+
asyncGeneratorStep$5(gen, resolve, reject, _next, _throw, "next", value);
|
|
5525
5484
|
}
|
|
5526
5485
|
function _throw(err) {
|
|
5527
|
-
asyncGeneratorStep$
|
|
5486
|
+
asyncGeneratorStep$5(gen, resolve, reject, _next, _throw, "throw", err);
|
|
5528
5487
|
}
|
|
5529
5488
|
_next(undefined);
|
|
5530
5489
|
});
|
|
5531
5490
|
};
|
|
5532
5491
|
}
|
|
5533
|
-
function _ts_generator$
|
|
5492
|
+
function _ts_generator$5(thisArg, body) {
|
|
5534
5493
|
var f, y, t, _ = {
|
|
5535
5494
|
label: 0,
|
|
5536
5495
|
sent: function() {
|
|
@@ -5622,9 +5581,9 @@ function _ts_generator$6(thisArg, body) {
|
|
|
5622
5581
|
}
|
|
5623
5582
|
}
|
|
5624
5583
|
function getThemeDataByTemplate(theme, id) {
|
|
5625
|
-
return _async_to_generator$
|
|
5584
|
+
return _async_to_generator$5(function() {
|
|
5626
5585
|
var _theme_options_token_httpToken, _theme_options_token, url;
|
|
5627
|
-
return _ts_generator$
|
|
5586
|
+
return _ts_generator$5(this, function(_state) {
|
|
5628
5587
|
switch(_state.label){
|
|
5629
5588
|
case 0:
|
|
5630
5589
|
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;
|
|
@@ -5633,8 +5592,8 @@ function getThemeDataByTemplate(theme, id) {
|
|
|
5633
5592
|
fetch(url, {
|
|
5634
5593
|
method: 'GET'
|
|
5635
5594
|
}).then(function(response) {
|
|
5636
|
-
return _async_to_generator$
|
|
5637
|
-
return _ts_generator$
|
|
5595
|
+
return _async_to_generator$5(function() {
|
|
5596
|
+
return _ts_generator$5(this, function(_state) {
|
|
5638
5597
|
switch(_state.label){
|
|
5639
5598
|
case 0:
|
|
5640
5599
|
return [
|
|
@@ -5679,7 +5638,7 @@ function getThemeDataByTemplate(theme, id) {
|
|
|
5679
5638
|
})();
|
|
5680
5639
|
}
|
|
5681
5640
|
|
|
5682
|
-
function asyncGeneratorStep$
|
|
5641
|
+
function asyncGeneratorStep$4(gen, resolve, reject, _next, _throw, key, arg) {
|
|
5683
5642
|
try {
|
|
5684
5643
|
var info = gen[key](arg);
|
|
5685
5644
|
var value = info.value;
|
|
@@ -5693,23 +5652,23 @@ function asyncGeneratorStep$5(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
5693
5652
|
Promise.resolve(value).then(_next, _throw);
|
|
5694
5653
|
}
|
|
5695
5654
|
}
|
|
5696
|
-
function _async_to_generator$
|
|
5655
|
+
function _async_to_generator$4(fn) {
|
|
5697
5656
|
return function() {
|
|
5698
5657
|
var self = this, args = arguments;
|
|
5699
5658
|
return new Promise(function(resolve, reject) {
|
|
5700
5659
|
var gen = fn.apply(self, args);
|
|
5701
5660
|
function _next(value) {
|
|
5702
|
-
asyncGeneratorStep$
|
|
5661
|
+
asyncGeneratorStep$4(gen, resolve, reject, _next, _throw, "next", value);
|
|
5703
5662
|
}
|
|
5704
5663
|
function _throw(err) {
|
|
5705
|
-
asyncGeneratorStep$
|
|
5664
|
+
asyncGeneratorStep$4(gen, resolve, reject, _next, _throw, "throw", err);
|
|
5706
5665
|
}
|
|
5707
5666
|
_next(undefined);
|
|
5708
5667
|
});
|
|
5709
5668
|
};
|
|
5710
5669
|
}
|
|
5711
|
-
function _extends$
|
|
5712
|
-
_extends$
|
|
5670
|
+
function _extends$h() {
|
|
5671
|
+
_extends$h = Object.assign || function(target) {
|
|
5713
5672
|
for(var i = 1; i < arguments.length; i++){
|
|
5714
5673
|
var source = arguments[i];
|
|
5715
5674
|
for(var key in source){
|
|
@@ -5720,9 +5679,9 @@ function _extends$i() {
|
|
|
5720
5679
|
}
|
|
5721
5680
|
return target;
|
|
5722
5681
|
};
|
|
5723
|
-
return _extends$
|
|
5682
|
+
return _extends$h.apply(this, arguments);
|
|
5724
5683
|
}
|
|
5725
|
-
function _ts_generator$
|
|
5684
|
+
function _ts_generator$4(thisArg, body) {
|
|
5726
5685
|
var f, y, t, _ = {
|
|
5727
5686
|
label: 0,
|
|
5728
5687
|
sent: function() {
|
|
@@ -5848,7 +5807,7 @@ function _ts_generator$5(thisArg, body) {
|
|
|
5848
5807
|
}
|
|
5849
5808
|
if (item.isrender === 1 && REC_GROUP.includes(item.iconId)) {
|
|
5850
5809
|
// TODO: 因为回放是一组, 位置以第一个位置为准
|
|
5851
|
-
recControls.push(recControls[0] ? _extends$
|
|
5810
|
+
recControls.push(recControls[0] ? _extends$h({}, item, {
|
|
5852
5811
|
part: recControls[0].part
|
|
5853
5812
|
}) : item);
|
|
5854
5813
|
return false;
|
|
@@ -5871,7 +5830,7 @@ function _ts_generator$5(thisArg, body) {
|
|
|
5871
5830
|
}
|
|
5872
5831
|
if (item.isrender === 1 && REC_GROUP.includes(item.iconId)) {
|
|
5873
5832
|
// TODO: 因为回放是一组, 位置以第一个位置为准
|
|
5874
|
-
recControls.push(recControls[0] ? _extends$
|
|
5833
|
+
recControls.push(recControls[0] ? _extends$h({}, item, {
|
|
5875
5834
|
part: recControls[0].part
|
|
5876
5835
|
}) : item);
|
|
5877
5836
|
return false;
|
|
@@ -5933,9 +5892,9 @@ function _filterLeftRightControls(btnList) {
|
|
|
5933
5892
|
* @param data
|
|
5934
5893
|
* @returns
|
|
5935
5894
|
*/ function getThemeData(theme, data) {
|
|
5936
|
-
return _async_to_generator$
|
|
5895
|
+
return _async_to_generator$4(function() {
|
|
5937
5896
|
var themeData, _theme_logger, template;
|
|
5938
|
-
return _ts_generator$
|
|
5897
|
+
return _ts_generator$4(this, function(_state) {
|
|
5939
5898
|
switch(_state.label){
|
|
5940
5899
|
case 0:
|
|
5941
5900
|
themeData = data;
|
|
@@ -6126,8 +6085,8 @@ function rgbOrHexToRgbaWithOpacity(color, opacity) {
|
|
|
6126
6085
|
return Component;
|
|
6127
6086
|
}();
|
|
6128
6087
|
|
|
6129
|
-
function _extends$
|
|
6130
|
-
_extends$
|
|
6088
|
+
function _extends$g() {
|
|
6089
|
+
_extends$g = Object.assign || function(target) {
|
|
6131
6090
|
for(var i = 1; i < arguments.length; i++){
|
|
6132
6091
|
var source = arguments[i];
|
|
6133
6092
|
for(var key in source){
|
|
@@ -6138,9 +6097,9 @@ function _extends$h() {
|
|
|
6138
6097
|
}
|
|
6139
6098
|
return target;
|
|
6140
6099
|
};
|
|
6141
|
-
return _extends$
|
|
6100
|
+
return _extends$g.apply(this, arguments);
|
|
6142
6101
|
}
|
|
6143
|
-
function _inherits$
|
|
6102
|
+
function _inherits$h(subClass, superClass) {
|
|
6144
6103
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
6145
6104
|
throw new TypeError("Super expression must either be null or a function");
|
|
6146
6105
|
}
|
|
@@ -6151,28 +6110,28 @@ function _inherits$i(subClass, superClass) {
|
|
|
6151
6110
|
configurable: true
|
|
6152
6111
|
}
|
|
6153
6112
|
});
|
|
6154
|
-
if (superClass) _set_prototype_of$
|
|
6113
|
+
if (superClass) _set_prototype_of$h(subClass, superClass);
|
|
6155
6114
|
}
|
|
6156
|
-
function _set_prototype_of$
|
|
6157
|
-
_set_prototype_of$
|
|
6115
|
+
function _set_prototype_of$h(o, p) {
|
|
6116
|
+
_set_prototype_of$h = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
6158
6117
|
o.__proto__ = p;
|
|
6159
6118
|
return o;
|
|
6160
6119
|
};
|
|
6161
|
-
return _set_prototype_of$
|
|
6120
|
+
return _set_prototype_of$h(o, p);
|
|
6162
6121
|
}
|
|
6163
6122
|
var Footer = /*#__PURE__*/ function(Component) {
|
|
6164
|
-
_inherits$
|
|
6123
|
+
_inherits$h(Footer, Component);
|
|
6165
6124
|
function Footer(options) {
|
|
6166
6125
|
if (options === void 0) options = {};
|
|
6167
|
-
return Component.call(this, _extends$
|
|
6126
|
+
return Component.call(this, _extends$g({}, options, {
|
|
6168
6127
|
cType: 'footer'
|
|
6169
6128
|
})) || this;
|
|
6170
6129
|
}
|
|
6171
6130
|
return Footer;
|
|
6172
6131
|
}(Component);
|
|
6173
6132
|
|
|
6174
|
-
function _extends$
|
|
6175
|
-
_extends$
|
|
6133
|
+
function _extends$f() {
|
|
6134
|
+
_extends$f = Object.assign || function(target) {
|
|
6176
6135
|
for(var i = 1; i < arguments.length; i++){
|
|
6177
6136
|
var source = arguments[i];
|
|
6178
6137
|
for(var key in source){
|
|
@@ -6183,9 +6142,9 @@ function _extends$g() {
|
|
|
6183
6142
|
}
|
|
6184
6143
|
return target;
|
|
6185
6144
|
};
|
|
6186
|
-
return _extends$
|
|
6145
|
+
return _extends$f.apply(this, arguments);
|
|
6187
6146
|
}
|
|
6188
|
-
function _inherits$
|
|
6147
|
+
function _inherits$g(subClass, superClass) {
|
|
6189
6148
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
6190
6149
|
throw new TypeError("Super expression must either be null or a function");
|
|
6191
6150
|
}
|
|
@@ -6196,20 +6155,20 @@ function _inherits$h(subClass, superClass) {
|
|
|
6196
6155
|
configurable: true
|
|
6197
6156
|
}
|
|
6198
6157
|
});
|
|
6199
|
-
if (superClass) _set_prototype_of$
|
|
6158
|
+
if (superClass) _set_prototype_of$g(subClass, superClass);
|
|
6200
6159
|
}
|
|
6201
|
-
function _set_prototype_of$
|
|
6202
|
-
_set_prototype_of$
|
|
6160
|
+
function _set_prototype_of$g(o, p) {
|
|
6161
|
+
_set_prototype_of$g = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
6203
6162
|
o.__proto__ = p;
|
|
6204
6163
|
return o;
|
|
6205
6164
|
};
|
|
6206
|
-
return _set_prototype_of$
|
|
6165
|
+
return _set_prototype_of$g(o, p);
|
|
6207
6166
|
}
|
|
6208
6167
|
var Header = /*#__PURE__*/ function(Component) {
|
|
6209
|
-
_inherits$
|
|
6168
|
+
_inherits$g(Header, Component);
|
|
6210
6169
|
function Header(options) {
|
|
6211
6170
|
if (options === void 0) options = {};
|
|
6212
|
-
return Component.call(this, _extends$
|
|
6171
|
+
return Component.call(this, _extends$f({}, options, {
|
|
6213
6172
|
cType: 'header'
|
|
6214
6173
|
})) || this;
|
|
6215
6174
|
}
|
|
@@ -6375,8 +6334,8 @@ function interactiveHF($container, second, callback) {
|
|
|
6375
6334
|
};
|
|
6376
6335
|
}
|
|
6377
6336
|
|
|
6378
|
-
function _extends$
|
|
6379
|
-
_extends$
|
|
6337
|
+
function _extends$e() {
|
|
6338
|
+
_extends$e = Object.assign || function(target) {
|
|
6380
6339
|
for(var i = 1; i < arguments.length; i++){
|
|
6381
6340
|
var source = arguments[i];
|
|
6382
6341
|
for(var key in source){
|
|
@@ -6387,9 +6346,9 @@ function _extends$f() {
|
|
|
6387
6346
|
}
|
|
6388
6347
|
return target;
|
|
6389
6348
|
};
|
|
6390
|
-
return _extends$
|
|
6349
|
+
return _extends$e.apply(this, arguments);
|
|
6391
6350
|
}
|
|
6392
|
-
function _inherits$
|
|
6351
|
+
function _inherits$f(subClass, superClass) {
|
|
6393
6352
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
6394
6353
|
throw new TypeError("Super expression must either be null or a function");
|
|
6395
6354
|
}
|
|
@@ -6400,23 +6359,23 @@ function _inherits$g(subClass, superClass) {
|
|
|
6400
6359
|
configurable: true
|
|
6401
6360
|
}
|
|
6402
6361
|
});
|
|
6403
|
-
if (superClass) _set_prototype_of$
|
|
6362
|
+
if (superClass) _set_prototype_of$f(subClass, superClass);
|
|
6404
6363
|
}
|
|
6405
|
-
function _set_prototype_of$
|
|
6406
|
-
_set_prototype_of$
|
|
6364
|
+
function _set_prototype_of$f(o, p) {
|
|
6365
|
+
_set_prototype_of$f = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
6407
6366
|
o.__proto__ = p;
|
|
6408
6367
|
return o;
|
|
6409
6368
|
};
|
|
6410
|
-
return _set_prototype_of$
|
|
6369
|
+
return _set_prototype_of$f(o, p);
|
|
6411
6370
|
}
|
|
6412
6371
|
/**
|
|
6413
6372
|
* 全局全屏
|
|
6414
6373
|
* 主题和播放器不提供全局全屏的api, 如果开发者想要可以参考这个组件自己实现
|
|
6415
6374
|
* @category Control
|
|
6416
6375
|
*/ var GlobalFullscreen = /*#__PURE__*/ function(Fullscreen) {
|
|
6417
|
-
_inherits$
|
|
6376
|
+
_inherits$f(GlobalFullscreen, Fullscreen);
|
|
6418
6377
|
function GlobalFullscreen(options) {
|
|
6419
|
-
return Fullscreen.call(this, _extends$
|
|
6378
|
+
return Fullscreen.call(this, _extends$e({}, options, {
|
|
6420
6379
|
controlType: 'button',
|
|
6421
6380
|
classNameSuffix: 'global-fullscreen'
|
|
6422
6381
|
})) || this;
|
|
@@ -6447,8 +6406,8 @@ function _set_prototype_of$g(o, p) {
|
|
|
6447
6406
|
return GlobalFullscreen;
|
|
6448
6407
|
}(Fullscreen);
|
|
6449
6408
|
|
|
6450
|
-
function _extends$
|
|
6451
|
-
_extends$
|
|
6409
|
+
function _extends$d() {
|
|
6410
|
+
_extends$d = Object.assign || function(target) {
|
|
6452
6411
|
for(var i = 1; i < arguments.length; i++){
|
|
6453
6412
|
var source = arguments[i];
|
|
6454
6413
|
for(var key in source){
|
|
@@ -6459,9 +6418,9 @@ function _extends$e() {
|
|
|
6459
6418
|
}
|
|
6460
6419
|
return target;
|
|
6461
6420
|
};
|
|
6462
|
-
return _extends$
|
|
6421
|
+
return _extends$d.apply(this, arguments);
|
|
6463
6422
|
}
|
|
6464
|
-
function _inherits$
|
|
6423
|
+
function _inherits$e(subClass, superClass) {
|
|
6465
6424
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
6466
6425
|
throw new TypeError("Super expression must either be null or a function");
|
|
6467
6426
|
}
|
|
@@ -6472,23 +6431,23 @@ function _inherits$f(subClass, superClass) {
|
|
|
6472
6431
|
configurable: true
|
|
6473
6432
|
}
|
|
6474
6433
|
});
|
|
6475
|
-
if (superClass) _set_prototype_of$
|
|
6434
|
+
if (superClass) _set_prototype_of$e(subClass, superClass);
|
|
6476
6435
|
}
|
|
6477
|
-
function _set_prototype_of$
|
|
6478
|
-
_set_prototype_of$
|
|
6436
|
+
function _set_prototype_of$e(o, p) {
|
|
6437
|
+
_set_prototype_of$e = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
6479
6438
|
o.__proto__ = p;
|
|
6480
6439
|
return o;
|
|
6481
6440
|
};
|
|
6482
|
-
return _set_prototype_of$
|
|
6441
|
+
return _set_prototype_of$e(o, p);
|
|
6483
6442
|
}
|
|
6484
6443
|
/**
|
|
6485
6444
|
* 截图控件,点击后会触发截图事件, 截图数据会通过 onCapture 回调函数返回
|
|
6486
6445
|
* @category Control
|
|
6487
6446
|
*/ var CapturePicture = /*#__PURE__*/ function(Control) {
|
|
6488
|
-
_inherits$
|
|
6447
|
+
_inherits$e(CapturePicture, Control);
|
|
6489
6448
|
function CapturePicture(options) {
|
|
6490
6449
|
var _this;
|
|
6491
|
-
_this = Control.call(this, _extends$
|
|
6450
|
+
_this = Control.call(this, _extends$d({}, options, {
|
|
6492
6451
|
tagName: 'span',
|
|
6493
6452
|
classNameSuffix: 'capture-picture'
|
|
6494
6453
|
})) || this, _this._timer = null;
|
|
@@ -7497,8 +7456,8 @@ function _create_class$4(Constructor, protoProps, staticProps) {
|
|
|
7497
7456
|
if (protoProps) _defineProperties$4(Constructor.prototype, protoProps);
|
|
7498
7457
|
return Constructor;
|
|
7499
7458
|
}
|
|
7500
|
-
function _extends$
|
|
7501
|
-
_extends$
|
|
7459
|
+
function _extends$c() {
|
|
7460
|
+
_extends$c = Object.assign || function(target) {
|
|
7502
7461
|
for(var i = 1; i < arguments.length; i++){
|
|
7503
7462
|
var source = arguments[i];
|
|
7504
7463
|
for(var key in source){
|
|
@@ -7509,9 +7468,9 @@ function _extends$d() {
|
|
|
7509
7468
|
}
|
|
7510
7469
|
return target;
|
|
7511
7470
|
};
|
|
7512
|
-
return _extends$
|
|
7471
|
+
return _extends$c.apply(this, arguments);
|
|
7513
7472
|
}
|
|
7514
|
-
function _inherits$
|
|
7473
|
+
function _inherits$d(subClass, superClass) {
|
|
7515
7474
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
7516
7475
|
throw new TypeError("Super expression must either be null or a function");
|
|
7517
7476
|
}
|
|
@@ -7522,23 +7481,23 @@ function _inherits$e(subClass, superClass) {
|
|
|
7522
7481
|
configurable: true
|
|
7523
7482
|
}
|
|
7524
7483
|
});
|
|
7525
|
-
if (superClass) _set_prototype_of$
|
|
7484
|
+
if (superClass) _set_prototype_of$d(subClass, superClass);
|
|
7526
7485
|
}
|
|
7527
|
-
function _set_prototype_of$
|
|
7528
|
-
_set_prototype_of$
|
|
7486
|
+
function _set_prototype_of$d(o, p) {
|
|
7487
|
+
_set_prototype_of$d = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
7529
7488
|
o.__proto__ = p;
|
|
7530
7489
|
return o;
|
|
7531
7490
|
};
|
|
7532
|
-
return _set_prototype_of$
|
|
7491
|
+
return _set_prototype_of$d(o, p);
|
|
7533
7492
|
}
|
|
7534
7493
|
/**
|
|
7535
7494
|
* 云台控件
|
|
7536
7495
|
* @category Control
|
|
7537
7496
|
*/ var Ptz = /*#__PURE__*/ function(Control) {
|
|
7538
|
-
_inherits$
|
|
7497
|
+
_inherits$d(Ptz, Control);
|
|
7539
7498
|
function Ptz(options) {
|
|
7540
7499
|
var _this;
|
|
7541
|
-
_this = Control.call(this, _extends$
|
|
7500
|
+
_this = Control.call(this, _extends$c({}, options, {
|
|
7542
7501
|
tagName: 'span',
|
|
7543
7502
|
controlType: 'button',
|
|
7544
7503
|
classNameSuffix: 'ptz'
|
|
@@ -7581,7 +7540,7 @@ function _set_prototype_of$e(o, p) {
|
|
|
7581
7540
|
this.$turntable.classList.add("" + PREFIX_CLASS + "-ptz-turntable");
|
|
7582
7541
|
this.$panel.appendChild(this.$turntable);
|
|
7583
7542
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
|
7584
|
-
this._ptzControl = new distExports.Ptz(this.$turntable, _extends$
|
|
7543
|
+
this._ptzControl = new distExports.Ptz(this.$turntable, _extends$c({}, this._options, {
|
|
7585
7544
|
onSpeedChange: this._onSpeedChange.bind(this),
|
|
7586
7545
|
onDirection: this._onDirection.bind(this)
|
|
7587
7546
|
}));
|
|
@@ -7590,7 +7549,7 @@ function _set_prototype_of$e(o, p) {
|
|
|
7590
7549
|
};
|
|
7591
7550
|
_proto.renderMobileExtend = function renderMobileExtend($container) {
|
|
7592
7551
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
|
7593
|
-
if (!this._ptzControl1) this._ptzControl1 = new distExports.MobilePtz($container, _extends$
|
|
7552
|
+
if (!this._ptzControl1) this._ptzControl1 = new distExports.MobilePtz($container, _extends$c({}, this._options, {
|
|
7594
7553
|
onSpeedChange: this._onSpeedChange.bind(this),
|
|
7595
7554
|
onDirection: this._onDirection.bind(this)
|
|
7596
7555
|
}));
|
|
@@ -7693,8 +7652,8 @@ function _create_class$3(Constructor, protoProps, staticProps) {
|
|
|
7693
7652
|
if (protoProps) _defineProperties$3(Constructor.prototype, protoProps);
|
|
7694
7653
|
return Constructor;
|
|
7695
7654
|
}
|
|
7696
|
-
function _extends$
|
|
7697
|
-
_extends$
|
|
7655
|
+
function _extends$b() {
|
|
7656
|
+
_extends$b = Object.assign || function(target) {
|
|
7698
7657
|
for(var i = 1; i < arguments.length; i++){
|
|
7699
7658
|
var source = arguments[i];
|
|
7700
7659
|
for(var key in source){
|
|
@@ -7705,9 +7664,9 @@ function _extends$c() {
|
|
|
7705
7664
|
}
|
|
7706
7665
|
return target;
|
|
7707
7666
|
};
|
|
7708
|
-
return _extends$
|
|
7667
|
+
return _extends$b.apply(this, arguments);
|
|
7709
7668
|
}
|
|
7710
|
-
function _inherits$
|
|
7669
|
+
function _inherits$c(subClass, superClass) {
|
|
7711
7670
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
7712
7671
|
throw new TypeError("Super expression must either be null or a function");
|
|
7713
7672
|
}
|
|
@@ -7718,14 +7677,14 @@ function _inherits$d(subClass, superClass) {
|
|
|
7718
7677
|
configurable: true
|
|
7719
7678
|
}
|
|
7720
7679
|
});
|
|
7721
|
-
if (superClass) _set_prototype_of$
|
|
7680
|
+
if (superClass) _set_prototype_of$c(subClass, superClass);
|
|
7722
7681
|
}
|
|
7723
|
-
function _set_prototype_of$
|
|
7724
|
-
_set_prototype_of$
|
|
7682
|
+
function _set_prototype_of$c(o, p) {
|
|
7683
|
+
_set_prototype_of$c = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
7725
7684
|
o.__proto__ = p;
|
|
7726
7685
|
return o;
|
|
7727
7686
|
};
|
|
7728
|
-
return _set_prototype_of$
|
|
7687
|
+
return _set_prototype_of$c(o, p);
|
|
7729
7688
|
}
|
|
7730
7689
|
var RECORD_DEFAULT_OPTIONS = {
|
|
7731
7690
|
maxDuration: 3600
|
|
@@ -7739,10 +7698,10 @@ var RECORD_DEFAULT_OPTIONS = {
|
|
|
7739
7698
|
* 2. 录制时间很短可能会因为浏览器的限制或没有I帧而无法生成有效的视频文件
|
|
7740
7699
|
* @category Control
|
|
7741
7700
|
*/ var Record = /*#__PURE__*/ function(Control) {
|
|
7742
|
-
_inherits$
|
|
7701
|
+
_inherits$c(Record, Control);
|
|
7743
7702
|
function Record(options) {
|
|
7744
7703
|
var _this;
|
|
7745
|
-
_this = Control.call(this, _extends$
|
|
7704
|
+
_this = Control.call(this, _extends$b({}, options, {
|
|
7746
7705
|
tagName: 'span',
|
|
7747
7706
|
controlType: 'button',
|
|
7748
7707
|
classNameSuffix: 'record'
|
|
@@ -7841,7 +7800,7 @@ var RECORD_DEFAULT_OPTIONS = {
|
|
|
7841
7800
|
return Record;
|
|
7842
7801
|
}(Control);
|
|
7843
7802
|
|
|
7844
|
-
function asyncGeneratorStep$
|
|
7803
|
+
function asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, key, arg) {
|
|
7845
7804
|
try {
|
|
7846
7805
|
var info = gen[key](arg);
|
|
7847
7806
|
var value = info.value;
|
|
@@ -7855,16 +7814,16 @@ function asyncGeneratorStep$4(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
7855
7814
|
Promise.resolve(value).then(_next, _throw);
|
|
7856
7815
|
}
|
|
7857
7816
|
}
|
|
7858
|
-
function _async_to_generator$
|
|
7817
|
+
function _async_to_generator$3(fn) {
|
|
7859
7818
|
return function() {
|
|
7860
7819
|
var self = this, args = arguments;
|
|
7861
7820
|
return new Promise(function(resolve, reject) {
|
|
7862
7821
|
var gen = fn.apply(self, args);
|
|
7863
7822
|
function _next(value) {
|
|
7864
|
-
asyncGeneratorStep$
|
|
7823
|
+
asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, "next", value);
|
|
7865
7824
|
}
|
|
7866
7825
|
function _throw(err) {
|
|
7867
|
-
asyncGeneratorStep$
|
|
7826
|
+
asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, "throw", err);
|
|
7868
7827
|
}
|
|
7869
7828
|
_next(undefined);
|
|
7870
7829
|
});
|
|
@@ -7883,8 +7842,8 @@ function _create_class$2(Constructor, protoProps, staticProps) {
|
|
|
7883
7842
|
if (protoProps) _defineProperties$2(Constructor.prototype, protoProps);
|
|
7884
7843
|
return Constructor;
|
|
7885
7844
|
}
|
|
7886
|
-
function _extends$
|
|
7887
|
-
_extends$
|
|
7845
|
+
function _extends$a() {
|
|
7846
|
+
_extends$a = Object.assign || function(target) {
|
|
7888
7847
|
for(var i = 1; i < arguments.length; i++){
|
|
7889
7848
|
var source = arguments[i];
|
|
7890
7849
|
for(var key in source){
|
|
@@ -7895,9 +7854,9 @@ function _extends$b() {
|
|
|
7895
7854
|
}
|
|
7896
7855
|
return target;
|
|
7897
7856
|
};
|
|
7898
|
-
return _extends$
|
|
7857
|
+
return _extends$a.apply(this, arguments);
|
|
7899
7858
|
}
|
|
7900
|
-
function _inherits$
|
|
7859
|
+
function _inherits$b(subClass, superClass) {
|
|
7901
7860
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
7902
7861
|
throw new TypeError("Super expression must either be null or a function");
|
|
7903
7862
|
}
|
|
@@ -7908,16 +7867,16 @@ function _inherits$c(subClass, superClass) {
|
|
|
7908
7867
|
configurable: true
|
|
7909
7868
|
}
|
|
7910
7869
|
});
|
|
7911
|
-
if (superClass) _set_prototype_of$
|
|
7870
|
+
if (superClass) _set_prototype_of$b(subClass, superClass);
|
|
7912
7871
|
}
|
|
7913
|
-
function _set_prototype_of$
|
|
7914
|
-
_set_prototype_of$
|
|
7872
|
+
function _set_prototype_of$b(o, p) {
|
|
7873
|
+
_set_prototype_of$b = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
7915
7874
|
o.__proto__ = p;
|
|
7916
7875
|
return o;
|
|
7917
7876
|
};
|
|
7918
|
-
return _set_prototype_of$
|
|
7877
|
+
return _set_prototype_of$b(o, p);
|
|
7919
7878
|
}
|
|
7920
|
-
function _ts_generator$
|
|
7879
|
+
function _ts_generator$3(thisArg, body) {
|
|
7921
7880
|
var f, y, t, _ = {
|
|
7922
7881
|
label: 0,
|
|
7923
7882
|
sent: function() {
|
|
@@ -8017,10 +7976,10 @@ function _ts_generator$4(thisArg, body) {
|
|
|
8017
7976
|
*
|
|
8018
7977
|
* @category Control
|
|
8019
7978
|
*/ var Talk = /*#__PURE__*/ function(Control) {
|
|
8020
|
-
_inherits$
|
|
7979
|
+
_inherits$b(Talk, Control);
|
|
8021
7980
|
function Talk(options) {
|
|
8022
7981
|
var _this;
|
|
8023
|
-
_this = Control.call(this, _extends$
|
|
7982
|
+
_this = Control.call(this, _extends$a({}, options, {
|
|
8024
7983
|
tagName: 'span',
|
|
8025
7984
|
controlType: 'button',
|
|
8026
7985
|
classNameSuffix: 'talk'
|
|
@@ -8072,8 +8031,8 @@ function _ts_generator$4(thisArg, body) {
|
|
|
8072
8031
|
var _this = this, _superprop_get__onControlClick = function() {
|
|
8073
8032
|
return Control.prototype._onControlClick;
|
|
8074
8033
|
};
|
|
8075
|
-
return _async_to_generator$
|
|
8076
|
-
return _ts_generator$
|
|
8034
|
+
return _async_to_generator$3(function() {
|
|
8035
|
+
return _ts_generator$3(this, function(_state) {
|
|
8077
8036
|
_superprop_get__onControlClick().call(_this, e);
|
|
8078
8037
|
this.active = !this.active;
|
|
8079
8038
|
this.emit(EVENTS.control.talkingChange, this.active);
|
|
@@ -8124,231 +8083,6 @@ function _ts_generator$4(thisArg, body) {
|
|
|
8124
8083
|
return Talk;
|
|
8125
8084
|
}(Control);
|
|
8126
8085
|
|
|
8127
|
-
function asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, key, arg) {
|
|
8128
|
-
try {
|
|
8129
|
-
var info = gen[key](arg);
|
|
8130
|
-
var value = info.value;
|
|
8131
|
-
} catch (error) {
|
|
8132
|
-
reject(error);
|
|
8133
|
-
return;
|
|
8134
|
-
}
|
|
8135
|
-
if (info.done) {
|
|
8136
|
-
resolve(value);
|
|
8137
|
-
} else {
|
|
8138
|
-
Promise.resolve(value).then(_next, _throw);
|
|
8139
|
-
}
|
|
8140
|
-
}
|
|
8141
|
-
function _async_to_generator$3(fn) {
|
|
8142
|
-
return function() {
|
|
8143
|
-
var self = this, args = arguments;
|
|
8144
|
-
return new Promise(function(resolve, reject) {
|
|
8145
|
-
var gen = fn.apply(self, args);
|
|
8146
|
-
function _next(value) {
|
|
8147
|
-
asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, "next", value);
|
|
8148
|
-
}
|
|
8149
|
-
function _throw(err) {
|
|
8150
|
-
asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, "throw", err);
|
|
8151
|
-
}
|
|
8152
|
-
_next(undefined);
|
|
8153
|
-
});
|
|
8154
|
-
};
|
|
8155
|
-
}
|
|
8156
|
-
function _extends$a() {
|
|
8157
|
-
_extends$a = Object.assign || function(target) {
|
|
8158
|
-
for(var i = 1; i < arguments.length; i++){
|
|
8159
|
-
var source = arguments[i];
|
|
8160
|
-
for(var key in source){
|
|
8161
|
-
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
8162
|
-
target[key] = source[key];
|
|
8163
|
-
}
|
|
8164
|
-
}
|
|
8165
|
-
}
|
|
8166
|
-
return target;
|
|
8167
|
-
};
|
|
8168
|
-
return _extends$a.apply(this, arguments);
|
|
8169
|
-
}
|
|
8170
|
-
function _inherits$b(subClass, superClass) {
|
|
8171
|
-
if (typeof superClass !== "function" && superClass !== null) {
|
|
8172
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
8173
|
-
}
|
|
8174
|
-
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
8175
|
-
constructor: {
|
|
8176
|
-
value: subClass,
|
|
8177
|
-
writable: true,
|
|
8178
|
-
configurable: true
|
|
8179
|
-
}
|
|
8180
|
-
});
|
|
8181
|
-
if (superClass) _set_prototype_of$b(subClass, superClass);
|
|
8182
|
-
}
|
|
8183
|
-
function _set_prototype_of$b(o, p) {
|
|
8184
|
-
_set_prototype_of$b = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
8185
|
-
o.__proto__ = p;
|
|
8186
|
-
return o;
|
|
8187
|
-
};
|
|
8188
|
-
return _set_prototype_of$b(o, p);
|
|
8189
|
-
}
|
|
8190
|
-
function _ts_generator$3(thisArg, body) {
|
|
8191
|
-
var f, y, t, _ = {
|
|
8192
|
-
label: 0,
|
|
8193
|
-
sent: function() {
|
|
8194
|
-
if (t[0] & 1) throw t[1];
|
|
8195
|
-
return t[1];
|
|
8196
|
-
},
|
|
8197
|
-
trys: [],
|
|
8198
|
-
ops: []
|
|
8199
|
-
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
8200
|
-
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
8201
|
-
return this;
|
|
8202
|
-
}), g;
|
|
8203
|
-
function verb(n) {
|
|
8204
|
-
return function(v) {
|
|
8205
|
-
return step([
|
|
8206
|
-
n,
|
|
8207
|
-
v
|
|
8208
|
-
]);
|
|
8209
|
-
};
|
|
8210
|
-
}
|
|
8211
|
-
function step(op) {
|
|
8212
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
8213
|
-
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
8214
|
-
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;
|
|
8215
|
-
if (y = 0, t) op = [
|
|
8216
|
-
op[0] & 2,
|
|
8217
|
-
t.value
|
|
8218
|
-
];
|
|
8219
|
-
switch(op[0]){
|
|
8220
|
-
case 0:
|
|
8221
|
-
case 1:
|
|
8222
|
-
t = op;
|
|
8223
|
-
break;
|
|
8224
|
-
case 4:
|
|
8225
|
-
_.label++;
|
|
8226
|
-
return {
|
|
8227
|
-
value: op[1],
|
|
8228
|
-
done: false
|
|
8229
|
-
};
|
|
8230
|
-
case 5:
|
|
8231
|
-
_.label++;
|
|
8232
|
-
y = op[1];
|
|
8233
|
-
op = [
|
|
8234
|
-
0
|
|
8235
|
-
];
|
|
8236
|
-
continue;
|
|
8237
|
-
case 7:
|
|
8238
|
-
op = _.ops.pop();
|
|
8239
|
-
_.trys.pop();
|
|
8240
|
-
continue;
|
|
8241
|
-
default:
|
|
8242
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
8243
|
-
_ = 0;
|
|
8244
|
-
continue;
|
|
8245
|
-
}
|
|
8246
|
-
if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
|
|
8247
|
-
_.label = op[1];
|
|
8248
|
-
break;
|
|
8249
|
-
}
|
|
8250
|
-
if (op[0] === 6 && _.label < t[1]) {
|
|
8251
|
-
_.label = t[1];
|
|
8252
|
-
t = op;
|
|
8253
|
-
break;
|
|
8254
|
-
}
|
|
8255
|
-
if (t && _.label < t[2]) {
|
|
8256
|
-
_.label = t[2];
|
|
8257
|
-
_.ops.push(op);
|
|
8258
|
-
break;
|
|
8259
|
-
}
|
|
8260
|
-
if (t[2]) _.ops.pop();
|
|
8261
|
-
_.trys.pop();
|
|
8262
|
-
continue;
|
|
8263
|
-
}
|
|
8264
|
-
op = body.call(thisArg, _);
|
|
8265
|
-
} catch (e) {
|
|
8266
|
-
op = [
|
|
8267
|
-
6,
|
|
8268
|
-
e
|
|
8269
|
-
];
|
|
8270
|
-
y = 0;
|
|
8271
|
-
} finally{
|
|
8272
|
-
f = t = 0;
|
|
8273
|
-
}
|
|
8274
|
-
if (op[0] & 5) throw op[1];
|
|
8275
|
-
return {
|
|
8276
|
-
value: op[0] ? op[1] : void 0,
|
|
8277
|
-
done: true
|
|
8278
|
-
};
|
|
8279
|
-
}
|
|
8280
|
-
}
|
|
8281
|
-
/**
|
|
8282
|
-
* 语音广播控件
|
|
8283
|
-
*
|
|
8284
|
-
* 用于触发语音广播功能的按钮控件
|
|
8285
|
-
*
|
|
8286
|
-
* @category Control
|
|
8287
|
-
*/ var Broadcast = /*#__PURE__*/ function(Control) {
|
|
8288
|
-
_inherits$b(Broadcast, Control);
|
|
8289
|
-
function Broadcast(options) {
|
|
8290
|
-
var _this;
|
|
8291
|
-
_this = Control.call(this, _extends$a({}, options, {
|
|
8292
|
-
tagName: 'span',
|
|
8293
|
-
controlType: 'button',
|
|
8294
|
-
classNameSuffix: 'broadcast'
|
|
8295
|
-
})) || this;
|
|
8296
|
-
_this._options = options;
|
|
8297
|
-
_this._render();
|
|
8298
|
-
_this.on(EVENTS.broadcastChange, function(active) {
|
|
8299
|
-
if (_this.active !== active) {
|
|
8300
|
-
_this.active = active;
|
|
8301
|
-
_this._render();
|
|
8302
|
-
}
|
|
8303
|
-
});
|
|
8304
|
-
return _this;
|
|
8305
|
-
}
|
|
8306
|
-
var _proto = Broadcast.prototype;
|
|
8307
|
-
_proto._render = function _render() {
|
|
8308
|
-
var _this_locale;
|
|
8309
|
-
this.$container.innerHTML = IconComponents.broadcast({
|
|
8310
|
-
title: (_this_locale = this.locale) == null ? void 0 : _this_locale.BTN_BROADCAST
|
|
8311
|
-
});
|
|
8312
|
-
};
|
|
8313
|
-
_proto.reset = function reset(hide) {
|
|
8314
|
-
if (this.active) {
|
|
8315
|
-
this.active = false;
|
|
8316
|
-
this._render();
|
|
8317
|
-
this.emit(EVENTS.control.broadcastChange, false);
|
|
8318
|
-
Control.prototype.reset.call(this, hide);
|
|
8319
|
-
}
|
|
8320
|
-
};
|
|
8321
|
-
/**
|
|
8322
|
-
* 销毁语音广播控件
|
|
8323
|
-
*/ _proto.destroy = function destroy() {
|
|
8324
|
-
if (this.active) {
|
|
8325
|
-
this.reset();
|
|
8326
|
-
}
|
|
8327
|
-
Control.prototype.destroy.call(this);
|
|
8328
|
-
};
|
|
8329
|
-
/**
|
|
8330
|
-
* 点击 Control 会触发
|
|
8331
|
-
*/ _proto._onControlClick = function _onControlClick(e) {
|
|
8332
|
-
var _this = this, _superprop_get__onControlClick = function() {
|
|
8333
|
-
return Control.prototype._onControlClick;
|
|
8334
|
-
};
|
|
8335
|
-
return _async_to_generator$3(function() {
|
|
8336
|
-
var _this__options_onChange, _this__options;
|
|
8337
|
-
return _ts_generator$3(this, function(_state) {
|
|
8338
|
-
_superprop_get__onControlClick().call(_this, e);
|
|
8339
|
-
this.active = !this.active;
|
|
8340
|
-
this.emit(EVENTS.control.broadcastChange, this.active);
|
|
8341
|
-
(_this__options = this._options) == null ? void 0 : (_this__options_onChange = _this__options.onChange) == null ? void 0 : _this__options_onChange.call(_this__options, this.active);
|
|
8342
|
-
this._render();
|
|
8343
|
-
return [
|
|
8344
|
-
2
|
|
8345
|
-
];
|
|
8346
|
-
});
|
|
8347
|
-
}).call(this);
|
|
8348
|
-
};
|
|
8349
|
-
return Broadcast;
|
|
8350
|
-
}(Control);
|
|
8351
|
-
|
|
8352
8086
|
function asyncGeneratorStep$2(gen, resolve, reject, _next, _throw, key, arg) {
|
|
8353
8087
|
try {
|
|
8354
8088
|
var info = gen[key](arg);
|
|
@@ -8504,23 +8238,23 @@ function _ts_generator$2(thisArg, body) {
|
|
|
8504
8238
|
}
|
|
8505
8239
|
}
|
|
8506
8240
|
/**
|
|
8507
|
-
*
|
|
8241
|
+
* 语音广播控件
|
|
8508
8242
|
*
|
|
8509
|
-
*
|
|
8243
|
+
* 用于触发语音广播功能的按钮控件
|
|
8510
8244
|
*
|
|
8511
8245
|
* @category Control
|
|
8512
|
-
*/ var
|
|
8513
|
-
_inherits$a(
|
|
8514
|
-
function
|
|
8246
|
+
*/ var Broadcast = /*#__PURE__*/ function(Control) {
|
|
8247
|
+
_inherits$a(Broadcast, Control);
|
|
8248
|
+
function Broadcast(options) {
|
|
8515
8249
|
var _this;
|
|
8516
8250
|
_this = Control.call(this, _extends$9({}, options, {
|
|
8517
8251
|
tagName: 'span',
|
|
8518
8252
|
controlType: 'button',
|
|
8519
|
-
classNameSuffix: '
|
|
8253
|
+
classNameSuffix: 'broadcast'
|
|
8520
8254
|
})) || this;
|
|
8521
8255
|
_this._options = options;
|
|
8522
8256
|
_this._render();
|
|
8523
|
-
_this.on(EVENTS.
|
|
8257
|
+
_this.on(EVENTS.broadcastChange, function(active) {
|
|
8524
8258
|
if (_this.active !== active) {
|
|
8525
8259
|
_this.active = active;
|
|
8526
8260
|
_this._render();
|
|
@@ -8528,23 +8262,23 @@ function _ts_generator$2(thisArg, body) {
|
|
|
8528
8262
|
});
|
|
8529
8263
|
return _this;
|
|
8530
8264
|
}
|
|
8531
|
-
var _proto =
|
|
8265
|
+
var _proto = Broadcast.prototype;
|
|
8532
8266
|
_proto._render = function _render() {
|
|
8533
8267
|
var _this_locale;
|
|
8534
|
-
this.$container.innerHTML = IconComponents.
|
|
8535
|
-
title: (_this_locale = this.locale) == null ? void 0 : _this_locale.
|
|
8268
|
+
this.$container.innerHTML = IconComponents.broadcast({
|
|
8269
|
+
title: (_this_locale = this.locale) == null ? void 0 : _this_locale.BTN_BROADCAST
|
|
8536
8270
|
});
|
|
8537
8271
|
};
|
|
8538
8272
|
_proto.reset = function reset(hide) {
|
|
8539
8273
|
if (this.active) {
|
|
8540
8274
|
this.active = false;
|
|
8541
8275
|
this._render();
|
|
8542
|
-
this.emit(EVENTS.control.
|
|
8276
|
+
this.emit(EVENTS.control.broadcastChange, false);
|
|
8543
8277
|
Control.prototype.reset.call(this, hide);
|
|
8544
8278
|
}
|
|
8545
8279
|
};
|
|
8546
8280
|
/**
|
|
8547
|
-
*
|
|
8281
|
+
* 销毁语音广播控件
|
|
8548
8282
|
*/ _proto.destroy = function destroy() {
|
|
8549
8283
|
if (this.active) {
|
|
8550
8284
|
this.reset();
|
|
@@ -8562,7 +8296,7 @@ function _ts_generator$2(thisArg, body) {
|
|
|
8562
8296
|
return _ts_generator$2(this, function(_state) {
|
|
8563
8297
|
_superprop_get__onControlClick().call(_this, e);
|
|
8564
8298
|
this.active = !this.active;
|
|
8565
|
-
this.emit(EVENTS.control.
|
|
8299
|
+
this.emit(EVENTS.control.broadcastChange, this.active);
|
|
8566
8300
|
(_this__options = this._options) == null ? void 0 : (_this__options_onChange = _this__options.onChange) == null ? void 0 : _this__options_onChange.call(_this__options, this.active);
|
|
8567
8301
|
this._render();
|
|
8568
8302
|
return [
|
|
@@ -8571,7 +8305,7 @@ function _ts_generator$2(thisArg, body) {
|
|
|
8571
8305
|
});
|
|
8572
8306
|
}).call(this);
|
|
8573
8307
|
};
|
|
8574
|
-
return
|
|
8308
|
+
return Broadcast;
|
|
8575
8309
|
}(Control);
|
|
8576
8310
|
|
|
8577
8311
|
function _defineProperties$1(target, props) {
|
|
@@ -9565,7 +9299,6 @@ var Controls = {
|
|
|
9565
9299
|
record: Record,
|
|
9566
9300
|
talk: Talk,
|
|
9567
9301
|
broadcast: Broadcast,
|
|
9568
|
-
aiChat: AIChat,
|
|
9569
9302
|
zoom: Zoom$1,
|
|
9570
9303
|
definition: Definition,
|
|
9571
9304
|
fullscreen: Fullscreen,
|
|
@@ -11948,7 +11681,7 @@ var THEME_DEFAULT_OPTIONS = {
|
|
|
11948
11681
|
zh: zh,
|
|
11949
11682
|
en: en
|
|
11950
11683
|
};
|
|
11951
|
-
/** 版本号 @since 0.0.1 */ Theme.THEME_VERSION = '2.1.
|
|
11684
|
+
/** 版本号 @since 0.0.1 */ Theme.THEME_VERSION = '2.1.2-beta.1';
|
|
11952
11685
|
|
|
11953
11686
|
exports.Control = Control;
|
|
11954
11687
|
exports.EVENTS = EVENTS;
|