@x-edu/live-player 0.0.25 → 0.0.26
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/XEduLivePlayer.common.js +602 -79
- package/dist/XEduLivePlayerPre.common.js +1077 -915
- package/package.json +1 -1
- package/src/list/ListItem/Action/index.jsx +4 -4
- package/src/list/ListItem/index.jsx +14 -25
- package/src/list/index.jsx +544 -7
|
@@ -29265,7 +29265,7 @@ var api = generateCommonAPIWithUC({
|
|
|
29265
29265
|
prefix: ''
|
|
29266
29266
|
}, true);
|
|
29267
29267
|
/* harmony default export */ var live_activity = (api);
|
|
29268
|
-
var
|
|
29268
|
+
var live_activity_proxyApi = generateCommonAPI({
|
|
29269
29269
|
hostKey: 'x-proxy',
|
|
29270
29270
|
prefix: '/proxy/live'
|
|
29271
29271
|
});
|
|
@@ -30082,7 +30082,7 @@ function _getOpenClassWithCache() {
|
|
|
30082
30082
|
return live_regeneratorRuntime().wrap(function _callee12$(_context12) {
|
|
30083
30083
|
while (1) switch (_context12.prev = _context12.next) {
|
|
30084
30084
|
case 0:
|
|
30085
|
-
fullUrl = "".concat(window.location.protocol).concat(
|
|
30085
|
+
fullUrl = "".concat(window.location.protocol).concat(live_activity_proxyApi.defaults.baseURL).concat(url);
|
|
30086
30086
|
_context12.next = 3;
|
|
30087
30087
|
return getLiveAPICache();
|
|
30088
30088
|
case 3:
|
|
@@ -30109,7 +30109,7 @@ function _getOpenClassWithCache() {
|
|
|
30109
30109
|
console.error('getOpenClassWithCache parse error', _context12.t0);
|
|
30110
30110
|
case 14:
|
|
30111
30111
|
_context12.next = 16;
|
|
30112
|
-
return
|
|
30112
|
+
return live_activity_proxyApi.get(url);
|
|
30113
30113
|
case 16:
|
|
30114
30114
|
result = _context12.sent;
|
|
30115
30115
|
if (!result.headers.date) {
|
|
@@ -37736,13 +37736,17 @@ function get_get(entity, path) {
|
|
|
37736
37736
|
}
|
|
37737
37737
|
return current;
|
|
37738
37738
|
}
|
|
37739
|
+
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js
|
|
37740
|
+
function esm_arrayWithHoles_arrayWithHoles(arr) {
|
|
37741
|
+
if (Array.isArray(arr)) return arr;
|
|
37742
|
+
}
|
|
37739
37743
|
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/toArray.js
|
|
37740
37744
|
|
|
37741
37745
|
|
|
37742
37746
|
|
|
37743
37747
|
|
|
37744
37748
|
function _toArray(arr) {
|
|
37745
|
-
return
|
|
37749
|
+
return esm_arrayWithHoles_arrayWithHoles(arr) || _iterableToArray(arr) || unsupportedIterableToArray_unsupportedIterableToArray(arr) || nonIterableRest_nonIterableRest();
|
|
37746
37750
|
}
|
|
37747
37751
|
;// CONCATENATED MODULE: ./node_modules/rc-util/es/utils/set.js
|
|
37748
37752
|
|
|
@@ -37761,9 +37765,9 @@ function internalSet(entity, paths, value, removeIfUndefined) {
|
|
|
37761
37765
|
if (!entity && typeof path === 'number') {
|
|
37762
37766
|
clone = [];
|
|
37763
37767
|
} else if (Array.isArray(entity)) {
|
|
37764
|
-
clone =
|
|
37768
|
+
clone = toConsumableArray_toConsumableArray(entity);
|
|
37765
37769
|
} else {
|
|
37766
|
-
clone =
|
|
37770
|
+
clone = _objectSpread2({}, entity);
|
|
37767
37771
|
}
|
|
37768
37772
|
|
|
37769
37773
|
// Delete prop if `removeIfUndefined` and value is undefined
|
|
@@ -39099,10 +39103,6 @@ var List = function List(_ref) {
|
|
|
39099
39103
|
};
|
|
39100
39104
|
|
|
39101
39105
|
/* harmony default export */ var es_List = (List);
|
|
39102
|
-
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js
|
|
39103
|
-
function esm_arrayWithHoles_arrayWithHoles(arr) {
|
|
39104
|
-
if (Array.isArray(arr)) return arr;
|
|
39105
|
-
}
|
|
39106
39106
|
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js
|
|
39107
39107
|
function esm_iterableToArrayLimit_iterableToArrayLimit(r, l) {
|
|
39108
39108
|
var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
|
@@ -40493,14 +40493,14 @@ LocaleProvider.defaultProps = {
|
|
|
40493
40493
|
|
|
40494
40494
|
|
|
40495
40495
|
var Notice = /*#__PURE__*/function (_Component) {
|
|
40496
|
-
|
|
40496
|
+
_inherits(Notice, _Component);
|
|
40497
40497
|
|
|
40498
|
-
var _super =
|
|
40498
|
+
var _super = _createSuper(Notice);
|
|
40499
40499
|
|
|
40500
40500
|
function Notice() {
|
|
40501
40501
|
var _this;
|
|
40502
40502
|
|
|
40503
|
-
|
|
40503
|
+
_classCallCheck(this, Notice);
|
|
40504
40504
|
|
|
40505
40505
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
40506
40506
|
args[_key] = arguments[_key];
|
|
@@ -40543,7 +40543,7 @@ var Notice = /*#__PURE__*/function (_Component) {
|
|
|
40543
40543
|
return _this;
|
|
40544
40544
|
}
|
|
40545
40545
|
|
|
40546
|
-
|
|
40546
|
+
_createClass(Notice, [{
|
|
40547
40547
|
key: "componentDidMount",
|
|
40548
40548
|
value: function componentDidMount() {
|
|
40549
40549
|
this.startCloseTimer();
|
|
@@ -40589,8 +40589,8 @@ var Notice = /*#__PURE__*/function (_Component) {
|
|
|
40589
40589
|
|
|
40590
40590
|
return acc;
|
|
40591
40591
|
}, {});
|
|
40592
|
-
var node = /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_namespaceObject.createElement("div",
|
|
40593
|
-
className: classnames_default()(componentClass, className,
|
|
40592
|
+
var node = /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_namespaceObject.createElement("div", extends_extends({
|
|
40593
|
+
className: classnames_default()(componentClass, className, _defineProperty({}, "".concat(componentClass, "-closable"), closable)),
|
|
40594
40594
|
style: style,
|
|
40595
40595
|
onMouseEnter: this.clearCloseTimer,
|
|
40596
40596
|
onMouseLeave: this.startCloseTimer,
|
|
@@ -40692,14 +40692,14 @@ function getUuid() {
|
|
|
40692
40692
|
}
|
|
40693
40693
|
|
|
40694
40694
|
var Notification = /*#__PURE__*/function (_Component) {
|
|
40695
|
-
|
|
40695
|
+
_inherits(Notification, _Component);
|
|
40696
40696
|
|
|
40697
|
-
var _super =
|
|
40697
|
+
var _super = _createSuper(Notification);
|
|
40698
40698
|
|
|
40699
40699
|
function Notification() {
|
|
40700
40700
|
var _this;
|
|
40701
40701
|
|
|
40702
|
-
|
|
40702
|
+
_classCallCheck(this, Notification);
|
|
40703
40703
|
|
|
40704
40704
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
40705
40705
|
args[_key] = arguments[_key];
|
|
@@ -40714,7 +40714,7 @@ var Notification = /*#__PURE__*/function (_Component) {
|
|
|
40714
40714
|
_this.add = function (originNotice, holderCallback) {
|
|
40715
40715
|
var key = originNotice.key || getUuid();
|
|
40716
40716
|
|
|
40717
|
-
var notice =
|
|
40717
|
+
var notice = _objectSpread2(_objectSpread2({}, originNotice), {}, {
|
|
40718
40718
|
key: key
|
|
40719
40719
|
});
|
|
40720
40720
|
|
|
@@ -40781,7 +40781,7 @@ var Notification = /*#__PURE__*/function (_Component) {
|
|
|
40781
40781
|
return _this;
|
|
40782
40782
|
}
|
|
40783
40783
|
|
|
40784
|
-
|
|
40784
|
+
_createClass(Notification, [{
|
|
40785
40785
|
key: "getTransitionName",
|
|
40786
40786
|
value: function getTransitionName() {
|
|
40787
40787
|
var _this$props = this.props,
|
|
@@ -40814,7 +40814,7 @@ var Notification = /*#__PURE__*/function (_Component) {
|
|
|
40814
40814
|
var key = notice.key,
|
|
40815
40815
|
userPassKey = notice.userPassKey;
|
|
40816
40816
|
|
|
40817
|
-
var noticeProps =
|
|
40817
|
+
var noticeProps = _objectSpread2(_objectSpread2(_objectSpread2({
|
|
40818
40818
|
prefixCls: prefixCls,
|
|
40819
40819
|
closeIcon: closeIcon
|
|
40820
40820
|
}, notice), notice.props), {}, {
|
|
@@ -40865,7 +40865,7 @@ var Notification = /*#__PURE__*/function (_Component) {
|
|
|
40865
40865
|
return /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_namespaceObject.createElement("div", {
|
|
40866
40866
|
key: key,
|
|
40867
40867
|
className: classnames_default()(motionClassName, "".concat(prefixCls, "-hook-holder")),
|
|
40868
|
-
style:
|
|
40868
|
+
style: _objectSpread2({}, motionStyle),
|
|
40869
40869
|
ref: function ref(div) {
|
|
40870
40870
|
if (typeof key === 'undefined') {
|
|
40871
40871
|
return;
|
|
@@ -40882,9 +40882,9 @@ var Notification = /*#__PURE__*/function (_Component) {
|
|
|
40882
40882
|
});
|
|
40883
40883
|
}
|
|
40884
40884
|
|
|
40885
|
-
return /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_namespaceObject.createElement(Notice,
|
|
40885
|
+
return /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_namespaceObject.createElement(Notice, extends_extends({}, noticeProps, {
|
|
40886
40886
|
className: classnames_default()(motionClassName, noticeProps === null || noticeProps === void 0 ? void 0 : noticeProps.className),
|
|
40887
|
-
style:
|
|
40887
|
+
style: _objectSpread2(_objectSpread2({}, motionStyle), noticeProps === null || noticeProps === void 0 ? void 0 : noticeProps.style),
|
|
40888
40888
|
visible: visible
|
|
40889
40889
|
}));
|
|
40890
40890
|
}));
|
|
@@ -40907,7 +40907,7 @@ Notification.defaultProps = {
|
|
|
40907
40907
|
Notification.newInstance = function newNotificationInstance(properties, callback) {
|
|
40908
40908
|
var _ref6 = properties || {},
|
|
40909
40909
|
getContainer = _ref6.getContainer,
|
|
40910
|
-
props =
|
|
40910
|
+
props = objectWithoutProperties_objectWithoutProperties(_ref6, ["getContainer"]);
|
|
40911
40911
|
|
|
40912
40912
|
var div = document.createElement('div');
|
|
40913
40913
|
|
|
@@ -40951,7 +40951,7 @@ Notification.newInstance = function newNotificationInstance(properties, callback
|
|
|
40951
40951
|
|
|
40952
40952
|
if (false) {}
|
|
40953
40953
|
|
|
40954
|
-
external_commonjs_react_dom_commonjs2_react_dom_root_ReactDOM_default().render( /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_namespaceObject.createElement(Notification,
|
|
40954
|
+
external_commonjs_react_dom_commonjs2_react_dom_root_ReactDOM_default().render( /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_namespaceObject.createElement(Notification, extends_extends({}, props, {
|
|
40955
40955
|
ref: ref
|
|
40956
40956
|
})), div);
|
|
40957
40957
|
};
|
|
@@ -45462,6 +45462,14 @@ var TransBtn = function TransBtn(_ref) {
|
|
|
45462
45462
|
};
|
|
45463
45463
|
|
|
45464
45464
|
/* harmony default export */ var es_TransBtn = (TransBtn);
|
|
45465
|
+
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/toArray.js
|
|
45466
|
+
|
|
45467
|
+
|
|
45468
|
+
|
|
45469
|
+
|
|
45470
|
+
function toArray_toArray(arr) {
|
|
45471
|
+
return arrayWithHoles_arrayWithHoles(arr) || iterableToArray_iterableToArray(arr) || unsupportedIterableToArray_unsupportedIterableToArray(arr) || nonIterableRest_nonIterableRest();
|
|
45472
|
+
}
|
|
45465
45473
|
;// CONCATENATED MODULE: ./node_modules/rc-select/es/utils/commonUtil.js
|
|
45466
45474
|
|
|
45467
45475
|
function commonUtil_toArray(value) {
|
|
@@ -45809,7 +45817,7 @@ function getSeparatedContent(text, tokens) {
|
|
|
45809
45817
|
var match = false;
|
|
45810
45818
|
|
|
45811
45819
|
function separate(str, _ref7) {
|
|
45812
|
-
var _ref8 =
|
|
45820
|
+
var _ref8 = toArray_toArray(_ref7),
|
|
45813
45821
|
token = _ref8[0],
|
|
45814
45822
|
restTokens = _ref8.slice(1);
|
|
45815
45823
|
|
|
@@ -52298,7 +52306,7 @@ var InternalSelect = function InternalSelect(_a, ref) {
|
|
|
52298
52306
|
} // ===================== Icons =====================
|
|
52299
52307
|
|
|
52300
52308
|
|
|
52301
|
-
var _getIcons = getIcons(
|
|
52309
|
+
var _getIcons = getIcons(extends_extends(extends_extends({}, props), {
|
|
52302
52310
|
multiple: isMultiple,
|
|
52303
52311
|
prefixCls: prefixCls
|
|
52304
52312
|
})),
|
|
@@ -52308,10 +52316,10 @@ var InternalSelect = function InternalSelect(_a, ref) {
|
|
|
52308
52316
|
clearIcon = _getIcons.clearIcon;
|
|
52309
52317
|
|
|
52310
52318
|
var selectProps = omit(props, ['suffixIcon', 'itemIcon']);
|
|
52311
|
-
var rcSelectRtlDropDownClassName = classnames_default()(dropdownClassName,
|
|
52319
|
+
var rcSelectRtlDropDownClassName = classnames_default()(dropdownClassName, _defineProperty({}, "".concat(prefixCls, "-dropdown-").concat(direction), direction === 'rtl'));
|
|
52312
52320
|
var mergedSize = customizeSize || size;
|
|
52313
|
-
var mergedClassName = classnames_default()((_classNames2 = {},
|
|
52314
|
-
return /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_namespaceObject.createElement(rc_select_es,
|
|
52321
|
+
var mergedClassName = classnames_default()((_classNames2 = {}, _defineProperty(_classNames2, "".concat(prefixCls, "-lg"), mergedSize === 'large'), _defineProperty(_classNames2, "".concat(prefixCls, "-sm"), mergedSize === 'small'), _defineProperty(_classNames2, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _defineProperty(_classNames2, "".concat(prefixCls, "-borderless"), !bordered), _classNames2), className);
|
|
52322
|
+
return /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_namespaceObject.createElement(rc_select_es, extends_extends({
|
|
52315
52323
|
ref: ref,
|
|
52316
52324
|
virtual: virtual,
|
|
52317
52325
|
dropdownMatchSelectWidth: dropdownMatchSelectWidth
|
|
@@ -58025,11 +58033,11 @@ function tabs_Tabs(_a) {
|
|
|
58025
58033
|
var _classNames;
|
|
58026
58034
|
|
|
58027
58035
|
var size = propSize !== undefined ? propSize : contextSize;
|
|
58028
|
-
return /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_namespaceObject.createElement(rc_tabs_es,
|
|
58036
|
+
return /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_namespaceObject.createElement(rc_tabs_es, esm_extends_extends({
|
|
58029
58037
|
direction: direction,
|
|
58030
58038
|
moreTransitionName: "".concat(rootPrefixCls, "-slide-up")
|
|
58031
58039
|
}, props, {
|
|
58032
|
-
className: classnames_default()((_classNames = {},
|
|
58040
|
+
className: classnames_default()((_classNames = {}, defineProperty_defineProperty(_classNames, "".concat(prefixCls, "-").concat(size), size), defineProperty_defineProperty(_classNames, "".concat(prefixCls, "-card"), ['card', 'editable-card'].includes(type)), defineProperty_defineProperty(_classNames, "".concat(prefixCls, "-editable-card"), type === 'editable-card'), defineProperty_defineProperty(_classNames, "".concat(prefixCls, "-centered"), centered), _classNames), className),
|
|
58033
58041
|
editable: editable,
|
|
58034
58042
|
moreIcon: moreIcon,
|
|
58035
58043
|
prefixCls: prefixCls
|
|
@@ -59668,10 +59676,10 @@ function Action(_ref) {
|
|
|
59668
59676
|
// 如果超过了开播时间,不管有没有预约,都直接进入直播
|
|
59669
59677
|
var now = new Date().getTime();
|
|
59670
59678
|
var begin = new Date(beginTime).getTime();
|
|
59671
|
-
|
|
59672
|
-
|
|
59673
|
-
|
|
59674
|
-
|
|
59679
|
+
if (now > begin) {
|
|
59680
|
+
actionNum = 1;
|
|
59681
|
+
return actionNum;
|
|
59682
|
+
}
|
|
59675
59683
|
// 开播前15分钟,只提供进入直播按钮
|
|
59676
59684
|
if (begin > now && begin - now < 15 * 60 * 1000) {
|
|
59677
59685
|
actionNum = 1;
|
|
@@ -59943,24 +59951,13 @@ function ListItem(_ref) {
|
|
|
59943
59951
|
var liveId = data.live_id,
|
|
59944
59952
|
liveName = data.live_name,
|
|
59945
59953
|
beginTime = data.begin_time,
|
|
59946
|
-
|
|
59947
|
-
|
|
59948
|
-
var _useState = (0,external_commonjs_react_commonjs2_react_root_React_namespaceObject.useState)(
|
|
59949
|
-
|
|
59950
|
-
|
|
59951
|
-
|
|
59952
|
-
|
|
59953
|
-
return 1;
|
|
59954
|
-
}
|
|
59955
|
-
return 2;
|
|
59956
|
-
}),
|
|
59957
|
-
_useState2 = ListItem_slicedToArray(_useState, 1),
|
|
59958
|
-
status = _useState2[0];
|
|
59959
|
-
var _useState3 = (0,external_commonjs_react_commonjs2_react_root_React_namespaceObject.useState)({}),
|
|
59960
|
-
_useState4 = ListItem_slicedToArray(_useState3, 2),
|
|
59961
|
-
liveExt = _useState4[0],
|
|
59962
|
-
setLiveExt = _useState4[1];
|
|
59963
|
-
var _useState5 = (0,external_commonjs_react_commonjs2_react_root_React_namespaceObject.useState)(function () {
|
|
59954
|
+
coverUrl = data.cover_url,
|
|
59955
|
+
status = data.status;
|
|
59956
|
+
var _useState = (0,external_commonjs_react_commonjs2_react_root_React_namespaceObject.useState)({}),
|
|
59957
|
+
_useState2 = ListItem_slicedToArray(_useState, 2),
|
|
59958
|
+
liveExt = _useState2[0],
|
|
59959
|
+
setLiveExt = _useState2[1];
|
|
59960
|
+
var _useState3 = (0,external_commonjs_react_commonjs2_react_root_React_namespaceObject.useState)(function () {
|
|
59964
59961
|
if (status === 0) {
|
|
59965
59962
|
// 开播前15分钟之外
|
|
59966
59963
|
var subscriptionItem = (0,lodash.find)(subscription, {
|
|
@@ -59977,9 +59974,9 @@ function ListItem(_ref) {
|
|
|
59977
59974
|
return false;
|
|
59978
59975
|
}
|
|
59979
59976
|
}),
|
|
59980
|
-
|
|
59981
|
-
isSubscribe =
|
|
59982
|
-
setIsSubscribe =
|
|
59977
|
+
_useState4 = ListItem_slicedToArray(_useState3, 2),
|
|
59978
|
+
isSubscribe = _useState4[0],
|
|
59979
|
+
setIsSubscribe = _useState4[1];
|
|
59983
59980
|
(0,external_commonjs_react_commonjs2_react_root_React_namespaceObject.useEffect)(function () {
|
|
59984
59981
|
ListItem_asyncToGenerator( /*#__PURE__*/ListItem_regeneratorRuntime().mark(function _callee() {
|
|
59985
59982
|
var res;
|
|
@@ -60056,7 +60053,7 @@ function ListItem(_ref) {
|
|
|
60056
60053
|
}, /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_default().createElement("img", {
|
|
60057
60054
|
src: dianzan,
|
|
60058
60055
|
alt: ""
|
|
60059
|
-
}), formatLikesCount(liveExt.like_count || 0)))),
|
|
60056
|
+
}), formatLikesCount(liveExt.like_count || 0)))), /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_default().createElement(Action, {
|
|
60060
60057
|
data: data,
|
|
60061
60058
|
subscription: subscription,
|
|
60062
60059
|
onActionDetailClick: handleDetailClick,
|
|
@@ -60065,7 +60062,7 @@ function ListItem(_ref) {
|
|
|
60065
60062
|
onSubscribe: onSubscribe,
|
|
60066
60063
|
setIsSubscribe: setIsSubscribe,
|
|
60067
60064
|
status: status
|
|
60068
|
-
})
|
|
60065
|
+
}))), /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_default().createElement("div", {
|
|
60069
60066
|
className: list_ListItem_index_module.left
|
|
60070
60067
|
}, /*#__PURE__*/external_commonjs_react_commonjs2_react_root_React_default().createElement("div", {
|
|
60071
60068
|
className: classnames_default()(list_ListItem_index_module.tag, list_ListItem_index_module["tag".concat(status)])
|
|
@@ -60212,36 +60209,562 @@ function PublicLiveList(_ref) {
|
|
|
60212
60209
|
while (1) switch (_context.prev = _context.next) {
|
|
60213
60210
|
case 0:
|
|
60214
60211
|
setLoading(true);
|
|
60215
|
-
|
|
60216
|
-
|
|
60217
|
-
|
|
60218
|
-
|
|
60219
|
-
|
|
60220
|
-
|
|
60221
|
-
|
|
60222
|
-
|
|
60223
|
-
|
|
60224
|
-
|
|
60212
|
+
// const data = await OpenLiveSearchFront({
|
|
60213
|
+
// status,
|
|
60214
|
+
// scopeType,
|
|
60215
|
+
// scopeId,
|
|
60216
|
+
// offset: (page - 1) * PageSize,
|
|
60217
|
+
// limit: PageSize
|
|
60218
|
+
// })
|
|
60219
|
+
data = {
|
|
60220
|
+
"count": 11,
|
|
60221
|
+
"items": [{
|
|
60222
|
+
"live_id": "30d8726d-f4ee-452f-8266-af898555d27b",
|
|
60223
|
+
"live_name": "吴清沨名师工作室直播测试1",
|
|
60224
|
+
"lecture_user_id": 452543825909,
|
|
60225
|
+
"lecture_user_name": "程琴大号",
|
|
60226
|
+
"begin_time": "2023-11-20T19:00:00.000+0800",
|
|
60227
|
+
"end_time": "2023-11-20T23:00:00.000+0800",
|
|
60228
|
+
"duration": null,
|
|
60229
|
+
"status": 0,
|
|
60230
|
+
"type": 1,
|
|
60231
|
+
"view_replay": 1,
|
|
60232
|
+
"replay_url": null,
|
|
60233
|
+
"provide_record": 0,
|
|
60234
|
+
"conference_id": "286102851",
|
|
60235
|
+
"room_id": "65573a9ecd42c0001172375c",
|
|
60236
|
+
"chat_room_id": "6042256",
|
|
60237
|
+
"chat_room_convid": "4617269338473294294",
|
|
60238
|
+
"chat_enabled": false,
|
|
60239
|
+
"play_smart_link": "https://x-link.ykt.eduyun.cn/smart_links/240218393542657?qrEventName=smartlink",
|
|
60240
|
+
"sub_type": 1,
|
|
60241
|
+
"video_url": null,
|
|
60242
|
+
"tenant_id": 416,
|
|
60243
|
+
"login": false,
|
|
60244
|
+
"description": null,
|
|
60245
|
+
"desc_pic_web_url": null,
|
|
60246
|
+
"desc_pic_mobile_url": null,
|
|
60247
|
+
"cover_url": "https://bdcs-file-1.ykt.cbern.com.cn/zxx/X-COURSE/416/%E8%AF%BE%E7%A8%8B%E5%B0%81%E9%9D%A2-%E6%80%9D%E6%83%B3%E9%93%B8%E9%AD%82_1685342669000_1700215253549.png",
|
|
60248
|
+
"cover_pic_web_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/%E5%B0%81%E9%9D%A2_1700215325058.png",
|
|
60249
|
+
"cover_pic_mobile_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/%E5%B0%81%E9%9D%A2_1700215328467.png",
|
|
60250
|
+
"create_user_id": 452543769209,
|
|
60251
|
+
"create_time": "2023-11-17T18:04:16.000+0800",
|
|
60252
|
+
"first_begin_time": null,
|
|
60253
|
+
"scope_type": "e_teacher_studio",
|
|
60254
|
+
"scope_id": "7086a15d-aba8-4202-abdc-3cdfb69700c6",
|
|
60255
|
+
"scope_name": "吴清沨名师工作室",
|
|
60256
|
+
"scope_link": "https://x-link.ykt.eduyun.cn/smart_links/141660235628548?qrEventName=smartlink",
|
|
60257
|
+
"scope_image": "https://bdcs-file-1.ykt.cbern.com.cn/e_teacher_studio/teacherStudio/7086a15d-aba8-4202-abdc-3cdfb69700c6/avatar/圆头 三_1691374755333.jpeg",
|
|
60258
|
+
"env": "test",
|
|
60259
|
+
"chat_type": false,
|
|
60260
|
+
"discuss_chat_type": false,
|
|
60261
|
+
"comment_chat_room_id": null,
|
|
60262
|
+
"comment_chat_room_convid": null,
|
|
60263
|
+
"message_interval": 5,
|
|
60264
|
+
"bid": null,
|
|
60265
|
+
"replay_begin_time": "2023-11-21T00:00:00.000+0800",
|
|
60266
|
+
"replay_end_time": null,
|
|
60267
|
+
"view_replay_type": 0,
|
|
60268
|
+
"view_replay_name": null,
|
|
60269
|
+
"view_replay_url": null,
|
|
60270
|
+
"create_user_user_facade": {
|
|
60271
|
+
"user_id": 452543769209,
|
|
60272
|
+
"user_name": "吴清沨",
|
|
60273
|
+
"nick_name": null,
|
|
60274
|
+
"nick_name_full": null,
|
|
60275
|
+
"nick_name_short": null,
|
|
60276
|
+
"create_time": "2022-04-15T23:08:41.341+0800",
|
|
60277
|
+
"org_exinfo": {
|
|
60278
|
+
"node_id": 0,
|
|
60279
|
+
"node_name": "",
|
|
60280
|
+
"org_id": 594001860704,
|
|
60281
|
+
"org_name": null,
|
|
60282
|
+
"org_full_name": null,
|
|
60283
|
+
"org_user_code": "",
|
|
60284
|
+
"real_name": "吴清沨",
|
|
60285
|
+
"real_name_full": "wuqingfeng",
|
|
60286
|
+
"real_name_short": "wqf"
|
|
60287
|
+
},
|
|
60288
|
+
"email": null,
|
|
60289
|
+
"mobile": null,
|
|
60290
|
+
"avatar_url": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452543769209/avatar_url?size=80",
|
|
60291
|
+
"display_name": "吴清沨",
|
|
60292
|
+
"display_real_name": "吴清沨",
|
|
60293
|
+
"icon": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452543769209/avatar_url?size=80",
|
|
60294
|
+
"existed": true
|
|
60295
|
+
}
|
|
60296
|
+
}, {
|
|
60297
|
+
"live_id": "ce5ddade-9160-4352-90ea-28123d98022f",
|
|
60298
|
+
"live_name": "陈美-推流测试",
|
|
60299
|
+
"lecture_user_id": null,
|
|
60300
|
+
"lecture_user_name": "陈老师",
|
|
60301
|
+
"begin_time": "2023-11-19T18:44:00.000+0800",
|
|
60302
|
+
"end_time": "2023-11-19T19:00:00.000+0800",
|
|
60303
|
+
"duration": null,
|
|
60304
|
+
"status": 1,
|
|
60305
|
+
"type": 1,
|
|
60306
|
+
"view_replay": 1,
|
|
60307
|
+
"replay_url": "https://basic.smartedu.cn/",
|
|
60308
|
+
"provide_record": 2,
|
|
60309
|
+
"conference_id": null,
|
|
60310
|
+
"room_id": null,
|
|
60311
|
+
"chat_room_id": "6043313",
|
|
60312
|
+
"chat_room_convid": "4617185775589584394",
|
|
60313
|
+
"chat_enabled": false,
|
|
60314
|
+
"play_smart_link": "https://x-link.ykt.eduyun.cn/smart_links/240585204334593?qrEventName=smartlink",
|
|
60315
|
+
"sub_type": 2,
|
|
60316
|
+
"video_url": null,
|
|
60317
|
+
"tenant_id": 416,
|
|
60318
|
+
"login": false,
|
|
60319
|
+
"description": null,
|
|
60320
|
+
"desc_pic_web_url": null,
|
|
60321
|
+
"desc_pic_mobile_url": null,
|
|
60322
|
+
"cover_url": null,
|
|
60323
|
+
"cover_pic_web_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/2022.12.16_%E9%99%88%E7%BE%8E&ba73b3ae34733a8f533d8a670590113c_1700390349311.png",
|
|
60324
|
+
"cover_pic_mobile_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/2022.12.16_%E9%99%88%E7%BE%8E&ba73b3ae34733a8f533d8a670590113c_1700390352668.png",
|
|
60325
|
+
"create_user_id": 452543891320,
|
|
60326
|
+
"create_time": "2023-11-19T18:39:25.000+0800",
|
|
60327
|
+
"first_begin_time": null,
|
|
60328
|
+
"scope_type": "e_teacher_studio",
|
|
60329
|
+
"scope_id": "7086a15d-aba8-4202-abdc-3cdfb69700c6",
|
|
60330
|
+
"scope_name": "吴清沨名师工作室",
|
|
60331
|
+
"scope_link": "https://x-link.ykt.eduyun.cn/smart_links/141660235628548?qrEventName=smartlink",
|
|
60332
|
+
"scope_image": "https://bdcs-file-1.ykt.cbern.com.cn/e_teacher_studio/teacherStudio/7086a15d-aba8-4202-abdc-3cdfb69700c6/avatar/圆头 三_1691374755333.jpeg",
|
|
60333
|
+
"env": "test",
|
|
60334
|
+
"chat_type": false,
|
|
60335
|
+
"discuss_chat_type": false,
|
|
60336
|
+
"comment_chat_room_id": null,
|
|
60337
|
+
"comment_chat_room_convid": null,
|
|
60338
|
+
"message_interval": 5,
|
|
60339
|
+
"bid": 25307027,
|
|
60340
|
+
"replay_begin_time": null,
|
|
60341
|
+
"replay_end_time": null,
|
|
60342
|
+
"view_replay_type": 2,
|
|
60343
|
+
"view_replay_name": null,
|
|
60344
|
+
"view_replay_url": null,
|
|
60345
|
+
"create_user_user_facade": {
|
|
60346
|
+
"user_id": 452543891320,
|
|
60347
|
+
"user_name": "陈美",
|
|
60348
|
+
"nick_name": "",
|
|
60349
|
+
"nick_name_full": "",
|
|
60350
|
+
"nick_name_short": "",
|
|
60351
|
+
"create_time": "2022-04-21T16:02:44.123+0800",
|
|
60352
|
+
"org_exinfo": {
|
|
60353
|
+
"node_id": 0,
|
|
60354
|
+
"node_name": "",
|
|
60355
|
+
"org_id": 594001860704,
|
|
60356
|
+
"org_name": null,
|
|
60357
|
+
"org_full_name": null,
|
|
60358
|
+
"org_user_code": "",
|
|
60359
|
+
"real_name": "陈美",
|
|
60360
|
+
"real_name_full": "chenmei",
|
|
60361
|
+
"real_name_short": "cm"
|
|
60362
|
+
},
|
|
60363
|
+
"email": null,
|
|
60364
|
+
"mobile": null,
|
|
60365
|
+
"avatar_url": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452543891320/avatar_url?size=80",
|
|
60366
|
+
"display_name": "陈美",
|
|
60367
|
+
"display_real_name": "陈美",
|
|
60368
|
+
"icon": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452543891320/avatar_url?size=80",
|
|
60369
|
+
"existed": true
|
|
60370
|
+
}
|
|
60371
|
+
}, {
|
|
60372
|
+
"live_id": "1b182286-0f4e-4b3d-9023-d8a90a2b6a95",
|
|
60373
|
+
"live_name": "预约直播4",
|
|
60374
|
+
"lecture_user_id": null,
|
|
60375
|
+
"lecture_user_name": "张",
|
|
60376
|
+
"begin_time": "2023-11-17T17:59:00.000+0800",
|
|
60377
|
+
"end_time": "2023-11-17T18:13:17.000+0800",
|
|
60378
|
+
"duration": 856,
|
|
60379
|
+
"status": 2,
|
|
60380
|
+
"type": 2,
|
|
60381
|
+
"view_replay": 1,
|
|
60382
|
+
"replay_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/i%20u%20%C3%BC%20y%20w%EF%BC%88%E7%AC%AC%E4%B8%80%E8%AF%BE%E6%97%B6%EF%BC%89-1280x720-c08e7eae1cc948fe881f1267e68cbb03%20(1)%20(1)_1656210841532.mp4",
|
|
60383
|
+
"provide_record": 2,
|
|
60384
|
+
"conference_id": null,
|
|
60385
|
+
"room_id": null,
|
|
60386
|
+
"chat_room_id": "6042220",
|
|
60387
|
+
"chat_room_convid": "4617220959961672106",
|
|
60388
|
+
"chat_enabled": false,
|
|
60389
|
+
"play_smart_link": "https://x-link.ykt.eduyun.cn/smart_links/240212538327042?qrEventName=smartlink",
|
|
60390
|
+
"sub_type": 1,
|
|
60391
|
+
"video_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/i%20u%20%C3%BC%20y%20w%EF%BC%88%E7%AC%AC%E4%B8%80%E8%AF%BE%E6%97%B6%EF%BC%89-1280x720-c08e7eae1cc948fe881f1267e68cbb03%20(1)%20(1)_1656210841532.mp4",
|
|
60392
|
+
"tenant_id": 416,
|
|
60393
|
+
"login": false,
|
|
60394
|
+
"description": null,
|
|
60395
|
+
"desc_pic_web_url": null,
|
|
60396
|
+
"desc_pic_mobile_url": null,
|
|
60397
|
+
"cover_url": null,
|
|
60398
|
+
"cover_pic_web_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/3_1700212647343.jpg",
|
|
60399
|
+
"cover_pic_mobile_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/3_1700212649290.png",
|
|
60400
|
+
"create_user_id": 452543891320,
|
|
60401
|
+
"create_time": "2023-11-17T17:17:45.000+0800",
|
|
60402
|
+
"first_begin_time": null,
|
|
60403
|
+
"scope_type": "e_teacher_studio",
|
|
60404
|
+
"scope_id": "7086a15d-aba8-4202-abdc-3cdfb69700c6",
|
|
60405
|
+
"scope_name": "吴清沨名师工作室",
|
|
60406
|
+
"scope_link": "https://x-link.ykt.eduyun.cn/smart_links/141660235628548?qrEventName=smartlink",
|
|
60407
|
+
"scope_image": "https://bdcs-file-1.ykt.cbern.com.cn/e_teacher_studio/teacherStudio/7086a15d-aba8-4202-abdc-3cdfb69700c6/avatar/圆头 三_1691374755333.jpeg",
|
|
60408
|
+
"env": "test",
|
|
60409
|
+
"chat_type": false,
|
|
60410
|
+
"discuss_chat_type": false,
|
|
60411
|
+
"comment_chat_room_id": null,
|
|
60412
|
+
"comment_chat_room_convid": null,
|
|
60413
|
+
"message_interval": 5,
|
|
60414
|
+
"bid": null,
|
|
60415
|
+
"replay_begin_time": null,
|
|
60416
|
+
"replay_end_time": null,
|
|
60417
|
+
"view_replay_type": 0,
|
|
60418
|
+
"view_replay_name": null,
|
|
60419
|
+
"view_replay_url": null,
|
|
60420
|
+
"create_user_user_facade": {
|
|
60421
|
+
"user_id": 452543891320,
|
|
60422
|
+
"user_name": "陈美",
|
|
60423
|
+
"nick_name": "",
|
|
60424
|
+
"nick_name_full": "",
|
|
60425
|
+
"nick_name_short": "",
|
|
60426
|
+
"create_time": "2022-04-21T16:02:44.123+0800",
|
|
60427
|
+
"org_exinfo": {
|
|
60428
|
+
"node_id": 0,
|
|
60429
|
+
"node_name": "",
|
|
60430
|
+
"org_id": 594001860704,
|
|
60431
|
+
"org_name": null,
|
|
60432
|
+
"org_full_name": null,
|
|
60433
|
+
"org_user_code": "",
|
|
60434
|
+
"real_name": "陈美",
|
|
60435
|
+
"real_name_full": "chenmei",
|
|
60436
|
+
"real_name_short": "cm"
|
|
60437
|
+
},
|
|
60438
|
+
"email": null,
|
|
60439
|
+
"mobile": null,
|
|
60440
|
+
"avatar_url": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452543891320/avatar_url?size=80",
|
|
60441
|
+
"display_name": "陈美",
|
|
60442
|
+
"display_real_name": "陈美",
|
|
60443
|
+
"icon": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452543891320/avatar_url?size=80",
|
|
60444
|
+
"existed": true
|
|
60445
|
+
}
|
|
60446
|
+
}, {
|
|
60447
|
+
"live_id": "0a3e44c6-c9ba-47ea-b60a-d224085ad6d5",
|
|
60448
|
+
"live_name": "预约直播测试3",
|
|
60449
|
+
"lecture_user_id": null,
|
|
60450
|
+
"lecture_user_name": "林老师",
|
|
60451
|
+
"begin_time": "2023-11-17T17:40:00.000+0800",
|
|
60452
|
+
"end_time": "2023-11-17T17:54:17.000+0800",
|
|
60453
|
+
"duration": 856,
|
|
60454
|
+
"status": 2,
|
|
60455
|
+
"type": 2,
|
|
60456
|
+
"view_replay": 1,
|
|
60457
|
+
"replay_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/i%20u%20%C3%BC%20y%20w%EF%BC%88%E7%AC%AC%E4%B8%80%E8%AF%BE%E6%97%B6%EF%BC%89-1280x720-c08e7eae1cc948fe881f1267e68cbb03%20(1)%20(1)_1656210841532.mp4",
|
|
60458
|
+
"provide_record": 2,
|
|
60459
|
+
"conference_id": null,
|
|
60460
|
+
"room_id": null,
|
|
60461
|
+
"chat_room_id": "6042218",
|
|
60462
|
+
"chat_room_convid": "4617218760938416552",
|
|
60463
|
+
"chat_enabled": false,
|
|
60464
|
+
"play_smart_link": "https://x-link.ykt.eduyun.cn/smart_links/240211999326209?qrEventName=smartlink",
|
|
60465
|
+
"sub_type": 1,
|
|
60466
|
+
"video_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/i%20u%20%C3%BC%20y%20w%EF%BC%88%E7%AC%AC%E4%B8%80%E8%AF%BE%E6%97%B6%EF%BC%89-1280x720-c08e7eae1cc948fe881f1267e68cbb03%20(1)%20(1)_1656210841532.mp4",
|
|
60467
|
+
"tenant_id": 416,
|
|
60468
|
+
"login": false,
|
|
60469
|
+
"description": null,
|
|
60470
|
+
"desc_pic_web_url": null,
|
|
60471
|
+
"desc_pic_mobile_url": null,
|
|
60472
|
+
"cover_url": "https://bdcs-file-1.ykt.cbern.com.cn/zxx/X-COURSE/416/15_1700212402198.jpg",
|
|
60473
|
+
"cover_pic_web_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/2_1700212396937.jpg",
|
|
60474
|
+
"cover_pic_mobile_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/9_1700212398956.jpg",
|
|
60475
|
+
"create_user_id": 452543891320,
|
|
60476
|
+
"create_time": "2023-11-17T17:13:27.000+0800",
|
|
60477
|
+
"first_begin_time": null,
|
|
60478
|
+
"scope_type": "e_teacher_studio",
|
|
60479
|
+
"scope_id": "7086a15d-aba8-4202-abdc-3cdfb69700c6",
|
|
60480
|
+
"scope_name": "吴清沨名师工作室",
|
|
60481
|
+
"scope_link": "https://x-link.ykt.eduyun.cn/smart_links/141660235628548?qrEventName=smartlink",
|
|
60482
|
+
"scope_image": "https://bdcs-file-1.ykt.cbern.com.cn/e_teacher_studio/teacherStudio/7086a15d-aba8-4202-abdc-3cdfb69700c6/avatar/圆头 三_1691374755333.jpeg",
|
|
60483
|
+
"env": "test",
|
|
60484
|
+
"chat_type": false,
|
|
60485
|
+
"discuss_chat_type": false,
|
|
60486
|
+
"comment_chat_room_id": null,
|
|
60487
|
+
"comment_chat_room_convid": null,
|
|
60488
|
+
"message_interval": 5,
|
|
60489
|
+
"bid": null,
|
|
60490
|
+
"replay_begin_time": null,
|
|
60491
|
+
"replay_end_time": null,
|
|
60492
|
+
"view_replay_type": 0,
|
|
60493
|
+
"view_replay_name": null,
|
|
60494
|
+
"view_replay_url": null,
|
|
60495
|
+
"create_user_user_facade": {
|
|
60496
|
+
"user_id": 452543891320,
|
|
60497
|
+
"user_name": "陈美",
|
|
60498
|
+
"nick_name": "",
|
|
60499
|
+
"nick_name_full": "",
|
|
60500
|
+
"nick_name_short": "",
|
|
60501
|
+
"create_time": "2022-04-21T16:02:44.123+0800",
|
|
60502
|
+
"org_exinfo": {
|
|
60503
|
+
"node_id": 0,
|
|
60504
|
+
"node_name": "",
|
|
60505
|
+
"org_id": 594001860704,
|
|
60506
|
+
"org_name": null,
|
|
60507
|
+
"org_full_name": null,
|
|
60508
|
+
"org_user_code": "",
|
|
60509
|
+
"real_name": "陈美",
|
|
60510
|
+
"real_name_full": "chenmei",
|
|
60511
|
+
"real_name_short": "cm"
|
|
60512
|
+
},
|
|
60513
|
+
"email": null,
|
|
60514
|
+
"mobile": null,
|
|
60515
|
+
"avatar_url": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452543891320/avatar_url?size=80",
|
|
60516
|
+
"display_name": "陈美",
|
|
60517
|
+
"display_real_name": "陈美",
|
|
60518
|
+
"icon": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452543891320/avatar_url?size=80",
|
|
60519
|
+
"existed": true
|
|
60520
|
+
}
|
|
60521
|
+
}, {
|
|
60522
|
+
"live_id": "8a42343a-a060-41ef-a058-22af1c2e7534",
|
|
60523
|
+
"live_name": "预约直播1",
|
|
60524
|
+
"lecture_user_id": null,
|
|
60525
|
+
"lecture_user_name": "张老师",
|
|
60526
|
+
"begin_time": "2023-11-17T17:20:00.000+0800",
|
|
60527
|
+
"end_time": "2023-11-17T17:34:17.000+0800",
|
|
60528
|
+
"duration": 856,
|
|
60529
|
+
"status": 2,
|
|
60530
|
+
"type": 2,
|
|
60531
|
+
"view_replay": 1,
|
|
60532
|
+
"replay_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/i%20u%20%C3%BC%20y%20w%EF%BC%88%E7%AC%AC%E4%B8%80%E8%AF%BE%E6%97%B6%EF%BC%89-1280x720-c08e7eae1cc948fe881f1267e68cbb03%20(1)%20(1)_1656210841532.mp4",
|
|
60533
|
+
"provide_record": 2,
|
|
60534
|
+
"conference_id": null,
|
|
60535
|
+
"room_id": null,
|
|
60536
|
+
"chat_room_id": "6042216",
|
|
60537
|
+
"chat_room_convid": "4617206666310511005",
|
|
60538
|
+
"chat_enabled": false,
|
|
60539
|
+
"play_smart_link": "https://x-link.ykt.eduyun.cn/smart_links/240210426494980?qrEventName=smartlink",
|
|
60540
|
+
"sub_type": 1,
|
|
60541
|
+
"video_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/i%20u%20%C3%BC%20y%20w%EF%BC%88%E7%AC%AC%E4%B8%80%E8%AF%BE%E6%97%B6%EF%BC%89-1280x720-c08e7eae1cc948fe881f1267e68cbb03%20(1)%20(1)_1656210841532.mp4",
|
|
60542
|
+
"tenant_id": 416,
|
|
60543
|
+
"login": false,
|
|
60544
|
+
"description": null,
|
|
60545
|
+
"desc_pic_web_url": null,
|
|
60546
|
+
"desc_pic_mobile_url": null,
|
|
60547
|
+
"cover_url": "https://bdcs-file-1.ykt.cbern.com.cn/zxx/X-COURSE/416/21_1700211649821.jpg",
|
|
60548
|
+
"cover_pic_web_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/1_1700211642536.jpg",
|
|
60549
|
+
"cover_pic_mobile_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/18_1700211645081.jpg",
|
|
60550
|
+
"create_user_id": 452543891320,
|
|
60551
|
+
"create_time": "2023-11-17T17:00:58.000+0800",
|
|
60552
|
+
"first_begin_time": null,
|
|
60553
|
+
"scope_type": "e_teacher_studio",
|
|
60554
|
+
"scope_id": "7086a15d-aba8-4202-abdc-3cdfb69700c6",
|
|
60555
|
+
"scope_name": "吴清沨名师工作室",
|
|
60556
|
+
"scope_link": "https://x-link.ykt.eduyun.cn/smart_links/141660235628548?qrEventName=smartlink",
|
|
60557
|
+
"scope_image": "https://bdcs-file-1.ykt.cbern.com.cn/e_teacher_studio/teacherStudio/7086a15d-aba8-4202-abdc-3cdfb69700c6/avatar/圆头 三_1691374755333.jpeg",
|
|
60558
|
+
"env": "test",
|
|
60559
|
+
"chat_type": false,
|
|
60560
|
+
"discuss_chat_type": false,
|
|
60561
|
+
"comment_chat_room_id": null,
|
|
60562
|
+
"comment_chat_room_convid": null,
|
|
60563
|
+
"message_interval": 5,
|
|
60564
|
+
"bid": null,
|
|
60565
|
+
"replay_begin_time": null,
|
|
60566
|
+
"replay_end_time": null,
|
|
60567
|
+
"view_replay_type": 0,
|
|
60568
|
+
"view_replay_name": null,
|
|
60569
|
+
"view_replay_url": null,
|
|
60570
|
+
"create_user_user_facade": {
|
|
60571
|
+
"user_id": 452543891320,
|
|
60572
|
+
"user_name": "陈美",
|
|
60573
|
+
"nick_name": "",
|
|
60574
|
+
"nick_name_full": "",
|
|
60575
|
+
"nick_name_short": "",
|
|
60576
|
+
"create_time": "2022-04-21T16:02:44.123+0800",
|
|
60577
|
+
"org_exinfo": {
|
|
60578
|
+
"node_id": 0,
|
|
60579
|
+
"node_name": "",
|
|
60580
|
+
"org_id": 594001860704,
|
|
60581
|
+
"org_name": null,
|
|
60582
|
+
"org_full_name": null,
|
|
60583
|
+
"org_user_code": "",
|
|
60584
|
+
"real_name": "陈美",
|
|
60585
|
+
"real_name_full": "chenmei",
|
|
60586
|
+
"real_name_short": "cm"
|
|
60587
|
+
},
|
|
60588
|
+
"email": null,
|
|
60589
|
+
"mobile": null,
|
|
60590
|
+
"avatar_url": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452543891320/avatar_url?size=80",
|
|
60591
|
+
"display_name": "陈美",
|
|
60592
|
+
"display_real_name": "陈美",
|
|
60593
|
+
"icon": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452543891320/avatar_url?size=80",
|
|
60594
|
+
"existed": true
|
|
60595
|
+
}
|
|
60596
|
+
}, {
|
|
60597
|
+
"live_id": "9d2f150c-6cb3-4c52-87e1-b816398478c1",
|
|
60598
|
+
"live_name": "1102测试相同时间2",
|
|
60599
|
+
"lecture_user_id": 452651419426,
|
|
60600
|
+
"lecture_user_name": "魏彤妍",
|
|
60601
|
+
"begin_time": "2023-11-02T11:10:00.000+0800",
|
|
60602
|
+
"end_time": "2023-11-02T11:40:00.000+0800",
|
|
60603
|
+
"duration": null,
|
|
60604
|
+
"status": 2,
|
|
60605
|
+
"type": 1,
|
|
60606
|
+
"view_replay": 0,
|
|
60607
|
+
"replay_url": null,
|
|
60608
|
+
"provide_record": 2,
|
|
60609
|
+
"conference_id": "432971706",
|
|
60610
|
+
"room_id": "6543102bcd42c0001171e356",
|
|
60611
|
+
"chat_room_id": "6040301",
|
|
60612
|
+
"chat_room_convid": "4617271537496547672",
|
|
60613
|
+
"chat_enabled": false,
|
|
60614
|
+
"play_smart_link": "https://x-link.ykt.eduyun.cn/smart_links/237446822494209?qrEventName=smartlink",
|
|
60615
|
+
"sub_type": 1,
|
|
60616
|
+
"video_url": "https://cdncs.ykt.cbern.com.cn/v0.1/download?path=/xxuexiimbr/replays/25306345_1698894971152.mp4",
|
|
60617
|
+
"tenant_id": 416,
|
|
60618
|
+
"login": false,
|
|
60619
|
+
"description": null,
|
|
60620
|
+
"desc_pic_web_url": null,
|
|
60621
|
+
"desc_pic_mobile_url": null,
|
|
60622
|
+
"cover_url": null,
|
|
60623
|
+
"cover_pic_web_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20230717105534_1698893852269.jpg",
|
|
60624
|
+
"cover_pic_mobile_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20230717105534_1698893858258.jpg",
|
|
60625
|
+
"create_user_id": 452651419426,
|
|
60626
|
+
"create_time": "2023-11-02T10:57:48.000+0800",
|
|
60627
|
+
"first_begin_time": null,
|
|
60628
|
+
"scope_type": "e_teacher_studio",
|
|
60629
|
+
"scope_id": "7086a15d-aba8-4202-abdc-3cdfb69700c6",
|
|
60630
|
+
"scope_name": "吴清沨名师工作室",
|
|
60631
|
+
"scope_link": "https://x-link.ykt.eduyun.cn/smart_links/141660235628548?qrEventName=smartlink",
|
|
60632
|
+
"scope_image": "https://bdcs-file-1.ykt.cbern.com.cn/e_teacher_studio/teacherStudio/7086a15d-aba8-4202-abdc-3cdfb69700c6/avatar/圆头 三_1691374755333.jpeg",
|
|
60633
|
+
"env": "test",
|
|
60634
|
+
"chat_type": false,
|
|
60635
|
+
"discuss_chat_type": false,
|
|
60636
|
+
"comment_chat_room_id": null,
|
|
60637
|
+
"comment_chat_room_convid": null,
|
|
60638
|
+
"message_interval": 5,
|
|
60639
|
+
"bid": null,
|
|
60640
|
+
"replay_begin_time": null,
|
|
60641
|
+
"replay_end_time": null,
|
|
60642
|
+
"view_replay_type": 0,
|
|
60643
|
+
"view_replay_name": null,
|
|
60644
|
+
"view_replay_url": null,
|
|
60645
|
+
"create_user_user_facade": {
|
|
60646
|
+
"user_id": 452651419426,
|
|
60647
|
+
"user_name": "魏彤妍",
|
|
60648
|
+
"nick_name": null,
|
|
60649
|
+
"nick_name_full": null,
|
|
60650
|
+
"nick_name_short": null,
|
|
60651
|
+
"create_time": "2023-02-13T10:14:53.126+0800",
|
|
60652
|
+
"org_exinfo": {
|
|
60653
|
+
"node_id": 0,
|
|
60654
|
+
"node_name": "",
|
|
60655
|
+
"org_id": 594001860704,
|
|
60656
|
+
"org_name": null,
|
|
60657
|
+
"org_full_name": null,
|
|
60658
|
+
"org_user_code": "",
|
|
60659
|
+
"real_name": "魏彤妍",
|
|
60660
|
+
"real_name_full": "weitongyan",
|
|
60661
|
+
"real_name_short": "wty"
|
|
60662
|
+
},
|
|
60663
|
+
"email": null,
|
|
60664
|
+
"mobile": null,
|
|
60665
|
+
"avatar_url": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452651419426/avatar_url?size=80",
|
|
60666
|
+
"display_name": "魏彤妍",
|
|
60667
|
+
"display_real_name": "魏彤妍",
|
|
60668
|
+
"icon": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452651419426/avatar_url?size=80",
|
|
60669
|
+
"existed": true
|
|
60670
|
+
}
|
|
60671
|
+
}, {
|
|
60672
|
+
"live_id": "32a81b78-5598-494a-865a-e17a6d606c44",
|
|
60673
|
+
"live_name": "1102测试相同时间",
|
|
60674
|
+
"lecture_user_id": 452651419426,
|
|
60675
|
+
"lecture_user_name": "魏彤妍",
|
|
60676
|
+
"begin_time": "2023-11-02T11:01:00.000+0800",
|
|
60677
|
+
"end_time": "2023-11-02T11:30:00.000+0800",
|
|
60678
|
+
"duration": null,
|
|
60679
|
+
"status": 2,
|
|
60680
|
+
"type": 1,
|
|
60681
|
+
"view_replay": 0,
|
|
60682
|
+
"replay_url": null,
|
|
60683
|
+
"provide_record": 0,
|
|
60684
|
+
"conference_id": "267959980",
|
|
60685
|
+
"room_id": "65430fddcd42c0001171e351",
|
|
60686
|
+
"chat_room_id": "6040299",
|
|
60687
|
+
"chat_room_convid": "4617260542380269902",
|
|
60688
|
+
"chat_enabled": false,
|
|
60689
|
+
"play_smart_link": "https://x-link.ykt.eduyun.cn/smart_links/237446661013505?qrEventName=smartlink",
|
|
60690
|
+
"sub_type": 1,
|
|
60691
|
+
"video_url": null,
|
|
60692
|
+
"tenant_id": 416,
|
|
60693
|
+
"login": false,
|
|
60694
|
+
"description": null,
|
|
60695
|
+
"desc_pic_web_url": null,
|
|
60696
|
+
"desc_pic_mobile_url": null,
|
|
60697
|
+
"cover_url": null,
|
|
60698
|
+
"cover_pic_web_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20230717105523_1698893776035.jpg",
|
|
60699
|
+
"cover_pic_mobile_url": "https://bdcs-file-1.ykt.cbern.com.cn/bd_x_live/%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20230717105523_1698893779458.jpg",
|
|
60700
|
+
"create_user_id": 452651419426,
|
|
60701
|
+
"create_time": "2023-11-02T10:56:32.000+0800",
|
|
60702
|
+
"first_begin_time": null,
|
|
60703
|
+
"scope_type": "e_teacher_studio",
|
|
60704
|
+
"scope_id": "7086a15d-aba8-4202-abdc-3cdfb69700c6",
|
|
60705
|
+
"scope_name": "吴清沨名师工作室",
|
|
60706
|
+
"scope_link": "https://x-link.ykt.eduyun.cn/smart_links/141660235628548?qrEventName=smartlink",
|
|
60707
|
+
"scope_image": "https://bdcs-file-1.ykt.cbern.com.cn/e_teacher_studio/teacherStudio/7086a15d-aba8-4202-abdc-3cdfb69700c6/avatar/圆头 三_1691374755333.jpeg",
|
|
60708
|
+
"env": "test",
|
|
60709
|
+
"chat_type": false,
|
|
60710
|
+
"discuss_chat_type": false,
|
|
60711
|
+
"comment_chat_room_id": null,
|
|
60712
|
+
"comment_chat_room_convid": null,
|
|
60713
|
+
"message_interval": 5,
|
|
60714
|
+
"bid": null,
|
|
60715
|
+
"replay_begin_time": null,
|
|
60716
|
+
"replay_end_time": null,
|
|
60717
|
+
"view_replay_type": 0,
|
|
60718
|
+
"view_replay_name": null,
|
|
60719
|
+
"view_replay_url": null,
|
|
60720
|
+
"create_user_user_facade": {
|
|
60721
|
+
"user_id": 452651419426,
|
|
60722
|
+
"user_name": "魏彤妍",
|
|
60723
|
+
"nick_name": null,
|
|
60724
|
+
"nick_name_full": null,
|
|
60725
|
+
"nick_name_short": null,
|
|
60726
|
+
"create_time": "2023-02-13T10:14:53.126+0800",
|
|
60727
|
+
"org_exinfo": {
|
|
60728
|
+
"node_id": 0,
|
|
60729
|
+
"node_name": "",
|
|
60730
|
+
"org_id": 594001860704,
|
|
60731
|
+
"org_name": null,
|
|
60732
|
+
"org_full_name": null,
|
|
60733
|
+
"org_user_code": "",
|
|
60734
|
+
"real_name": "魏彤妍",
|
|
60735
|
+
"real_name_full": "weitongyan",
|
|
60736
|
+
"real_name_short": "wty"
|
|
60737
|
+
},
|
|
60738
|
+
"email": null,
|
|
60739
|
+
"mobile": null,
|
|
60740
|
+
"avatar_url": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452651419426/avatar_url?size=80",
|
|
60741
|
+
"display_name": "魏彤妍",
|
|
60742
|
+
"display_real_name": "魏彤妍",
|
|
60743
|
+
"icon": "http://uc-gateway.ykt.eduyun.cn/v1.1/users/452651419426/avatar_url?size=80",
|
|
60744
|
+
"existed": true
|
|
60745
|
+
}
|
|
60746
|
+
}]
|
|
60747
|
+
};
|
|
60225
60748
|
items = data.items, count = data.count;
|
|
60226
60749
|
if (!uc) {
|
|
60227
|
-
_context.next =
|
|
60750
|
+
_context.next = 13;
|
|
60228
60751
|
break;
|
|
60229
60752
|
}
|
|
60230
|
-
_context.next =
|
|
60753
|
+
_context.next = 6;
|
|
60231
60754
|
return uc.isLogin();
|
|
60232
|
-
case
|
|
60755
|
+
case 6:
|
|
60233
60756
|
curIsLogin = _context.sent;
|
|
60234
60757
|
if (!curIsLogin) {
|
|
60235
|
-
_context.next =
|
|
60758
|
+
_context.next = 13;
|
|
60236
60759
|
break;
|
|
60237
60760
|
}
|
|
60238
|
-
_context.next =
|
|
60761
|
+
_context.next = 10;
|
|
60239
60762
|
return getSubscription();
|
|
60240
|
-
case
|
|
60763
|
+
case 10:
|
|
60241
60764
|
curSubscription = _context.sent;
|
|
60242
60765
|
setSubscription(curSubscription);
|
|
60243
60766
|
setIsLogin(true);
|
|
60244
|
-
case
|
|
60767
|
+
case 13:
|
|
60245
60768
|
setList(items || []);
|
|
60246
60769
|
setTotal(count || 0);
|
|
60247
60770
|
setLoading(false);
|
|
@@ -60325,7 +60848,7 @@ function PublicLiveList(_ref) {
|
|
|
60325
60848
|
// ])
|
|
60326
60849
|
// setTotal(1)
|
|
60327
60850
|
// setLoading(false)
|
|
60328
|
-
case
|
|
60851
|
+
case 16:
|
|
60329
60852
|
case "end":
|
|
60330
60853
|
return _context.stop();
|
|
60331
60854
|
}
|