Auto Submit

pull/1/head
autosubmit 2 years ago
parent b420d5517d
commit c8c4efc5dd

@ -30,8 +30,8 @@ var message = __webpack_require__(8591);
var dropdown = __webpack_require__(38854);
// EXTERNAL MODULE: ./node_modules/_flv.js@1.5.0@flv.js/src/flv.js + 38 modules
var flv = __webpack_require__(51021);
// EXTERNAL MODULE: ./node_modules/_hls.js@1.5.3@hls.js/dist/hls.mjs
var dist_hls = __webpack_require__(95105);
// EXTERNAL MODULE: ./node_modules/_hls.js@1.5.6@hls.js/dist/hls.mjs
var dist_hls = __webpack_require__(70535);
// EXTERNAL MODULE: ./src/utils/authority.ts
var authority = __webpack_require__(63813);
// EXTERNAL MODULE: ./node_modules/_react-copy-to-clipboard@5.0.2@react-copy-to-clipboard/lib/index.js

@ -139,8 +139,8 @@ var scalaLangage = {
// { label: "printf", content: 'printf("")' },
]
};
// EXTERNAL MODULE: ./node_modules/_js-beautify@1.14.11@js-beautify/js/index.js
var js = __webpack_require__(88771);
// EXTERNAL MODULE: ./node_modules/_js-beautify@1.15.1@js-beautify/js/index.js
var js = __webpack_require__(86061);
var js_default = /*#__PURE__*/__webpack_require__.n(js);
;// CONCATENATED MODULE: ./src/components/monaco-editor/monaco-suggest-config.tsx

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1072,7 +1072,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -1,9 +1,9 @@
"use strict";
(self["webpackChunk"] = self["webpackChunk"] || []).push([[95105],{
(self["webpackChunk"] = self["webpackChunk"] || []).push([[70535],{
/***/ 95105:
/***/ 70535:
/*!********************************************************!*\
!*** ./node_modules/_hls.js@1.5.3@hls.js/dist/hls.mjs ***!
!*** ./node_modules/_hls.js@1.5.6@hls.js/dist/hls.mjs ***!
\********************************************************/
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
@ -424,7 +424,7 @@ function enableLogs(debugConfig, id) {
// Some browsers don't allow to use bind on console object anyway
// fallback to default if needed
try {
exportedLogger.log(`Debug logs enabled for "${id}" in hls.js version ${"1.5.3"}`);
exportedLogger.log(`Debug logs enabled for "${id}" in hls.js version ${"1.5.6"}`);
} catch (e) {
exportedLogger = fakeLogger;
}
@ -1563,6 +1563,12 @@ function readUint32(buffer, offset) {
const val = readSint32(buffer, offset);
return val < 0 ? 4294967296 + val : val;
}
function readUint64(buffer, offset) {
let result = readUint32(buffer, offset);
result *= Math.pow(2, 32);
result += readUint32(buffer, offset + 4);
return result;
}
function readSint32(buffer, offset) {
return buffer[offset] << 24 | buffer[offset + 1] << 16 | buffer[offset + 2] << 8 | buffer[offset + 3];
}
@ -1625,14 +1631,15 @@ function parseSegmentIndex(sidx) {
let index = 8;
const timescale = readUint32(sidx, index);
index += 4;
// TODO: parse earliestPresentationTime and firstOffset
// usually zero in our case
const earliestPresentationTime = 0;
const firstOffset = 0;
let earliestPresentationTime = 0;
let firstOffset = 0;
if (version === 0) {
earliestPresentationTime = readUint32(sidx, index);
firstOffset = readUint32(sidx, index + 4);
index += 8;
} else {
earliestPresentationTime = readUint64(sidx, index);
firstOffset = readUint64(sidx, index + 8);
index += 16;
}
@ -2081,15 +2088,22 @@ function getDuration(data, initData) {
}
if (videoDuration === 0 && audioDuration === 0) {
// If duration samples are not available in the traf use sidx subsegment_duration
let sidxMinStart = Infinity;
let sidxMaxEnd = 0;
let sidxDuration = 0;
const sidxs = findBox(data, ['sidx']);
for (let i = 0; i < sidxs.length; i++) {
const sidx = parseSegmentIndex(sidxs[i]);
if (sidx != null && sidx.references) {
sidxDuration += sidx.references.reduce((dur, ref) => dur + ref.info.duration || 0, 0);
sidxMinStart = Math.min(sidxMinStart, sidx.earliestPresentationTime / sidx.timescale);
const subSegmentDuration = sidx.references.reduce((dur, ref) => dur + ref.info.duration || 0, 0);
sidxMaxEnd = Math.max(sidxMaxEnd, subSegmentDuration + sidx.earliestPresentationTime / sidx.timescale);
sidxDuration = sidxMaxEnd - sidxMinStart;
}
}
return sidxDuration;
if (sidxDuration && isFiniteNumber(sidxDuration)) {
return sidxDuration;
}
}
if (videoDuration) {
return videoDuration;
@ -7228,8 +7242,7 @@ class AbrController {
return nextABRAutoLevel;
}
getAutoLevelKey() {
var _this$hls$mainForward;
return `${this.getBwEstimate()}_${(_this$hls$mainForward = this.hls.mainForwardBufferInfo) == null ? void 0 : _this$hls$mainForward.len}`;
return `${this.getBwEstimate()}_${this.getStarvationDelay().toFixed(2)}`;
}
getNextABRAutoLevel() {
const {
@ -7240,18 +7253,12 @@ class AbrController {
const {
maxAutoLevel,
config,
minAutoLevel,
media
minAutoLevel
} = hls;
const currentFragDuration = partCurrent ? partCurrent.duration : fragCurrent ? fragCurrent.duration : 0;
// playbackRate is the absolute value of the playback rate; if media.playbackRate is 0, we use 1 to load as
// if we're playing back at the normal rate.
const playbackRate = media && media.playbackRate !== 0 ? Math.abs(media.playbackRate) : 1.0;
const avgbw = this.getBwEstimate();
// bufferStarvationDelay is the wall-clock time left until the playback buffer is exhausted.
const bufferInfo = hls.mainForwardBufferInfo;
const bufferStarvationDelay = (bufferInfo ? bufferInfo.len : 0) / playbackRate;
const bufferStarvationDelay = this.getStarvationDelay();
let bwFactor = config.abrBandWidthFactor;
let bwUpFactor = config.abrBandWidthUpFactor;
@ -7294,6 +7301,18 @@ class AbrController {
// or if bitrate is not lower, continue to use loadLevel
return hls.loadLevel;
}
getStarvationDelay() {
const hls = this.hls;
const media = hls.media;
if (!media) {
return Infinity;
}
// playbackRate is the absolute value of the playback rate; if media.playbackRate is 0, we use 1 to load as
// if we're playing back at the normal rate.
const playbackRate = media && media.playbackRate !== 0 ? Math.abs(media.playbackRate) : 1.0;
const bufferInfo = hls.mainForwardBufferInfo;
return (bufferInfo ? bufferInfo.len : 0) / playbackRate;
}
getBwEstimate() {
return this.bwEstimator.canEstimate() ? this.bwEstimator.getEstimate() : this.hls.config.abrEwmaDefaultEstimate;
}
@ -7363,6 +7382,9 @@ class AbrController {
if (typeof (mediaCapabilities == null ? void 0 : mediaCapabilities.decodingInfo) === 'function' && requiresMediaCapabilitiesDecodingInfo(levelInfo, audioTracksByGroup, currentVideoRange, currentFrameRate, currentBw, audioPreference)) {
levelInfo.supportedPromise = getMediaDecodingInfoPromise(levelInfo, audioTracksByGroup, mediaCapabilities);
levelInfo.supportedPromise.then(decodingInfo => {
if (!this.hls) {
return;
}
levelInfo.supportedResult = decodingInfo;
const levels = this.hls.levels;
const index = levels.indexOf(levelInfo);
@ -7433,8 +7455,12 @@ class AbrController {
return -1;
}
set nextAutoLevel(nextLevel) {
const value = Math.max(this.hls.minAutoLevel, nextLevel);
if (this._nextAutoLevel != value) {
const {
maxAutoLevel,
minAutoLevel
} = this.hls;
const value = Math.min(Math.max(nextLevel, minAutoLevel), maxAutoLevel);
if (this._nextAutoLevel !== value) {
this.nextAutoLevelKey = '';
this._nextAutoLevel = value;
}
@ -16050,7 +16076,7 @@ class AudioStreamController extends BaseStreamController {
// compute start position if we are aligned with the main playlist
if (!this.startFragRequested && (this.mainDetails || !newDetails.live)) {
this.setStartPosition(track.details, sliding);
this.setStartPosition(this.mainDetails || newDetails, sliding);
}
// only switch back to IDLE state if we were waiting for track to start downloading a new fragment
if (this.state === State.WAITING_TRACK && !this.waitForCdnTuneIn(newDetails)) {
@ -16886,7 +16912,7 @@ class SubtitleStreamController extends BaseStreamController {
onSubtitleTracksUpdated(event, {
subtitleTracks
}) {
if (!this.levels || subtitleOptionsIdentical(this.levels, subtitleTracks)) {
if (this.levels && subtitleOptionsIdentical(this.levels, subtitleTracks)) {
this.levels = subtitleTracks.map(mediaPlaylist => new Level(mediaPlaylist));
return;
}
@ -16970,7 +16996,7 @@ class SubtitleStreamController extends BaseStreamController {
track.details = newDetails;
this.levelLastLoaded = track;
if (!this.startFragRequested && (this.mainDetails || !newDetails.live)) {
this.setStartPosition(track.details, sliding);
this.setStartPosition(this.mainDetails || newDetails, sliding);
}
// trigger handler right now
@ -26620,7 +26646,8 @@ class StreamController extends BaseStreamController {
}
// set new level to playlist loader : this will trigger start level load
// hls.nextLoadLevel remains until it is set to a new value or until a new frag is successfully loaded
this.level = hls.nextLoadLevel = startLevel;
hls.nextLoadLevel = startLevel;
this.level = hls.loadLevel;
this.loadedmetadata = false;
}
// if startPosition undefined but lastCurrentTime set, set startPosition to last currentTime
@ -26697,15 +26724,11 @@ class StreamController extends BaseStreamController {
levels,
media
} = this;
const {
config,
nextLoadLevel: level
} = hls;
// if start level not parsed yet OR
// if video not attached AND start fragment already requested OR start frag prefetch not enabled
// exit loop, as we either need more info (level not parsed) or we need media to be attached to load new fragment
if (levelLastLoaded === null || !media && (this.startFragRequested || !config.startFragPrefetch)) {
if (levelLastLoaded === null || !media && (this.startFragRequested || !hls.config.startFragPrefetch)) {
return;
}
@ -26713,6 +26736,7 @@ class StreamController extends BaseStreamController {
if (this.altAudio && this.audioOnly) {
return;
}
const level = hls.nextLoadLevel;
if (!(levels != null && levels[level])) {
return;
}
@ -27695,7 +27719,7 @@ class Hls {
* Get the video-dev/hls.js package version.
*/
static get version() {
return "1.5.3";
return "1.5.6";
}
/**

@ -1,9 +1,9 @@
(self["webpackChunk"] = self["webpackChunk"] || []).push([[89868],{
(self["webpackChunk"] = self["webpackChunk"] || []).push([[97705],{
/***/ 88771:
/*!*******************************************************************!*\
!*** ./node_modules/_js-beautify@1.14.11@js-beautify/js/index.js ***!
\*******************************************************************/
/***/ 86061:
/*!******************************************************************!*\
!*** ./node_modules/_js-beautify@1.15.1@js-beautify/js/index.js ***!
\******************************************************************/
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -76,9 +76,9 @@ function get_beautify(js_beautify, css_beautify, html_beautify) {
if (true) {
// Add support for AMD ( https://github.com/amdjs/amdjs-api/wiki/AMD#defineamd-property- )
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
__webpack_require__(/*! ./lib/beautify */ 51866),
__webpack_require__(/*! ./lib/beautify-css */ 41398),
__webpack_require__(/*! ./lib/beautify-html */ 79973)
__webpack_require__(/*! ./lib/beautify */ 32328),
__webpack_require__(/*! ./lib/beautify-css */ 34655),
__webpack_require__(/*! ./lib/beautify-html */ 32708)
], __WEBPACK_AMD_DEFINE_RESULT__ = (function(js_beautify, css_beautify, html_beautify) {
return get_beautify(js_beautify, css_beautify, html_beautify);
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
@ -87,10 +87,10 @@ if (true) {
/***/ }),
/***/ 41398:
/*!******************************************************************************!*\
!*** ./node_modules/_js-beautify@1.14.11@js-beautify/js/lib/beautify-css.js ***!
\******************************************************************************/
/***/ 34655:
/*!*****************************************************************************!*\
!*** ./node_modules/_js-beautify@1.15.1@js-beautify/js/lib/beautify-css.js ***!
\*****************************************************************************/
/***/ (function(module, exports) {
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/* AUTO-GENERATED. DO NOT MODIFY. */
@ -666,10 +666,10 @@ function Options(options, merge_child_field) {
this.indent_empty_lines = this._get_boolean('indent_empty_lines');
// valid templating languages ['django', 'erb', 'handlebars', 'php', 'smarty']
// For now, 'auto' = all off for javascript, all on for html (and inline javascript).
// valid templating languages ['django', 'erb', 'handlebars', 'php', 'smarty', 'angular']
// For now, 'auto' = all off for javascript, all except angular on for html (and inline javascript/css).
// other values ignored
this.templating = this._get_selection_list('templating', ['auto', 'none', 'django', 'erb', 'handlebars', 'php', 'smarty'], ['auto']);
this.templating = this._get_selection_list('templating', ['auto', 'none', 'angular', 'django', 'erb', 'handlebars', 'php', 'smarty'], ['auto']);
}
Options.prototype._get_array = function(name, default_value) {
@ -1066,7 +1066,7 @@ module.exports.Directives = Directives;
/***/ }),
/* 14 */,
/* 15 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_30126__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_30167__) {
/*jshint node:true */
/*
@ -1098,8 +1098,8 @@ module.exports.Directives = Directives;
var Beautifier = (__nested_webpack_require_30126__(16).Beautifier),
Options = (__nested_webpack_require_30126__(17).Options);
var Beautifier = (__nested_webpack_require_30167__(16).Beautifier),
Options = (__nested_webpack_require_30167__(17).Options);
function css_beautify(source_text, options) {
var beautifier = new Beautifier(source_text, options);
@ -1114,7 +1114,7 @@ module.exports.defaultOptions = function() {
/***/ }),
/* 16 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_31754__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_31795__) {
/*jshint node:true */
/*
@ -1146,10 +1146,10 @@ module.exports.defaultOptions = function() {
var Options = (__nested_webpack_require_31754__(17).Options);
var Output = (__nested_webpack_require_31754__(2).Output);
var InputScanner = (__nested_webpack_require_31754__(8).InputScanner);
var Directives = (__nested_webpack_require_31754__(13).Directives);
var Options = (__nested_webpack_require_31795__(17).Options);
var Output = (__nested_webpack_require_31795__(2).Output);
var InputScanner = (__nested_webpack_require_31795__(8).InputScanner);
var Directives = (__nested_webpack_require_31795__(13).Directives);
var directives_core = new Directives(/\/\*/, /\*\//);
@ -1667,7 +1667,7 @@ module.exports.Beautifier = Beautifier;
/***/ }),
/* 17 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_49864__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_49905__) {
/*jshint node:true */
/*
@ -1699,7 +1699,7 @@ module.exports.Beautifier = Beautifier;
var BaseOptions = (__nested_webpack_require_49864__(6).Options);
var BaseOptions = (__nested_webpack_require_49905__(6).Options);
function Options(options) {
BaseOptions.call(this, options, 'css');
@ -1734,7 +1734,7 @@ module.exports.Options = Options;
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __nested_webpack_require_52344__(moduleId) {
/******/ function __nested_webpack_require_52385__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
@ -1748,7 +1748,7 @@ module.exports.Options = Options;
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __nested_webpack_require_52344__);
/******/ __webpack_modules__[moduleId](module, module.exports, __nested_webpack_require_52385__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
@ -1759,7 +1759,7 @@ module.exports.Options = Options;
/******/ // startup
/******/ // Load entry module and return exports
/******/ // This entry module is referenced by other modules so it can't be inlined
/******/ var __nested_webpack_exports__ = __nested_webpack_require_52344__(15);
/******/ var __nested_webpack_exports__ = __nested_webpack_require_52385__(15);
/******/ legacy_beautify_css = __nested_webpack_exports__;
/******/
/******/ })()
@ -1781,10 +1781,10 @@ if (true) {
/***/ }),
/***/ 79973:
/*!*******************************************************************************!*\
!*** ./node_modules/_js-beautify@1.14.11@js-beautify/js/lib/beautify-html.js ***!
\*******************************************************************************/
/***/ 32708:
/*!******************************************************************************!*\
!*** ./node_modules/_js-beautify@1.15.1@js-beautify/js/lib/beautify-html.js ***!
\******************************************************************************/
/***/ (function(module, exports, __webpack_require__) {
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/* AUTO-GENERATED. DO NOT MODIFY. */
@ -2429,10 +2429,10 @@ function Options(options, merge_child_field) {
this.indent_empty_lines = this._get_boolean('indent_empty_lines');
// valid templating languages ['django', 'erb', 'handlebars', 'php', 'smarty']
// For now, 'auto' = all off for javascript, all on for html (and inline javascript).
// valid templating languages ['django', 'erb', 'handlebars', 'php', 'smarty', 'angular']
// For now, 'auto' = all off for javascript, all except angular on for html (and inline javascript/css).
// other values ignored
this.templating = this._get_selection_list('templating', ['auto', 'none', 'django', 'erb', 'handlebars', 'php', 'smarty'], ['auto']);
this.templating = this._get_selection_list('templating', ['auto', 'none', 'angular', 'django', 'erb', 'handlebars', 'php', 'smarty'], ['auto']);
}
Options.prototype._get_array = function(name, default_value) {
@ -2756,7 +2756,7 @@ module.exports.InputScanner = InputScanner;
/***/ }),
/* 9 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_30287__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_30328__) {
/*jshint node:true */
/*
@ -2788,10 +2788,10 @@ module.exports.InputScanner = InputScanner;
var InputScanner = (__nested_webpack_require_30287__(8).InputScanner);
var Token = (__nested_webpack_require_30287__(3).Token);
var TokenStream = (__nested_webpack_require_30287__(10).TokenStream);
var WhitespacePattern = (__nested_webpack_require_30287__(11).WhitespacePattern);
var InputScanner = (__nested_webpack_require_30328__(8).InputScanner);
var Token = (__nested_webpack_require_30328__(3).Token);
var TokenStream = (__nested_webpack_require_30328__(10).TokenStream);
var WhitespacePattern = (__nested_webpack_require_30328__(11).WhitespacePattern);
var TOKEN = {
START: 'TK_START',
@ -2986,7 +2986,7 @@ module.exports.TokenStream = TokenStream;
/***/ }),
/* 11 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_36707__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_36748__) {
/*jshint node:true */
/*
@ -3018,7 +3018,7 @@ module.exports.TokenStream = TokenStream;
var Pattern = (__nested_webpack_require_36707__(12).Pattern);
var Pattern = (__nested_webpack_require_36748__(12).Pattern);
function WhitespacePattern(input_scanner, parent) {
Pattern.call(this, input_scanner, parent);
@ -3265,7 +3265,7 @@ module.exports.Directives = Directives;
/***/ }),
/* 14 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_45694__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_45735__) {
/*jshint node:true */
/*
@ -3297,7 +3297,7 @@ module.exports.Directives = Directives;
var Pattern = (__nested_webpack_require_45694__(12).Pattern);
var Pattern = (__nested_webpack_require_45735__(12).Pattern);
var template_names = {
@ -3305,7 +3305,8 @@ var template_names = {
erb: false,
handlebars: false,
php: false,
smarty: false
smarty: false,
angular: false
};
// This lets templates appear anywhere we would do a readUntil
@ -3485,7 +3486,7 @@ module.exports.TemplatablePattern = TemplatablePattern;
/* 16 */,
/* 17 */,
/* 18 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_53240__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_53299__) {
/*jshint node:true */
/*
@ -3517,8 +3518,8 @@ module.exports.TemplatablePattern = TemplatablePattern;
var Beautifier = (__nested_webpack_require_53240__(19).Beautifier),
Options = (__nested_webpack_require_53240__(20).Options);
var Beautifier = (__nested_webpack_require_53299__(19).Beautifier),
Options = (__nested_webpack_require_53299__(20).Options);
function style_html(html_source, options, js_beautify, css_beautify) {
var beautifier = new Beautifier(html_source, options, js_beautify, css_beautify);
@ -3533,7 +3534,7 @@ module.exports.defaultOptions = function() {
/***/ }),
/* 19 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_54918__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_54977__) {
/*jshint node:true */
/*
@ -3565,10 +3566,10 @@ module.exports.defaultOptions = function() {
var Options = (__nested_webpack_require_54918__(20).Options);
var Output = (__nested_webpack_require_54918__(2).Output);
var Tokenizer = (__nested_webpack_require_54918__(21).Tokenizer);
var TOKEN = (__nested_webpack_require_54918__(21).TOKEN);
var Options = (__nested_webpack_require_54977__(20).Options);
var Output = (__nested_webpack_require_54977__(2).Output);
var Tokenizer = (__nested_webpack_require_54977__(21).Tokenizer);
var TOKEN = (__nested_webpack_require_54977__(21).TOKEN);
var lineBreak = /\r\n|[\r\n]/;
var allLineBreaks = /\r\n|[\r\n]/g;
@ -3648,6 +3649,13 @@ Printer.prototype.indent = function() {
this.indent_level++;
};
Printer.prototype.deindent = function() {
if (this.indent_level > 0) {
this.indent_level--;
this._output.set_indent(this.indent_level, this.alignment_size);
}
};
Printer.prototype.get_full_indent = function(level) {
level = this.indent_level + (level || 0);
if (level < 1) {
@ -3842,6 +3850,10 @@ Beautifier.prototype.beautify = function() {
parser_token = this._handle_tag_close(printer, raw_token, last_tag_token);
} else if (raw_token.type === TOKEN.TEXT) {
parser_token = this._handle_text(printer, raw_token, last_tag_token);
} else if (raw_token.type === TOKEN.CONTROL_FLOW_OPEN) {
parser_token = this._handle_control_flow_open(printer, raw_token);
} else if (raw_token.type === TOKEN.CONTROL_FLOW_CLOSE) {
parser_token = this._handle_control_flow_close(printer, raw_token);
} else {
// This should never happen, but if it does. Print the raw token
printer.add_raw_token(raw_token);
@ -3856,6 +3868,38 @@ Beautifier.prototype.beautify = function() {
return sweet_code;
};
Beautifier.prototype._handle_control_flow_open = function(printer, raw_token) {
var parser_token = {
text: raw_token.text,
type: raw_token.type
};
printer.set_space_before_token(raw_token.newlines || raw_token.whitespace_before !== '', true);
if (raw_token.newlines) {
printer.print_preserved_newlines(raw_token);
} else {
printer.set_space_before_token(raw_token.newlines || raw_token.whitespace_before !== '', true);
}
printer.print_token(raw_token);
printer.indent();
return parser_token;
};
Beautifier.prototype._handle_control_flow_close = function(printer, raw_token) {
var parser_token = {
text: raw_token.text,
type: raw_token.type
};
printer.deindent();
if (raw_token.newlines) {
printer.print_preserved_newlines(raw_token);
} else {
printer.set_space_before_token(raw_token.newlines || raw_token.whitespace_before !== '', true);
}
printer.print_token(raw_token);
return parser_token;
};
Beautifier.prototype._handle_tag_close = function(printer, raw_token, last_tag_token) {
var parser_token = {
text: raw_token.text,
@ -4415,7 +4459,7 @@ module.exports.Beautifier = Beautifier;
/***/ }),
/* 20 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_91062__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_92532__) {
/*jshint node:true */
/*
@ -4447,7 +4491,7 @@ module.exports.Beautifier = Beautifier;
var BaseOptions = (__nested_webpack_require_91062__(6).Options);
var BaseOptions = (__nested_webpack_require_92532__(6).Options);
function Options(options) {
BaseOptions.call(this, options, 'html');
@ -4514,7 +4558,7 @@ module.exports.Options = Options;
/***/ }),
/* 21 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_95429__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_96899__) {
/*jshint node:true */
/*
@ -4546,15 +4590,17 @@ module.exports.Options = Options;
var BaseTokenizer = (__nested_webpack_require_95429__(9).Tokenizer);
var BASETOKEN = (__nested_webpack_require_95429__(9).TOKEN);
var Directives = (__nested_webpack_require_95429__(13).Directives);
var TemplatablePattern = (__nested_webpack_require_95429__(14).TemplatablePattern);
var Pattern = (__nested_webpack_require_95429__(12).Pattern);
var BaseTokenizer = (__nested_webpack_require_96899__(9).Tokenizer);
var BASETOKEN = (__nested_webpack_require_96899__(9).TOKEN);
var Directives = (__nested_webpack_require_96899__(13).Directives);
var TemplatablePattern = (__nested_webpack_require_96899__(14).TemplatablePattern);
var Pattern = (__nested_webpack_require_96899__(12).Pattern);
var TOKEN = {
TAG_OPEN: 'TK_TAG_OPEN',
TAG_CLOSE: 'TK_TAG_CLOSE',
CONTROL_FLOW_OPEN: 'TK_CONTROL_FLOW_OPEN',
CONTROL_FLOW_CLOSE: 'TK_CONTROL_FLOW_CLOSE',
ATTRIBUTE: 'TK_ATTRIBUTE',
EQUALS: 'TK_EQUALS',
VALUE: 'TK_VALUE',
@ -4579,11 +4625,13 @@ var Tokenizer = function(input_string, options) {
this.__patterns = {
word: templatable_reader.until(/[\n\r\t <]/),
word_control_flow_close_excluded: templatable_reader.until(/[\n\r\t <}]/),
single_quote: templatable_reader.until_after(/'/),
double_quote: templatable_reader.until_after(/"/),
attribute: templatable_reader.until(/[\n\r\t =>]|\/>/),
element_name: templatable_reader.until(/[\n\r\t >\/]/),
angular_control_flow_start: pattern_reader.matching(/\@[a-zA-Z]+[^({]*[({]/),
handlebars_comment: pattern_reader.starting_with(/{{!--/).until_after(/--}}/),
handlebars: pattern_reader.starting_with(/{{/).until_after(/}}/),
handlebars_open: pattern_reader.until(/[\n\r\t }]/),
@ -4597,6 +4645,7 @@ var Tokenizer = function(input_string, options) {
if (this._options.indent_handlebars) {
this.__patterns.word = this.__patterns.word.exclude('handlebars');
this.__patterns.word_control_flow_close_excluded = this.__patterns.word_control_flow_close_excluded.exclude('handlebars');
}
this._unformatted_content_delimiter = null;
@ -4615,14 +4664,16 @@ Tokenizer.prototype._is_comment = function(current_token) { // jshint unused:fal
};
Tokenizer.prototype._is_opening = function(current_token) {
return current_token.type === TOKEN.TAG_OPEN;
return current_token.type === TOKEN.TAG_OPEN || current_token.type === TOKEN.CONTROL_FLOW_OPEN;
};
Tokenizer.prototype._is_closing = function(current_token, open_token) {
return current_token.type === TOKEN.TAG_CLOSE &&
return (current_token.type === TOKEN.TAG_CLOSE &&
(open_token && (
((current_token.text === '>' || current_token.text === '/>') && open_token.text[0] === '<') ||
(current_token.text === '}}' && open_token.text[0] === '{' && open_token.text[1] === '{')));
(current_token.text === '}}' && open_token.text[0] === '{' && open_token.text[1] === '{')))
) || (current_token.type === TOKEN.CONTROL_FLOW_CLOSE &&
(current_token.text === '}' && open_token.text.endsWith('{')));
};
Tokenizer.prototype._reset = function() {
@ -4641,8 +4692,9 @@ Tokenizer.prototype._get_next_token = function(previous_token, open_token) { //
token = token || this._read_open_handlebars(c, open_token);
token = token || this._read_attribute(c, previous_token, open_token);
token = token || this._read_close(c, open_token);
token = token || this._read_control_flows(c, open_token);
token = token || this._read_raw_content(c, previous_token, open_token);
token = token || this._read_content_word(c);
token = token || this._read_content_word(c, open_token);
token = token || this._read_comment_or_cdata(c);
token = token || this._read_processing(c);
token = token || this._read_open(c, open_token);
@ -4707,7 +4759,7 @@ Tokenizer.prototype._read_processing = function(c) { // jshint unused:false
Tokenizer.prototype._read_open = function(c, open_token) {
var resulting_string = null;
var token = null;
if (!open_token) {
if (!open_token || open_token.type === TOKEN.CONTROL_FLOW_OPEN) {
if (c === '<') {
resulting_string = this._input.next();
@ -4724,7 +4776,7 @@ Tokenizer.prototype._read_open = function(c, open_token) {
Tokenizer.prototype._read_open_handlebars = function(c, open_token) {
var resulting_string = null;
var token = null;
if (!open_token) {
if (!open_token || open_token.type === TOKEN.CONTROL_FLOW_OPEN) {
if (this._options.indent_handlebars && c === '{' && this._input.peek(1) === '{') {
if (this._input.peek(2) === '!') {
resulting_string = this.__patterns.handlebars_comment.read();
@ -4739,11 +4791,48 @@ Tokenizer.prototype._read_open_handlebars = function(c, open_token) {
return token;
};
Tokenizer.prototype._read_control_flows = function(c, open_token) {
var resulting_string = '';
var token = null;
// Only check for control flows if angular templating is set AND indenting is set
if (!this._options.templating.includes('angular') || !this._options.indent_handlebars) {
return token;
}
if (c === '@') {
resulting_string = this.__patterns.angular_control_flow_start.read();
if (resulting_string === '') {
return token;
}
var opening_parentheses_count = resulting_string.endsWith('(') ? 1 : 0;
var closing_parentheses_count = 0;
// The opening brace of the control flow is where the number of opening and closing parentheses equal
// e.g. @if({value: true} !== null) {
while (!(resulting_string.endsWith('{') && opening_parentheses_count === closing_parentheses_count)) {
var next_char = this._input.next();
if (next_char === null) {
break;
} else if (next_char === '(') {
opening_parentheses_count++;
} else if (next_char === ')') {
closing_parentheses_count++;
}
resulting_string += next_char;
}
token = this._create_token(TOKEN.CONTROL_FLOW_OPEN, resulting_string);
} else if (c === '}' && open_token && open_token.type === TOKEN.CONTROL_FLOW_OPEN) {
resulting_string = this._input.next();
token = this._create_token(TOKEN.CONTROL_FLOW_CLOSE, resulting_string);
}
return token;
};
Tokenizer.prototype._read_close = function(c, open_token) {
var resulting_string = null;
var token = null;
if (open_token) {
if (open_token && open_token.type === TOKEN.TAG_OPEN) {
if (open_token.text[0] === '<' && (c === '>' || (c === '/' && this._input.peek(1) === '>'))) {
resulting_string = this._input.next();
if (c === '/') { // for close tag "/>"
@ -4830,7 +4919,7 @@ Tokenizer.prototype._read_raw_content = function(c, previous_token, open_token)
return null;
};
Tokenizer.prototype._read_content_word = function(c) {
Tokenizer.prototype._read_content_word = function(c, open_token) {
var resulting_string = '';
if (this._options.unformatted_content_delimiter) {
if (c === this._options.unformatted_content_delimiter[0]) {
@ -4839,7 +4928,7 @@ Tokenizer.prototype._read_content_word = function(c) {
}
if (!resulting_string) {
resulting_string = this.__patterns.word.read();
resulting_string = (open_token && open_token.type === TOKEN.CONTROL_FLOW_OPEN) ? this.__patterns.word_control_flow_close_excluded.read() : this.__patterns.word.read();
}
if (resulting_string) {
return this._create_token(TOKEN.TEXT, resulting_string);
@ -4857,7 +4946,7 @@ module.exports.TOKEN = TOKEN;
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __nested_webpack_require_107323__(moduleId) {
/******/ function __nested_webpack_require_111122__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
@ -4871,7 +4960,7 @@ module.exports.TOKEN = TOKEN;
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __nested_webpack_require_107323__);
/******/ __webpack_modules__[moduleId](module, module.exports, __nested_webpack_require_111122__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
@ -4882,7 +4971,7 @@ module.exports.TOKEN = TOKEN;
/******/ // startup
/******/ // Load entry module and return exports
/******/ // This entry module is referenced by other modules so it can't be inlined
/******/ var __nested_webpack_exports__ = __nested_webpack_require_107323__(18);
/******/ var __nested_webpack_exports__ = __nested_webpack_require_111122__(18);
/******/ legacy_beautify_html = __nested_webpack_exports__;
/******/
/******/ })()
@ -4891,9 +4980,9 @@ var style_html = legacy_beautify_html;
/* Footer */
if (true) {
// Add support for AMD ( https://github.com/amdjs/amdjs-api/wiki/AMD#defineamd-property- )
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__, __webpack_require__(/*! ./beautify */ 51866), __webpack_require__(/*! ./beautify-css */ 41398)], __WEBPACK_AMD_DEFINE_RESULT__ = (function(requireamd) {
var js_beautify = __webpack_require__(/*! ./beautify */ 51866);
var css_beautify = __webpack_require__(/*! ./beautify-css */ 41398);
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__, __webpack_require__(/*! ./beautify */ 32328), __webpack_require__(/*! ./beautify-css */ 34655)], __WEBPACK_AMD_DEFINE_RESULT__ = (function(requireamd) {
var js_beautify = __webpack_require__(/*! ./beautify */ 32328);
var css_beautify = __webpack_require__(/*! ./beautify-css */ 34655);
return {
html_beautify: function(html_source, options) {
@ -4909,10 +4998,10 @@ if (true) {
/***/ }),
/***/ 51866:
/*!**************************************************************************!*\
!*** ./node_modules/_js-beautify@1.14.11@js-beautify/js/lib/beautify.js ***!
\**************************************************************************/
/***/ 32328:
/*!*************************************************************************!*\
!*** ./node_modules/_js-beautify@1.15.1@js-beautify/js/lib/beautify.js ***!
\*************************************************************************/
/***/ (function(module, exports) {
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/* AUTO-GENERATED. DO NOT MODIFY. */
@ -7263,10 +7352,10 @@ function Options(options, merge_child_field) {
this.indent_empty_lines = this._get_boolean('indent_empty_lines');
// valid templating languages ['django', 'erb', 'handlebars', 'php', 'smarty']
// For now, 'auto' = all off for javascript, all on for html (and inline javascript).
// valid templating languages ['django', 'erb', 'handlebars', 'php', 'smarty', 'angular']
// For now, 'auto' = all off for javascript, all except angular on for html (and inline javascript/css).
// other values ignored
this.templating = this._get_selection_list('templating', ['auto', 'none', 'django', 'erb', 'handlebars', 'php', 'smarty'], ['auto']);
this.templating = this._get_selection_list('templating', ['auto', 'none', 'angular', 'django', 'erb', 'handlebars', 'php', 'smarty'], ['auto']);
}
Options.prototype._get_array = function(name, default_value) {
@ -7391,7 +7480,7 @@ module.exports.mergeOpts = _mergeOpts;
/***/ }),
/* 7 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_98714__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_98755__) {
/*jshint node:true */
/*
@ -7423,13 +7512,13 @@ module.exports.mergeOpts = _mergeOpts;
var InputScanner = (__nested_webpack_require_98714__(8).InputScanner);
var BaseTokenizer = (__nested_webpack_require_98714__(9).Tokenizer);
var BASETOKEN = (__nested_webpack_require_98714__(9).TOKEN);
var Directives = (__nested_webpack_require_98714__(13).Directives);
var acorn = __nested_webpack_require_98714__(4);
var Pattern = (__nested_webpack_require_98714__(12).Pattern);
var TemplatablePattern = (__nested_webpack_require_98714__(14).TemplatablePattern);
var InputScanner = (__nested_webpack_require_98755__(8).InputScanner);
var BaseTokenizer = (__nested_webpack_require_98755__(9).Tokenizer);
var BASETOKEN = (__nested_webpack_require_98755__(9).TOKEN);
var Directives = (__nested_webpack_require_98755__(13).Directives);
var acorn = __nested_webpack_require_98755__(4);
var Pattern = (__nested_webpack_require_98755__(12).Pattern);
var TemplatablePattern = (__nested_webpack_require_98755__(14).TemplatablePattern);
function in_array(what, arr) {
@ -8181,7 +8270,7 @@ module.exports.InputScanner = InputScanner;
/***/ }),
/* 9 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_124576__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_124617__) {
/*jshint node:true */
/*
@ -8213,10 +8302,10 @@ module.exports.InputScanner = InputScanner;
var InputScanner = (__nested_webpack_require_124576__(8).InputScanner);
var Token = (__nested_webpack_require_124576__(3).Token);
var TokenStream = (__nested_webpack_require_124576__(10).TokenStream);
var WhitespacePattern = (__nested_webpack_require_124576__(11).WhitespacePattern);
var InputScanner = (__nested_webpack_require_124617__(8).InputScanner);
var Token = (__nested_webpack_require_124617__(3).Token);
var TokenStream = (__nested_webpack_require_124617__(10).TokenStream);
var WhitespacePattern = (__nested_webpack_require_124617__(11).WhitespacePattern);
var TOKEN = {
START: 'TK_START',
@ -8411,7 +8500,7 @@ module.exports.TokenStream = TokenStream;
/***/ }),
/* 11 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_130996__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_131037__) {
/*jshint node:true */
/*
@ -8443,7 +8532,7 @@ module.exports.TokenStream = TokenStream;
var Pattern = (__nested_webpack_require_130996__(12).Pattern);
var Pattern = (__nested_webpack_require_131037__(12).Pattern);
function WhitespacePattern(input_scanner, parent) {
Pattern.call(this, input_scanner, parent);
@ -8690,7 +8779,7 @@ module.exports.Directives = Directives;
/***/ }),
/* 14 */
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_139983__) {
/***/ (function(module, __unused_webpack_exports, __nested_webpack_require_140024__) {
/*jshint node:true */
/*
@ -8722,7 +8811,7 @@ module.exports.Directives = Directives;
var Pattern = (__nested_webpack_require_139983__(12).Pattern);
var Pattern = (__nested_webpack_require_140024__(12).Pattern);
var template_names = {
@ -8730,7 +8819,8 @@ var template_names = {
erb: false,
handlebars: false,
php: false,
smarty: false
smarty: false,
angular: false
};
// This lets templates appear anywhere we would do a readUntil
@ -8912,7 +9002,7 @@ module.exports.TemplatablePattern = TemplatablePattern;
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __nested_webpack_require_147658__(moduleId) {
/******/ function __nested_webpack_require_147717__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
@ -8926,7 +9016,7 @@ module.exports.TemplatablePattern = TemplatablePattern;
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __nested_webpack_require_147658__);
/******/ __webpack_modules__[moduleId](module, module.exports, __nested_webpack_require_147717__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
@ -8937,7 +9027,7 @@ module.exports.TemplatablePattern = TemplatablePattern;
/******/ // startup
/******/ // Load entry module and return exports
/******/ // This entry module is referenced by other modules so it can't be inlined
/******/ var __nested_webpack_exports__ = __nested_webpack_require_147658__(0);
/******/ var __nested_webpack_exports__ = __nested_webpack_require_147717__(0);
/******/ legacy_beautify_js = __nested_webpack_exports__;
/******/
/******/ })()

@ -588,7 +588,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -3390,8 +3390,8 @@ var lodash = __webpack_require__(89392);
var lodash_default = /*#__PURE__*/__webpack_require__.n(lodash);
// EXTERNAL MODULE: ./node_modules/_flv.js@1.5.0@flv.js/src/flv.js + 38 modules
var flv = __webpack_require__(51021);
// EXTERNAL MODULE: ./node_modules/_hls.js@1.5.3@hls.js/dist/hls.mjs
var hls = __webpack_require__(95105);
// EXTERNAL MODULE: ./node_modules/_hls.js@1.5.6@hls.js/dist/hls.mjs
var hls = __webpack_require__(70535);
;// CONCATENATED MODULE: ./src/components/Video/LivePlay/index.jsx
@ -18678,7 +18678,7 @@ var StatisticsResult_Page = function Page(_ref) {
var detailsRef = (0,_react_17_0_2_react.useRef)(null);
var dataZoomPosition = (0,_react_17_0_2_react.useRef)({
start: 0,
end: 30
end: 100
});
var _Form$useForm = es_form/* default */.Z.useForm(),
_Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
@ -18880,6 +18880,7 @@ var StatisticsResult_Page = function Page(_ref) {
param,
dealCurrentValue,
res,
end,
_args3 = arguments;
return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
while (1) switch (_context3.prev = _context3.next) {
@ -18903,9 +18904,10 @@ var StatisticsResult_Page = function Page(_ref) {
res = _context3.sent;
if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
setQuestionData(res === null || res === void 0 ? void 0 : res.rate_list);
end = Math.floor(29 * 100 / (res === null || res === void 0 ? void 0 : res.rate_list.length));
dataZoomPosition.current = {
start: 0,
end: 30
end: end
};
}
setQuestionLoading(false);
@ -19059,7 +19061,7 @@ var StatisticsResult_Page = function Page(_ref) {
return '';
}
},
dataZoom: [seriesData.length > 20 ? objectSpread2_default()({
dataZoom: [seriesData.length > 30 ? objectSpread2_default()({
type: 'slider',
show: true
}, dataZoomPosition.current) : {

@ -2101,6 +2101,7 @@ div[class~="ant-modal-confirm-content"] {
align-items: center;
height: 94px;
border: 1px solid #F6F7F9;
overflow: auto hidden;
}
.wrap___y4Bkb .table___gdAJP aside {
flex: 1 1;
@ -2125,6 +2126,7 @@ div[class~="ant-modal-confirm-content"] {
color: #000000;
line-height: 50px;
padding: 0 11px;
white-space: nowrap;
}
.FormCheckBoxDom___NtsDC {
padding: 20px 20px 0 !important;

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -515,7 +515,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -431,7 +431,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -435,7 +435,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -389,7 +389,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -389,7 +389,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -473,7 +473,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -2036,8 +2036,8 @@ var message = __webpack_require__(8591);
var dropdown = __webpack_require__(38854);
// EXTERNAL MODULE: ./node_modules/_flv.js@1.5.0@flv.js/src/flv.js + 38 modules
var flv = __webpack_require__(51021);
// EXTERNAL MODULE: ./node_modules/_hls.js@1.5.3@hls.js/dist/hls.mjs
var dist_hls = __webpack_require__(95105);
// EXTERNAL MODULE: ./node_modules/_hls.js@1.5.6@hls.js/dist/hls.mjs
var dist_hls = __webpack_require__(70535);
// EXTERNAL MODULE: ./src/utils/authority.ts
var authority = __webpack_require__(63813);
// EXTERNAL MODULE: ./node_modules/_react-copy-to-clipboard@5.0.2@react-copy-to-clipboard/lib/index.js

@ -389,7 +389,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -478,7 +478,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -2047,8 +2047,8 @@ var message = __webpack_require__(8591);
var dropdown = __webpack_require__(38854);
// EXTERNAL MODULE: ./node_modules/_flv.js@1.5.0@flv.js/src/flv.js + 38 modules
var flv = __webpack_require__(51021);
// EXTERNAL MODULE: ./node_modules/_hls.js@1.5.3@hls.js/dist/hls.mjs
var dist_hls = __webpack_require__(95105);
// EXTERNAL MODULE: ./node_modules/_hls.js@1.5.6@hls.js/dist/hls.mjs
var dist_hls = __webpack_require__(70535);
// EXTERNAL MODULE: ./src/utils/authority.ts
var authority = __webpack_require__(63813);
// EXTERNAL MODULE: ./node_modules/_react-copy-to-clipboard@5.0.2@react-copy-to-clipboard/lib/index.js

@ -389,7 +389,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,8 +347,8 @@ var message = __webpack_require__(8591);
var dropdown = __webpack_require__(38854);
// EXTERNAL MODULE: ./node_modules/_flv.js@1.5.0@flv.js/src/flv.js + 38 modules
var flv = __webpack_require__(51021);
// EXTERNAL MODULE: ./node_modules/_hls.js@1.5.3@hls.js/dist/hls.mjs
var dist_hls = __webpack_require__(95105);
// EXTERNAL MODULE: ./node_modules/_hls.js@1.5.6@hls.js/dist/hls.mjs
var dist_hls = __webpack_require__(70535);
// EXTERNAL MODULE: ./src/utils/authority.ts
var authority = __webpack_require__(63813);
// EXTERNAL MODULE: ./node_modules/_react-copy-to-clipboard@5.0.2@react-copy-to-clipboard/lib/index.js

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -347,7 +347,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

@ -389,7 +389,7 @@ var jsx_runtime = __webpack_require__(37712);
/* harmony import */ var _utils_marked__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/utils/marked */ 39790);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! code-prettify */ 64018);
/* harmony import */ var code_prettify__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(code_prettify__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 95105);
/* harmony import */ var hls_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! hls.js */ 70535);
/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/env */ 83877);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! katex */ 15342);
/* harmony import */ var katex__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(katex__WEBPACK_IMPORTED_MODULE_10__);

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 1.5 MiB

@ -292,10 +292,10 @@ mark {
\*************************************************************************************************************************************************************************************************************************************************************************************/
@font-face {
font-family: "iconfont"; /* Project id 653600 */
src: url(./static/iconfont.2504b83e.woff2) format('woff2'),
url(./static/iconfont.bdf61ffa.woff) format('woff'),
url(./static/iconfont.263c63f5.ttf) format('truetype'),
url(./static/iconfont.c4a4c5da.svg#iconfont) format('svg');
src: url(./static/iconfont.34e57fd0.woff2) format('woff2'),
url(./static/iconfont.6ee875d2.woff) format('woff'),
url(./static/iconfont.5d7b6987.ttf) format('truetype'),
url(./static/iconfont.8e4c3df5.svg#iconfont) format('svg');
}
.iconfont {

474
umi.js

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save