autoUpdataFile

dev_local_v9_brain_cloud_competitions
eduauto 1 year ago
parent c00d88c018
commit dd3ffa504d

@ -23169,7 +23169,7 @@ module.exports = typeof Reflect === 'function' && Reflect.apply;
"use strict";
var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ 3091);
var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ 21010);
var callBind = __webpack_require__(/*! ./ */ 91500);
@ -23197,7 +23197,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
var setFunctionLength = __webpack_require__(/*! set-function-length */ 96554);
var $defineProperty = __webpack_require__(/*! es-define-property */ 31989);
var $defineProperty = __webpack_require__(/*! es-define-property */ 68506);
var callBindBasic = __webpack_require__(/*! call-bind-apply-helpers */ 93609);
var applyBind = __webpack_require__(/*! call-bind-apply-helpers/applyBind */ 83565);
@ -23356,7 +23356,7 @@ module.exports = copy;
"use strict";
var $defineProperty = __webpack_require__(/*! es-define-property */ 31989);
var $defineProperty = __webpack_require__(/*! es-define-property */ 68506);
var $SyntaxError = __webpack_require__(/*! es-errors/syntax */ 35041);
var $TypeError = __webpack_require__(/*! es-errors/type */ 61054);
@ -23414,19 +23414,51 @@ module.exports = function defineDataProperty(
/***/ }),
/***/ 31989:
/*!****************************************************************************!*\
!*** ./node_modules/_es-define-property@1.0.0@es-define-property/index.js ***!
\****************************************************************************/
/***/ 22359:
/*!**************************************************************!*\
!*** ./node_modules/_dunder-proto@1.0.0@dunder-proto/get.js ***!
\**************************************************************/
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
"use strict";
var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ 3091);
var callBind = __webpack_require__(/*! call-bind-apply-helpers */ 93609);
var gOPD = __webpack_require__(/*! gopd */ 46834);
// eslint-disable-next-line no-extra-parens, no-proto
var hasProtoAccessor = /** @type {{ __proto__?: typeof Array.prototype }} */ ([]).__proto__ === Array.prototype;
// eslint-disable-next-line no-extra-parens
var desc = hasProtoAccessor && gOPD && gOPD(Object.prototype, /** @type {keyof typeof Object.prototype} */ ('__proto__'));
var $Object = Object;
var $getPrototypeOf = $Object.getPrototypeOf;
/** @type {import('./get')} */
module.exports = desc && typeof desc.get === 'function'
? callBind([desc.get])
: typeof $getPrototypeOf === 'function'
? /** @type {import('./get')} */ function getDunder(value) {
// eslint-disable-next-line eqeqeq
return $getPrototypeOf(value == null ? value : $Object(value));
}
: false;
/***/ }),
/***/ 68506:
/*!****************************************************************************!*\
!*** ./node_modules/_es-define-property@1.0.1@es-define-property/index.js ***!
\****************************************************************************/
/***/ (function(module) {
"use strict";
/** @type {import('.')} */
var $defineProperty = GetIntrinsic('%Object.defineProperty%', true) || false;
var $defineProperty = Object.defineProperty || false;
if ($defineProperty) {
try {
$defineProperty({}, 'a', { value: 1 });
@ -24042,9 +24074,9 @@ module.exports = Function.prototype.bind || implementation;
/***/ }),
/***/ 3091:
/***/ 21010:
/*!******************************************************************!*\
!*** ./node_modules/_get-intrinsic@1.2.4@get-intrinsic/index.js ***!
!*** ./node_modules/_get-intrinsic@1.2.5@get-intrinsic/index.js ***!
\******************************************************************/
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@ -24070,14 +24102,8 @@ var getEvalledConstructor = function (expressionSyntax) {
} catch (e) {}
};
var $gOPD = Object.getOwnPropertyDescriptor;
if ($gOPD) {
try {
$gOPD({}, '');
} catch (e) {
$gOPD = null; // this is IE 8, which has a broken gOPD
}
}
var $gOPD = __webpack_require__(/*! gopd */ 46834);
var $defineProperty = __webpack_require__(/*! es-define-property */ 68506);
var throwTypeError = function () {
throw new $TypeError();
@ -24100,13 +24126,14 @@ var ThrowTypeError = $gOPD
: throwTypeError;
var hasSymbols = __webpack_require__(/*! has-symbols */ 80537)();
var hasProto = __webpack_require__(/*! has-proto */ 54465)();
var getDunderProto = __webpack_require__(/*! dunder-proto/get */ 22359);
var getProto = Object.getPrototypeOf || (
hasProto
? function (x) { return x.__proto__; } // eslint-disable-line no-proto
: null
);
var getProto = (typeof Reflect === 'function' && Reflect.getPrototypeOf)
|| Object.getPrototypeOf
|| getDunderProto;
var $apply = __webpack_require__(/*! call-bind-apply-helpers/functionApply */ 64400);
var $call = __webpack_require__(/*! call-bind-apply-helpers/functionCall */ 30932);
var needsEval = {};
@ -24154,6 +24181,7 @@ var INTRINSICS = {
'%Math%': Math,
'%Number%': Number,
'%Object%': Object,
'%Object.getOwnPropertyDescriptor%': $gOPD,
'%parseFloat%': parseFloat,
'%parseInt%': parseInt,
'%Promise%': typeof Promise === 'undefined' ? undefined : Promise,
@ -24179,7 +24207,11 @@ var INTRINSICS = {
'%URIError%': $URIError,
'%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,
'%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef,
'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet
'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet,
'%Function.prototype.call%': $call,
'%Function.prototype.apply%': $apply,
'%Object.defineProperty%': $defineProperty
};
if (getProto) {
@ -24274,11 +24306,11 @@ var LEGACY_ALIASES = {
var bind = __webpack_require__(/*! function-bind */ 36723);
var hasOwn = __webpack_require__(/*! hasown */ 20128);
var $concat = bind.call(Function.call, Array.prototype.concat);
var $spliceApply = bind.call(Function.apply, Array.prototype.splice);
var $replace = bind.call(Function.call, String.prototype.replace);
var $strSlice = bind.call(Function.call, String.prototype.slice);
var $exec = bind.call(Function.call, RegExp.prototype.exec);
var $concat = bind.call($call, Array.prototype.concat);
var $spliceApply = bind.call($apply, Array.prototype.splice);
var $replace = bind.call($call, String.prototype.replace);
var $strSlice = bind.call($call, String.prototype.slice);
var $exec = bind.call($call, RegExp.prototype.exec);
/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */
var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
@ -24462,7 +24494,7 @@ module.exports = $gOPD;
"use strict";
var $defineProperty = __webpack_require__(/*! es-define-property */ 31989);
var $defineProperty = __webpack_require__(/*! es-define-property */ 68506);
var hasPropertyDescriptors = function hasPropertyDescriptors() {
return !!$defineProperty;
@ -24484,32 +24516,6 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
module.exports = hasPropertyDescriptors;
/***/ }),
/***/ 54465:
/*!**********************************************************!*\
!*** ./node_modules/_has-proto@1.1.0@has-proto/index.js ***!
\**********************************************************/
/***/ (function(module) {
"use strict";
var test = {
__proto__: null,
foo: {}
};
// @ts-expect-error: TS errors on an inherited property for some reason
var result = { __proto__: test }.foo === test.foo
&& !(test instanceof Object);
/** @type {import('.')} */
module.exports = function hasProto() {
return result;
};
/***/ }),
/***/ 80537:
@ -27847,7 +27853,7 @@ module.exports = __webpack_require__(/*! ./dist/InfiniteScroll */ 51581)
"use strict";
var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ 3091);
var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ 21010);
var define = __webpack_require__(/*! define-data-property */ 67494);
var hasDescriptors = __webpack_require__(/*! has-property-descriptors */ 3192)();
var gOPD = __webpack_require__(/*! gopd */ 46834);

@ -27,7 +27,7 @@
display: block !important;
}
</style><script>if(document.domain !== "www.educoder.net") document.title = '';</script>
<script src="/react/build/umi.5e1df733.js"></script>
<script src="/react/build/umi.2dd75852.js"></script>
<script src="/react/build/js/public.js"></script>
</body>
</html>

@ -12045,19 +12045,25 @@ var Ranking_competitionsPage = function competitionsPage(_ref) {
}, {
title: '评分维度',
align: 'right',
dataIndex: 'team_id',
dataIndex: 'dim',
render: function render(text, record) {
if (record !== null && record !== void 0 && record.dim) {
var _record$dim, _record$dim2, _record$dim3;
return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
children: ["PLCC:", (record === null || record === void 0 || (_record$dim = record.dim) === null || _record$dim === void 0 ? void 0 : _record$dim.PLCC) || '--']
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
children: ["SRCC:", (record === null || record === void 0 || (_record$dim2 = record.dim) === null || _record$dim2 === void 0 ? void 0 : _record$dim2.SRCC) || '--']
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
children: ["UR:", (record === null || record === void 0 || (_record$dim3 = record.dim) === null || _record$dim3 === void 0 ? void 0 : _record$dim3.UR) || '--']
})]
return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
children: Object.entries(record === null || record === void 0 ? void 0 : record.dim).map(function (_ref3) {
var _ref4 = slicedToArray_default()(_ref3, 2),
key = _ref4[0],
value = _ref4[1];
return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
children: "".concat(key, " : ").concat(value, " ")
}, key);
})
});
// return <div>
// <div>PLCC:{record?.dim?.PLCC || '--'}</div>
// <div>SRCC:{record?.dim?.SRCC || '--'}</div>
// <div>UR:{record?.dim?.UR || '--'}</div>
// {/* <span>info:{record?.dim?.info || '--'}</span> */}
// </div>
} else {
return '--';
}
@ -12268,11 +12274,11 @@ var Ranking_competitionsPage = function competitionsPage(_ref) {
})]
});
};
/* harmony default export */ var Ranking = ((0,_umi_production_exports.connect)(function (_ref4) {
var competitions = _ref4.competitions,
loading = _ref4.loading,
globalSetting = _ref4.globalSetting,
user = _ref4.user;
/* harmony default export */ var Ranking = ((0,_umi_production_exports.connect)(function (_ref6) {
var competitions = _ref6.competitions,
loading = _ref6.loading,
globalSetting = _ref6.globalSetting,
user = _ref6.user;
return {
competitions: competitions,
globalSetting: globalSetting,
@ -15975,19 +15981,25 @@ var Playerwork = function Playerwork(_ref) {
}
}, {
title: "评分维度",
dataIndex: "commit_id",
dataIndex: "dim",
render: function render(text, record) {
if (record !== null && record !== void 0 && record.dim) {
var _record$dim, _record$dim2, _record$dim3;
return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
children: ["PLCC:", (record === null || record === void 0 || (_record$dim = record.dim) === null || _record$dim === void 0 ? void 0 : _record$dim.PLCC) || '--']
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
children: ["SRCC:", (record === null || record === void 0 || (_record$dim2 = record.dim) === null || _record$dim2 === void 0 ? void 0 : _record$dim2.SRCC) || '--']
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
children: ["UR:", (record === null || record === void 0 || (_record$dim3 = record.dim) === null || _record$dim3 === void 0 ? void 0 : _record$dim3.UR) || '--']
})]
return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
children: Object.entries(record === null || record === void 0 ? void 0 : record.dim).map(function (_ref2) {
var _ref3 = slicedToArray_default()(_ref2, 2),
key = _ref3[0],
value = _ref3[1];
return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
children: "".concat(key, " : ").concat(value, " ")
}, key);
})
});
// return <div>
// <div>PLCC:{record?.dim?.PLCC || '--'}</div>
// <div>SRCC:{record?.dim?.SRCC || '--'}</div>
// <div>UR:{record?.dim?.UR || '--'}</div>
// {/* <span>info:{record?.dim?.info || '--'}</span> */}
// </div>
} else {
return '--';
}
@ -16254,7 +16266,7 @@ var Playerwork = function Playerwork(_ref) {
});
console.log("Columns---", Columns);
var getData = /*#__PURE__*/function () {
var _ref4 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4() {
var _ref6 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4() {
return regeneratorRuntime_default()().wrap(function _callee4$(_context4) {
while (1) switch (_context4.prev = _context4.next) {
case 0:
@ -16271,7 +16283,7 @@ var Playerwork = function Playerwork(_ref) {
}, _callee4);
}));
return function getData() {
return _ref4.apply(this, arguments);
return _ref6.apply(this, arguments);
};
}();
(0,_react_17_0_2_react.useEffect)(function () {
@ -16533,11 +16545,11 @@ var Playerwork = function Playerwork(_ref) {
})]
});
};
/* harmony default export */ var Edit_Playerwork = ((0,_umi_production_exports.connect)(function (_ref8) {
var competitions = _ref8.competitions,
loading = _ref8.loading,
globalSetting = _ref8.globalSetting,
user = _ref8.user;
/* harmony default export */ var Edit_Playerwork = ((0,_umi_production_exports.connect)(function (_ref10) {
var competitions = _ref10.competitions,
loading = _ref10.loading,
globalSetting = _ref10.globalSetting,
user = _ref10.user;
return {
competitions: competitions,
globalSetting: globalSetting,

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save