2016-07-18 16:39:37 +00:00
|
|
|
|
// locale
|
|
|
|
|
uojLocaleData = {
|
|
|
|
|
"username": {
|
|
|
|
|
"en": "Username",
|
|
|
|
|
"zh-cn": "用户名"
|
|
|
|
|
},
|
|
|
|
|
"contests::total score": {
|
|
|
|
|
"en": "Score",
|
|
|
|
|
"zh-cn": "总分"
|
|
|
|
|
},
|
|
|
|
|
"contests::n participants": {
|
|
|
|
|
"en": function(n) {
|
|
|
|
|
return n + " participant" + (n <= 1 ? '' : 's');
|
|
|
|
|
},
|
|
|
|
|
"zh-cn": function(n) {
|
|
|
|
|
return "共 " + n + " 名参赛者";
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"click-zan::good": {
|
|
|
|
|
"en": "Good",
|
|
|
|
|
"zh-cn": "好评"
|
|
|
|
|
},
|
|
|
|
|
"click-zan::bad": {
|
|
|
|
|
"en": "Bad",
|
|
|
|
|
"zh-cn": "差评"
|
|
|
|
|
},
|
|
|
|
|
"editor::language": {
|
|
|
|
|
"en": "Language",
|
|
|
|
|
"zh-cn": "语言"
|
|
|
|
|
},
|
|
|
|
|
"editor::browse": {
|
|
|
|
|
"en": "Browse",
|
|
|
|
|
"zh-cn": "浏览"
|
|
|
|
|
},
|
2023-02-01 10:11:26 +00:00
|
|
|
|
"editor::upload source": {
|
|
|
|
|
"en": "Source",
|
|
|
|
|
"zh-cn": "来源"
|
|
|
|
|
},
|
2016-07-18 16:39:37 +00:00
|
|
|
|
"editor::upload by editor": {
|
2023-02-01 10:11:26 +00:00
|
|
|
|
"en": "Editor",
|
|
|
|
|
"zh-cn": "编辑器"
|
2016-07-18 16:39:37 +00:00
|
|
|
|
},
|
|
|
|
|
"editor::upload from local": {
|
2023-02-01 10:11:26 +00:00
|
|
|
|
"en": "Local file",
|
|
|
|
|
"zh-cn": "本地文件"
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function uojLocale(name) {
|
|
|
|
|
locale = $.cookie('uoj_locale');
|
|
|
|
|
if (uojLocaleData[name] === undefined) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
if (uojLocaleData[name][locale] === undefined) {
|
|
|
|
|
locale = 'zh-cn';
|
|
|
|
|
}
|
|
|
|
|
val = uojLocaleData[name][locale];
|
|
|
|
|
if (!$.isFunction(val)) {
|
|
|
|
|
return val;
|
|
|
|
|
} else {
|
|
|
|
|
var args = [];
|
|
|
|
|
for (var i = 1; i < arguments.length; i++) {
|
|
|
|
|
args.push(arguments[i]);
|
|
|
|
|
}
|
|
|
|
|
return val.apply(this, args);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// utility
|
|
|
|
|
function strToDate(str) {
|
|
|
|
|
var a = str.split(/[^0-9]/);
|
|
|
|
|
return new Date(
|
|
|
|
|
parseInt(a[0]),
|
|
|
|
|
parseInt(a[1]) - 1,
|
|
|
|
|
parseInt(a[2]),
|
|
|
|
|
parseInt(a[3]),
|
|
|
|
|
parseInt(a[4]),
|
|
|
|
|
parseInt(a[5]),
|
|
|
|
|
0);
|
|
|
|
|
}
|
|
|
|
|
function dateToStr(date) {
|
|
|
|
|
return date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate() + ' ' + date.getHours() + ':' + date.getMinutes() + ':' + date.getSeconds();
|
|
|
|
|
}
|
|
|
|
|
function toFilledStr(o, f, l) {
|
|
|
|
|
var s = o.toString();
|
|
|
|
|
while (s.length < l) {
|
|
|
|
|
s = f.toString() + s;
|
|
|
|
|
}
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
function getPenaltyTimeStr(x) {
|
|
|
|
|
var ss = toFilledStr(x % 60, '0', 2);
|
|
|
|
|
x = Math.floor(x / 60);
|
|
|
|
|
var mm = toFilledStr(x % 60, '0', 2);
|
|
|
|
|
x = Math.floor(x / 60);
|
|
|
|
|
var hh = x.toString();
|
|
|
|
|
return hh + ':' + mm + ':' + ss;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function htmlspecialchars(str)
|
|
|
|
|
{
|
|
|
|
|
var s = "";
|
|
|
|
|
if (str.length == 0) return "";
|
|
|
|
|
s = str.replace(/&/g, "&");
|
|
|
|
|
s = s.replace(/</g, "<");
|
|
|
|
|
s = s.replace(/>/g, ">");
|
|
|
|
|
s = s.replace(/"/g, """);
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getColOfScore(score) {
|
|
|
|
|
if (score == 0) {
|
|
|
|
|
return ColorConverter.toStr(ColorConverter.toRGB(new HSV(0, 100, 80)));
|
|
|
|
|
} else if (score == 100) {
|
|
|
|
|
return ColorConverter.toStr(ColorConverter.toRGB(new HSV(120, 100, 80)));
|
|
|
|
|
} else {
|
|
|
|
|
return ColorConverter.toStr(ColorConverter.toRGB(new HSV(30 + score * 60 / 100, 100, 90)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-14 10:24:03 +00:00
|
|
|
|
function getUserLink(username, realname, color) {
|
2016-07-18 16:39:37 +00:00
|
|
|
|
if (!username) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
var text = username;
|
2023-01-14 10:24:03 +00:00
|
|
|
|
var style = '';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
if (username.charAt(0) == '@') {
|
|
|
|
|
username = username.substr(1);
|
|
|
|
|
}
|
2022-03-17 10:26:29 +00:00
|
|
|
|
if (realname) {
|
2022-09-21 09:18:53 +00:00
|
|
|
|
text = text + ' <span class="uoj-realname d-inline-block">(' + realname + ')</span>';
|
2022-03-17 10:26:29 +00:00
|
|
|
|
}
|
2023-01-14 10:24:03 +00:00
|
|
|
|
if (color) {
|
|
|
|
|
style += 'color: ' + color + ';';
|
|
|
|
|
}
|
|
|
|
|
return '<a class="uoj-username" href="' + uojHome + '/user/' + username + '" ' + 'style="' + style + '">' + text + '</a>';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}
|
2023-01-14 10:24:03 +00:00
|
|
|
|
function getUserSpan(username, realname, color) {
|
2016-07-18 16:39:37 +00:00
|
|
|
|
if (!username) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
var text = username;
|
2023-01-14 10:24:03 +00:00
|
|
|
|
var style = '';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
if (username.charAt(0) == '@') {
|
|
|
|
|
username = username.substr(1);
|
|
|
|
|
}
|
2022-03-17 10:26:29 +00:00
|
|
|
|
if (realname) {
|
2022-09-21 09:18:53 +00:00
|
|
|
|
text = text + ' <span class="uoj-realname d-inline-block">(' + realname + ')</span>';
|
2022-03-17 10:26:29 +00:00
|
|
|
|
}
|
2023-01-14 10:24:03 +00:00
|
|
|
|
if (color) {
|
|
|
|
|
style += 'color: ' + color + ';';
|
|
|
|
|
}
|
|
|
|
|
return '<span class="uoj-username" ' + 'style="' + style + '">' + text + '</span>';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function replaceWithHighlightUsername() {
|
|
|
|
|
var username = $(this).text();
|
2022-03-17 10:26:29 +00:00
|
|
|
|
var realname = $(this).data("realname");
|
2023-01-14 09:20:10 +00:00
|
|
|
|
var color = $(this).data("color");
|
|
|
|
|
|
2016-07-18 16:39:37 +00:00
|
|
|
|
if ($(this).data("link") != 0) {
|
2023-01-14 10:24:03 +00:00
|
|
|
|
$(this).replaceWith(getUserLink(username, realname, color));
|
2016-07-18 16:39:37 +00:00
|
|
|
|
} else {
|
2023-01-14 10:24:03 +00:00
|
|
|
|
$(this).replaceWith(getUserSpan(username, realname, color));
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-17 10:26:29 +00:00
|
|
|
|
$.fn.uoj_honor = function() {
|
|
|
|
|
return this.each(function() {
|
|
|
|
|
var honor = $(this).text();
|
|
|
|
|
var realname = $(this).data("realname");
|
|
|
|
|
if (realname) {
|
|
|
|
|
honor = honor + ' (' + realname + ')';
|
|
|
|
|
}
|
|
|
|
|
$(this).css('color', '#007bff').html(honor);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-18 16:39:37 +00:00
|
|
|
|
function showErrorHelp(name, err) {
|
|
|
|
|
if (err) {
|
2022-11-06 02:26:21 +00:00
|
|
|
|
$('#div-' + name).addClass('has-validation has-error');
|
|
|
|
|
$('#div-' + name).addClass('is-invalid');
|
|
|
|
|
$('#input-' + name).addClass('is-invalid');
|
2016-07-18 16:39:37 +00:00
|
|
|
|
$('#help-' + name).text(err);
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
2022-11-06 02:26:21 +00:00
|
|
|
|
$('#div-' + name).removeClass('has-validation has-error');
|
|
|
|
|
$('#div-' + name).removeClass('is-invalid');
|
|
|
|
|
$('#input-' + name).removeClass('is-invalid');
|
2016-07-18 16:39:37 +00:00
|
|
|
|
$('#help-' + name).text('');
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function getFormErrorAndShowHelp(name, val) {
|
|
|
|
|
var err = val($('#input-' + name).val());
|
|
|
|
|
return showErrorHelp(name, err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function validateSettingPassword(str) {
|
|
|
|
|
if (str.length < 6) {
|
|
|
|
|
return '密码长度不应小于6。';
|
|
|
|
|
} else if (! /^[!-~]+$/.test(str)) {
|
|
|
|
|
return '密码应只包含可见ASCII字符。';
|
|
|
|
|
} else if (str != $('#input-confirm_password').val()) {
|
|
|
|
|
return '两次输入的密码不一致。';
|
|
|
|
|
} else {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function validatePassword(str) {
|
|
|
|
|
if (str.length < 6) {
|
|
|
|
|
return '密码长度不应小于6。';
|
|
|
|
|
} else if (! /^[!-~]+$/.test(str)) {
|
|
|
|
|
return '密码应只包含可见ASCII字符。';
|
|
|
|
|
} else {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function validateEmail(str) {
|
|
|
|
|
if (str.length > 50) {
|
|
|
|
|
return '电子邮箱地址太长。';
|
|
|
|
|
} else if (! /^(.+)@(.+)$/.test(str)) {
|
|
|
|
|
return '电子邮箱地址非法。';
|
|
|
|
|
} else {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function validateUsername(str) {
|
|
|
|
|
if (str.length == 0) {
|
|
|
|
|
return '用户名不能为空。';
|
|
|
|
|
} else if (! /^[a-zA-Z0-9_]+$/.test(str)) {
|
|
|
|
|
return '用户名应只包含大小写英文字母、数字和下划线。';
|
|
|
|
|
} else {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function validateQQ(str) {
|
|
|
|
|
if (str.length < 5) {
|
|
|
|
|
return 'QQ的长度不应小于5。';
|
|
|
|
|
} else if (str.length > 15) {
|
|
|
|
|
return 'QQ的长度不应大于15。';
|
|
|
|
|
} else if (/\D/.test(str)) {
|
|
|
|
|
return 'QQ应只包含0~9的数字。';
|
|
|
|
|
} else {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function validateMotto(str) {
|
2022-09-18 13:38:57 +00:00
|
|
|
|
if (str.length > 1024) {
|
|
|
|
|
return '不能超过 1024 个字符。';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
} else {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// tags
|
|
|
|
|
$.fn.uoj_problem_tag = function() {
|
|
|
|
|
return this.each(function() {
|
|
|
|
|
$(this).attr('href', uojHome + '/problems?tag=' + encodeURIComponent($(this).text()));
|
|
|
|
|
});
|
|
|
|
|
}
|
2022-09-18 11:34:17 +00:00
|
|
|
|
$.fn.uoj_list_tag = function() {
|
|
|
|
|
return this.each(function() {
|
2022-10-22 11:24:48 +00:00
|
|
|
|
$(this).attr('href', uojHome + '/lists?tag=' + encodeURIComponent($(this).text()));
|
2022-09-18 11:34:17 +00:00
|
|
|
|
});
|
|
|
|
|
}
|
2016-07-18 16:39:37 +00:00
|
|
|
|
$.fn.uoj_blog_tag = function() {
|
|
|
|
|
return this.each(function() {
|
2017-11-25 04:00:00 +00:00
|
|
|
|
$(this).attr('href', uojBlogUrl + '/archive?tag=' + encodeURIComponent($(this).text()));
|
2016-07-18 16:39:37 +00:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// click zan
|
|
|
|
|
function click_zan(zan_id, zan_type, zan_delta, node) {
|
2022-09-28 01:40:56 +00:00
|
|
|
|
var loading_node = $('<div class="uoj-click-zan-block text-muted">loading...</div>');
|
2016-07-18 16:39:37 +00:00
|
|
|
|
$(node).replaceWith(loading_node);
|
2019-07-12 06:30:00 +00:00
|
|
|
|
$.post(zan_link + '/click-zan', {
|
2016-07-18 16:39:37 +00:00
|
|
|
|
id : zan_id,
|
|
|
|
|
delta : zan_delta,
|
2022-10-03 13:04:20 +00:00
|
|
|
|
type : zan_type,
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}, function(ret) {
|
|
|
|
|
$(loading_node).replaceWith($(ret).click_zan_block());
|
|
|
|
|
}).fail(function() {
|
2022-09-28 01:40:56 +00:00
|
|
|
|
$(loading_node).replaceWith('<div class="uoj-click-zan-block text-danger">failed</div>');
|
2016-07-18 16:39:37 +00:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$.fn.click_zan_block = function() {
|
|
|
|
|
return this.each(function() {
|
|
|
|
|
var id = $(this).data('id');
|
|
|
|
|
var type = $(this).data('type');
|
|
|
|
|
var val = parseInt($(this).data('val'));
|
|
|
|
|
var cnt = parseInt($(this).data('cnt'));
|
|
|
|
|
if (isNaN(cnt)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-10-11 13:58:37 +00:00
|
|
|
|
|
|
|
|
|
var up_icon_html = isBootstrap5Page
|
|
|
|
|
? '<i class="bi bi-hand-thumbs-up"></i>'
|
|
|
|
|
: '<span class="glyphicon glyphicon-thumbs-up"></span>';
|
|
|
|
|
var down_icon_html = isBootstrap5Page
|
|
|
|
|
? '<i class="bi bi-hand-thumbs-down"></i>'
|
|
|
|
|
: '<span class="glyphicon glyphicon-thumbs-down"></span>';
|
|
|
|
|
|
2016-07-18 16:39:37 +00:00
|
|
|
|
if (val == 1) {
|
|
|
|
|
$(this).addClass('uoj-click-zan-block-cur-up');
|
2022-10-11 13:58:37 +00:00
|
|
|
|
up_icon_html = '<i class="bi bi-hand-thumbs-up-fill"></i>';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
} else if (val == 0) {
|
|
|
|
|
$(this).addClass('uoj-click-zan-block-cur-zero');
|
|
|
|
|
} else if (val == -1) {
|
|
|
|
|
$(this).addClass('uoj-click-zan-block-cur-down');
|
2022-10-11 13:58:37 +00:00
|
|
|
|
down_icon_html = '<i class="bi bi-hand-thumbs-down-fill"></i>';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
} else {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (cnt > 0) {
|
|
|
|
|
$(this).addClass('uoj-click-zan-block-positive');
|
|
|
|
|
} else if (cnt == 0) {
|
|
|
|
|
$(this).addClass('uoj-click-zan-block-neutral');
|
|
|
|
|
} else {
|
|
|
|
|
$(this).addClass('uoj-click-zan-block-negative');
|
|
|
|
|
}
|
2022-09-24 02:18:55 +00:00
|
|
|
|
|
2016-07-18 16:39:37 +00:00
|
|
|
|
var node = this;
|
2022-11-09 13:37:37 +00:00
|
|
|
|
var up_node = $('<a href="#" class="uoj-click-zan-up">'+up_icon_html+uojLocale('click-zan::good')+'</a>').click(function(e) {
|
2016-07-18 16:39:37 +00:00
|
|
|
|
e.preventDefault();
|
|
|
|
|
click_zan(id, type, 1, node);
|
2022-09-24 02:18:55 +00:00
|
|
|
|
}).addClass(isBootstrap5Page ? 'text-decoration-none' : '');
|
2022-11-09 13:37:37 +00:00
|
|
|
|
var down_node = $('<a href="#" class="uoj-click-zan-down">'+down_icon_html+uojLocale('click-zan::bad')+'</a>').click(function(e) {
|
2016-07-18 16:39:37 +00:00
|
|
|
|
e.preventDefault();
|
|
|
|
|
click_zan(id, type, -1, node);
|
2022-09-24 02:18:55 +00:00
|
|
|
|
}).addClass(isBootstrap5Page ? 'text-decoration-none' : '');
|
2016-07-18 16:39:37 +00:00
|
|
|
|
|
|
|
|
|
$(this)
|
|
|
|
|
.append(up_node)
|
|
|
|
|
.append(down_node)
|
|
|
|
|
.append($('<span class="uoj-click-zan-cnt">[<strong>' + (cnt > 0 ? '+' + cnt : cnt) + '</strong>]</span>'));
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// count down
|
2022-09-25 06:16:36 +00:00
|
|
|
|
function getCountdownStr(t, font_size, color = true) {
|
2016-07-18 16:39:37 +00:00
|
|
|
|
var x = Math.floor(t);
|
|
|
|
|
var ss = toFilledStr(x % 60, '0', 2);
|
|
|
|
|
x = Math.floor(x / 60);
|
|
|
|
|
var mm = toFilledStr(x % 60, '0', 2);
|
|
|
|
|
x = Math.floor(x / 60);
|
|
|
|
|
var hh = x.toString();
|
|
|
|
|
|
2022-09-25 06:16:36 +00:00
|
|
|
|
var res = '<span style="font-size:' + font_size + '">';
|
|
|
|
|
res += '<span '
|
|
|
|
|
if (color) res += ' style="color:' + getColOfScore(Math.min(t / 10800 * 100, 100)) + '" ';
|
|
|
|
|
res += ' >' + hh + '</span>';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
res += ':';
|
2022-09-25 06:16:36 +00:00
|
|
|
|
res += '<span '
|
|
|
|
|
if (color) res += ' style="color:' + getColOfScore(mm / 60 * 100) + '" ';
|
|
|
|
|
res += ' >' + mm + '</span>';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
res += ':';
|
2022-09-25 06:16:36 +00:00
|
|
|
|
res += '<span ';
|
|
|
|
|
if (color) res += ' style="color:' + getColOfScore(ss / 60 * 100) + '" ';
|
|
|
|
|
res +=' >' + ss + '</span>';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
res += '</span>'
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-25 06:16:36 +00:00
|
|
|
|
$.fn.countdown = function(rest, callback, font_size = '30px', color = true) {
|
2016-07-18 16:39:37 +00:00
|
|
|
|
return this.each(function() {
|
|
|
|
|
var start = new Date().getTime();
|
|
|
|
|
var cur_rest = rest != undefined ? rest : parseInt($(this).data('rest'));
|
|
|
|
|
var cur = this;
|
|
|
|
|
var countdown = function() {
|
|
|
|
|
var passed = Math.floor((new Date().getTime() - start) / 1000);
|
|
|
|
|
if (passed >= cur_rest) {
|
2022-09-25 06:16:36 +00:00
|
|
|
|
$(cur).html(getCountdownStr(0, font_size, color));
|
2016-07-18 16:39:37 +00:00
|
|
|
|
if (callback != undefined) {
|
|
|
|
|
callback();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-09-25 06:16:36 +00:00
|
|
|
|
$(cur).html(getCountdownStr(cur_rest - passed, font_size, color));
|
2016-07-18 16:39:37 +00:00
|
|
|
|
setTimeout(countdown, 1000);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
countdown();
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// update_judgement_status
|
|
|
|
|
update_judgement_status_list = []
|
|
|
|
|
function update_judgement_status_details(id) {
|
|
|
|
|
update_judgement_status_list.push(id);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
function update() {
|
|
|
|
|
$.get("/submission-status-details", {
|
|
|
|
|
get: update_judgement_status_list
|
|
|
|
|
},
|
|
|
|
|
function(data) {
|
|
|
|
|
for (var i = 0; i < update_judgement_status_list.length; i++) {
|
|
|
|
|
$("#status_details_" + update_judgement_status_list[i]).html(data[i].html);
|
|
|
|
|
if (data[i].judged) {
|
|
|
|
|
location.reload();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, 'json').always(
|
|
|
|
|
function() {
|
|
|
|
|
setTimeout(update, 500);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
if (update_judgement_status_list.length > 0) {
|
|
|
|
|
setTimeout(update, 500);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// highlight
|
|
|
|
|
$.fn.uoj_highlight = function() {
|
|
|
|
|
return $(this).each(function() {
|
2022-10-19 03:23:22 +00:00
|
|
|
|
$(this).find("span.uoj-username, span[data-uoj-username]").each(replaceWithHighlightUsername);
|
2022-03-17 10:26:29 +00:00
|
|
|
|
$(this).find(".uoj-honor").uoj_honor();
|
2016-07-18 16:39:37 +00:00
|
|
|
|
$(this).find(".uoj-score").each(function() {
|
|
|
|
|
var score = parseInt($(this).text());
|
|
|
|
|
var maxscore = parseInt($(this).data('max'));
|
|
|
|
|
if (isNaN(score)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (isNaN(maxscore)) {
|
|
|
|
|
$(this).css("color", getColOfScore(score));
|
|
|
|
|
} else {
|
|
|
|
|
$(this).css("color", getColOfScore(score / maxscore * 100));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
$(this).find(".uoj-status").each(function() {
|
|
|
|
|
var success = parseInt($(this).data("success"));
|
|
|
|
|
if(isNaN(success)){
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (success == 1) {
|
|
|
|
|
$(this).css("color", ColorConverter.toStr(ColorConverter.toRGB(new HSV(120, 100, 80))));
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$(this).css("color", ColorConverter.toStr(ColorConverter.toRGB(new HSV(0, 100, 100))));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
$(this).find(".uoj-problem-tag").uoj_problem_tag();
|
2022-09-18 11:34:17 +00:00
|
|
|
|
$(this).find(".uoj-list-tag").uoj_list_tag();
|
2016-07-18 16:39:37 +00:00
|
|
|
|
$(this).find(".uoj-blog-tag").uoj_blog_tag();
|
|
|
|
|
$(this).find(".uoj-click-zan-block").click_zan_block();
|
|
|
|
|
$(this).find(".countdown").countdown();
|
2018-07-09 02:40:30 +00:00
|
|
|
|
$(this).find(".uoj-readmore").readmore({
|
|
|
|
|
moreLink: '<a href="#" class="text-right">more...</a>',
|
|
|
|
|
lessLink: '<a href="#" class="text-right">close</a>',
|
|
|
|
|
});
|
2016-07-18 16:39:37 +00:00
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
$('body').uoj_highlight();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// contest notice
|
2022-11-06 02:26:21 +00:00
|
|
|
|
function checkNotice(lastTime) {
|
|
|
|
|
$.post(uojHome + '/check-notice', {
|
2016-07-18 16:39:37 +00:00
|
|
|
|
last_time : lastTime
|
|
|
|
|
},
|
|
|
|
|
function(data) {
|
2022-11-06 02:26:21 +00:00
|
|
|
|
if (data === null) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-07-18 16:39:37 +00:00
|
|
|
|
setTimeout(function() {
|
2022-11-06 02:26:21 +00:00
|
|
|
|
checkNotice(data.time);
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}, 60000);
|
2022-11-06 02:26:21 +00:00
|
|
|
|
for (var i = 0; i < data.msg.length; i++) {
|
|
|
|
|
alert(data.msg[i]);
|
|
|
|
|
}
|
2016-07-18 16:39:37 +00:00
|
|
|
|
},
|
|
|
|
|
'json'
|
|
|
|
|
).fail(function() {
|
|
|
|
|
setTimeout(function() {
|
2022-11-06 02:26:21 +00:00
|
|
|
|
checkNotice(lastTime);
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}, 60000);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// long table
|
|
|
|
|
$.fn.long_table = function(data, cur_page, header_row, get_row_str, config) {
|
|
|
|
|
return this.each(function() {
|
|
|
|
|
var table_div = this;
|
|
|
|
|
|
|
|
|
|
$(table_div).html('');
|
|
|
|
|
|
|
|
|
|
var page_len = config.page_len != undefined ? config.page_len : 10;
|
|
|
|
|
|
|
|
|
|
if (!config.echo_full) {
|
|
|
|
|
var n_rows = data.length;
|
|
|
|
|
var n_pages = Math.max(Math.ceil(n_rows / page_len), 1);
|
|
|
|
|
if (cur_page == undefined) {
|
|
|
|
|
cur_page = 1;
|
|
|
|
|
}
|
|
|
|
|
if (cur_page < 1) {
|
|
|
|
|
cur_page = 1;
|
|
|
|
|
} else if (cur_page > n_pages) {
|
|
|
|
|
cur_page = n_pages;
|
|
|
|
|
}
|
|
|
|
|
var cur_start = (cur_page - 1) * page_len;
|
|
|
|
|
} else {
|
|
|
|
|
var n_rows = data.length;
|
|
|
|
|
var n_pages = 1;
|
|
|
|
|
cur_page = 1;
|
|
|
|
|
var cur_start = (cur_page - 1) * page_len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var div_classes = config.div_classes != undefined ? config.div_classes : ['table-responsive'];
|
|
|
|
|
var table_classes = config.table_classes != undefined ? config.table_classes : ['table', 'table-bordered', 'table-hover', 'table-striped', 'table-text-center'];
|
|
|
|
|
|
|
|
|
|
var now_cnt = 0;
|
|
|
|
|
var tbody = $('<tbody />')
|
|
|
|
|
for (var i = 0; i < page_len && cur_start + i < n_rows; i++) {
|
|
|
|
|
now_cnt++;
|
|
|
|
|
if (config.get_row_index) {
|
|
|
|
|
tbody.append(get_row_str(data[cur_start + i], cur_start + i));
|
|
|
|
|
} else {
|
|
|
|
|
tbody.append(get_row_str(data[cur_start + i]));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (now_cnt == 0) {
|
|
|
|
|
tbody.append('<tr><td colspan="233">无</td></tr>');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$(table_div).append(
|
|
|
|
|
$('<div class="' + div_classes.join(' ') + '" />').append(
|
2022-10-21 14:04:17 +00:00
|
|
|
|
(typeof config.print_before_table === 'function' ? config.print_before_table() : ''),
|
2016-07-18 16:39:37 +00:00
|
|
|
|
$('<table class="' + table_classes.join(' ') + '" />').append(
|
|
|
|
|
$('<thead>' + header_row + '</thead>')
|
|
|
|
|
).append(
|
|
|
|
|
tbody
|
2022-10-21 14:04:17 +00:00
|
|
|
|
),
|
|
|
|
|
(typeof config.print_after_table === 'function' ? config.print_after_table() : '')
|
2016-07-18 16:39:37 +00:00
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
var get_page_li = function(p, h) {
|
|
|
|
|
if (p == -1) {
|
2019-09-10 02:15:20 +00:00
|
|
|
|
return $('<li class="page-item"></li>').addClass('disabled').append($('<a class="page-link"></a>').append(h));
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-10 02:15:20 +00:00
|
|
|
|
var li = $('<li class="page-item"></li>');
|
2016-07-18 16:39:37 +00:00
|
|
|
|
if (p == cur_page) {
|
|
|
|
|
li.addClass('active');
|
|
|
|
|
}
|
|
|
|
|
li.append(
|
2019-09-10 02:15:20 +00:00
|
|
|
|
$('<a class="page-link"></a>').attr('href', '#' + table_div.id).append(h).click(function(e) {
|
2016-07-18 16:39:37 +00:00
|
|
|
|
if (config.prevent_focus_on_click) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
}
|
|
|
|
|
$(table_div).long_table(data, p, header_row, get_row_str, config);
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
return li;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (n_pages > 1) {
|
2019-09-10 02:15:20 +00:00
|
|
|
|
var pagination = $('<ul class="pagination top-buffer-no bot-buffer-sm justify-content-center"></ul>');
|
2016-07-18 16:39:37 +00:00
|
|
|
|
if (cur_page > 1) {
|
2022-10-20 09:07:43 +00:00
|
|
|
|
if (isBootstrap5Page) {
|
|
|
|
|
pagination.append(get_page_li(1, '<i class="bi bi-chevron-double-left"></i>'));
|
|
|
|
|
pagination.append(get_page_li(cur_page - 1, '<i class="bi bi-chevron-left"></i>'));
|
|
|
|
|
} else {
|
|
|
|
|
pagination.append(get_page_li(cur_page - 1, '<span class="glyphicon glyphicon glyphicon-backward"></span>'));
|
|
|
|
|
}
|
2016-07-18 16:39:37 +00:00
|
|
|
|
} else {
|
2022-10-20 09:07:43 +00:00
|
|
|
|
if (isBootstrap5Page) {
|
|
|
|
|
pagination.append(get_page_li(-1, '<i class="bi bi-chevron-double-left"></i>'));
|
|
|
|
|
pagination.append(get_page_li(-1, '<i class="bi bi-chevron-left"></i>'));
|
|
|
|
|
} else {
|
|
|
|
|
pagination.append(get_page_li(-1, '<span class="glyphicon glyphicon glyphicon-backward"></span>'));
|
|
|
|
|
}
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
var max_extend = config.max_extend != undefined ? config.max_extend : 5;
|
|
|
|
|
for (var i = Math.max(cur_page - max_extend, 1); i <= Math.min(cur_page + max_extend, n_pages); i++) {
|
|
|
|
|
pagination.append(get_page_li(i, i.toString()));
|
|
|
|
|
}
|
|
|
|
|
if (cur_page < n_pages) {
|
2022-10-20 09:07:43 +00:00
|
|
|
|
if (isBootstrap5Page) {
|
|
|
|
|
pagination.append(get_page_li(cur_page + 1, '<i class="bi bi-chevron-right"></i>'));
|
|
|
|
|
pagination.append(get_page_li(n_pages, '<i class="bi bi-chevron-double-right"></i>'));
|
|
|
|
|
} else {
|
|
|
|
|
pagination.append(get_page_li(cur_page + 1, '<span class="glyphicon glyphicon glyphicon-forward"></span>'));
|
|
|
|
|
}
|
2016-07-18 16:39:37 +00:00
|
|
|
|
} else {
|
2022-10-20 09:07:43 +00:00
|
|
|
|
if (isBootstrap5Page) {
|
|
|
|
|
pagination.append(get_page_li(-1, '<i class="bi bi-chevron-right"></i>'));
|
|
|
|
|
pagination.append(get_page_li(-1, '<i class="bi bi-chevron-double-right"></i>'));
|
|
|
|
|
} else {
|
|
|
|
|
pagination.append(get_page_li(-1, '<span class="glyphicon glyphicon glyphicon-forward"></span>'));
|
|
|
|
|
}
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
$(table_div).append($('<div class="text-center"></div>').append(pagination));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2023-02-01 10:11:26 +00:00
|
|
|
|
// monaco editor
|
|
|
|
|
function require_monaco(config, callback) {
|
|
|
|
|
window.require = {
|
|
|
|
|
paths: {
|
|
|
|
|
vs: '/js/monaco-editor/min/vs',
|
|
|
|
|
},
|
|
|
|
|
"vs/nls": {
|
|
|
|
|
availableLanguages: {
|
|
|
|
|
'*': 'zh-cn',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
$LAB.script('/js/monaco-editor/min/vs/loader.js').wait()
|
|
|
|
|
.script('/js/monaco-editor/min/vs/editor/editor.main.nls.js').wait()
|
|
|
|
|
.script('/js/monaco-editor/min/vs/editor/editor.main.nls.zh-cn.js').wait()
|
|
|
|
|
.script('/js/monaco-editor/min/vs/editor/editor.main.js').wait(function() {
|
|
|
|
|
$LAB.script('/js/monaco-themes.js').wait(callback);
|
|
|
|
|
});
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-01 10:11:26 +00:00
|
|
|
|
function get_monaco_mode(lang) {
|
2016-07-18 16:39:37 +00:00
|
|
|
|
switch (lang) {
|
|
|
|
|
case 'C++':
|
|
|
|
|
case 'C++11':
|
2022-09-18 02:54:13 +00:00
|
|
|
|
case 'C++17':
|
2022-10-04 13:31:28 +00:00
|
|
|
|
case 'C++20':
|
2022-09-18 02:54:13 +00:00
|
|
|
|
case 'C++98':
|
2022-10-04 13:31:28 +00:00
|
|
|
|
case 'C++03':
|
2023-02-01 10:11:26 +00:00
|
|
|
|
return 'cpp';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
case 'C':
|
2023-02-01 10:11:26 +00:00
|
|
|
|
return 'c';
|
2019-06-28 08:40:41 +00:00
|
|
|
|
case 'Python2':
|
2022-10-04 13:31:28 +00:00
|
|
|
|
case 'Python2.7':
|
2016-07-18 16:39:37 +00:00
|
|
|
|
case 'Python3':
|
2023-02-01 10:11:26 +00:00
|
|
|
|
return 'python';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
case 'Pascal':
|
2023-02-01 10:11:26 +00:00
|
|
|
|
return 'pascal';
|
2022-10-04 23:47:56 +00:00
|
|
|
|
case 'Java8':
|
|
|
|
|
case 'Java11':
|
|
|
|
|
case 'Java17':
|
2023-02-01 10:11:26 +00:00
|
|
|
|
return 'java';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
case 'text':
|
2023-02-01 10:11:26 +00:00
|
|
|
|
return 'text';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
default:
|
2023-02-01 10:11:26 +00:00
|
|
|
|
return 'text';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}
|
2023-02-01 10:11:26 +00:00
|
|
|
|
}
|
2016-07-18 16:39:37 +00:00
|
|
|
|
|
|
|
|
|
// auto save
|
|
|
|
|
function autosave_locally(interval, name, target) {
|
|
|
|
|
if (typeof(Storage) === "undefined") {
|
|
|
|
|
console.log('autosave_locally: Sorry! No Web Storage support..');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
var url = window.location.href;
|
|
|
|
|
var hp = url.indexOf('#');
|
|
|
|
|
var uri = hp == -1 ? url : url.substr(0, hp);
|
|
|
|
|
var full_name = name + '@' + uri;
|
|
|
|
|
|
|
|
|
|
target.val(localStorage.getItem(full_name));
|
|
|
|
|
var save = function() {
|
|
|
|
|
localStorage.setItem(full_name, target.val());
|
|
|
|
|
setTimeout(save, interval);
|
|
|
|
|
};
|
|
|
|
|
setTimeout(save, interval);
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-01 10:11:26 +00:00
|
|
|
|
function autosave_locally_monaco(interval, name, monaco_instance) {
|
|
|
|
|
if (typeof(Storage) === "undefined") {
|
|
|
|
|
console.log('autosave_locally_monaco: Sorry! No Web Storage support..');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
var url = window.location.href;
|
|
|
|
|
var hp = url.indexOf('#');
|
|
|
|
|
var uri = hp == -1 ? url : url.substring(0, hp);
|
|
|
|
|
var full_name = name + '@' + uri;
|
|
|
|
|
|
|
|
|
|
monaco_instance.getModel().setValue(localStorage.getItem(full_name));
|
|
|
|
|
var save = function() {
|
|
|
|
|
localStorage.setItem(full_name, monaco_instance.getModel().getValue());
|
|
|
|
|
setTimeout(save, interval);
|
|
|
|
|
};
|
|
|
|
|
setTimeout(save, interval);
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-18 16:39:37 +00:00
|
|
|
|
// source code form group
|
|
|
|
|
$.fn.source_code_form_group = function(name, text, langs_options_html) {
|
|
|
|
|
return this.each(function() {
|
2023-02-01 10:11:26 +00:00
|
|
|
|
var input_upload_type_editor_id = 'input-' + name + '_upload_type_editor';
|
|
|
|
|
var input_upload_type_file_id = 'input-' + name + '_upload_type_file';
|
|
|
|
|
var input_upload_type_name = name + '_upload_type';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
var input_language_id = 'input-' + name + '_language';
|
|
|
|
|
var input_language_name = name + '_language';
|
|
|
|
|
var input_editor_id = 'input-' + name + '_editor';
|
|
|
|
|
var input_editor_name = name + '_editor';
|
|
|
|
|
var input_file_id = 'input-' + name + '_file';
|
|
|
|
|
var input_file_name = name + '_file';
|
2023-02-01 10:11:26 +00:00
|
|
|
|
var spinner_id = 'spinner-' + name + '_editor';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
var div_help_language_id = 'div-help-' + name + '_language';
|
|
|
|
|
var div_editor_id = 'div-' + name + '_editor';
|
|
|
|
|
var div_file_id = 'div-' + name + '_file';
|
|
|
|
|
var help_file_id = 'help-' + name + '_file';
|
|
|
|
|
|
|
|
|
|
var input_language =
|
2023-02-01 10:11:26 +00:00
|
|
|
|
$('<select id="' + input_language_id + '" name="' + input_language_name + '" class="form-select form-select-sm d-inline-block"/>')
|
2016-07-18 16:39:37 +00:00
|
|
|
|
.html(langs_options_html);
|
2023-02-01 10:11:26 +00:00
|
|
|
|
var input_upload_type_editor = $('<input class="form-check-input" type="radio" id="' + input_upload_type_editor_id + '" name="' + input_upload_type_name + '" value="editor" />');
|
|
|
|
|
var input_upload_type_file = $('<input class="form-check-input" type="radio" id="' + input_upload_type_file_id + '" name="' + input_upload_type_name + '" value="file" />');
|
|
|
|
|
var input_file = $('<input type="file" class="form-control" id="' + input_file_id + '" name="' + input_file_name + '" />');
|
2016-07-18 16:39:37 +00:00
|
|
|
|
var div_editor =
|
2023-02-01 10:11:26 +00:00
|
|
|
|
$('<div id="' + div_editor_id + '" style="height: 350px" />')
|
|
|
|
|
.append(
|
|
|
|
|
$('<div id="' + spinner_id + '" class="border d-flex justify-content-center align-items-center" style="width: 100%; height: 350px;" />')
|
|
|
|
|
.append('<div class="spinner-border text-muted" style="width: 3rem; height: 3rem;" />')
|
|
|
|
|
);
|
2016-07-18 16:39:37 +00:00
|
|
|
|
var div_file =
|
2023-02-01 10:11:26 +00:00
|
|
|
|
$('<div id="' + div_file_id + '" />')
|
2016-07-18 16:39:37 +00:00
|
|
|
|
.append(input_file)
|
|
|
|
|
.append($('<span class="help-block" id="' + help_file_id + '"></span>'))
|
2023-02-01 10:11:26 +00:00
|
|
|
|
|
|
|
|
|
var div_help_language = $('<div id="' + div_help_language_id + '" class="text-warning mb-2">');
|
|
|
|
|
|
|
|
|
|
var show_help_lang = function() {
|
|
|
|
|
if ($(this).val().startsWith('Java')) {
|
|
|
|
|
div_help_language.text('注意:Java 程序源代码中不应指定所在的 package。我们会在源代码中找到第一个被定义的类并以它的 main 函数为程序入口点。');
|
|
|
|
|
} else {
|
|
|
|
|
div_help_language.text('');
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var monaco_editor_instance = null;
|
|
|
|
|
var monaco_editor_init = function() {
|
|
|
|
|
require_monaco({}, function() {
|
|
|
|
|
if (monaco_editor_instance != null) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$(div_editor).html('');
|
|
|
|
|
|
|
|
|
|
var mode = get_monaco_mode(input_language.val());
|
|
|
|
|
|
|
|
|
|
monaco_editor_instance = monaco.editor.create(div_editor[0], {
|
|
|
|
|
language: mode,
|
|
|
|
|
automaticLayout: true,
|
|
|
|
|
fontSize: "14px",
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#' + spinner_id).css('display', 'none !important');
|
|
|
|
|
$(div_editor).addClass('border overflow-hidden').show();
|
|
|
|
|
autosave_locally_monaco(2000, name, monaco_editor_instance);
|
|
|
|
|
|
|
|
|
|
$('#' + input_editor_id).val(monaco_editor_instance.getModel().getValue());
|
|
|
|
|
monaco_editor_instance.onDidChangeModelContent(function () {
|
|
|
|
|
$('#' + input_editor_id).val(monaco_editor_instance.getModel().getValue());
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
input_language.change(function() {
|
|
|
|
|
monaco.editor.setModelLanguage(monaco_editor_instance.getModel(), get_monaco_mode(input_language.val()));
|
2016-07-18 16:39:37 +00:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var save_prefer_upload_type = function(type) {
|
|
|
|
|
$.cookie('uoj_source_code_form_group_preferred_upload_type', type, { expires: 7, path: '/' });
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var prefer_upload_type = $.cookie('uoj_source_code_form_group_preferred_upload_type');
|
|
|
|
|
if (prefer_upload_type === null) {
|
|
|
|
|
prefer_upload_type = 'editor';
|
|
|
|
|
}
|
|
|
|
|
if (prefer_upload_type == 'file') {
|
|
|
|
|
input_upload_type_file[0].checked = true;
|
|
|
|
|
div_editor.css('display', 'none');
|
|
|
|
|
} else {
|
|
|
|
|
input_upload_type_editor[0].checked = true;
|
|
|
|
|
div_file.css('display', 'none');
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-01 10:11:26 +00:00
|
|
|
|
input_language.each(show_help_lang);
|
|
|
|
|
input_language.change(show_help_lang);
|
|
|
|
|
|
2016-07-18 16:39:37 +00:00
|
|
|
|
input_upload_type_editor.click(function() {
|
|
|
|
|
div_editor.show('fast');
|
|
|
|
|
div_file.hide('fast');
|
|
|
|
|
save_prefer_upload_type('editor');
|
|
|
|
|
});
|
|
|
|
|
input_upload_type_file.click(function() {
|
|
|
|
|
div_file.show('fast');
|
|
|
|
|
div_editor.hide('fast');
|
|
|
|
|
save_prefer_upload_type('file');
|
|
|
|
|
});
|
|
|
|
|
|
2023-02-01 10:11:26 +00:00
|
|
|
|
$(this).append(
|
|
|
|
|
$('<div class="row mb-2 align-items-center"/>')
|
|
|
|
|
.append($('<div class="col-sm-4 text-start">' + text + '</div>'))
|
|
|
|
|
.append(
|
|
|
|
|
$('<div class="col-sm-4 row align-items-center"/>')
|
|
|
|
|
.append($('<div class="col-auto" />').append('<label class="col-form-label px-1' +' " for="' + input_language_id + '">' + uojLocale('editor::language') + '</label>'))
|
|
|
|
|
.append($('<div class="col-auto" />').append(input_language))
|
|
|
|
|
)
|
|
|
|
|
.append($('<div class="col-sm-4 text-end"/>')
|
|
|
|
|
.append(uojLocale('editor::upload source') + ': ')
|
|
|
|
|
.append($('<div class="form-check d-inline-block">')
|
|
|
|
|
.append($('<label for="' + input_upload_type_editor_id + '" />')
|
|
|
|
|
.append(input_upload_type_editor)
|
|
|
|
|
.append(' ' + uojLocale('editor::upload by editor'))
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
.append($('<div class="form-check d-inline-block ms-3"/>')
|
|
|
|
|
.append(input_upload_type_file)
|
|
|
|
|
.append($('<label for="' + input_upload_type_file_id +'" />')
|
|
|
|
|
.append(' ' + uojLocale('editor::upload from local'))
|
|
|
|
|
)
|
|
|
|
|
))
|
|
|
|
|
)
|
|
|
|
|
.append(div_help_language)
|
|
|
|
|
.append(div_editor)
|
|
|
|
|
.append(div_file)
|
|
|
|
|
.append($('<input type="hidden" name="' + input_editor_name + '" id="' + input_editor_id + '"/>'));
|
|
|
|
|
|
|
|
|
|
var check_monaco_editor_init = function() {
|
|
|
|
|
if (div_editor.is(':visible')) {
|
|
|
|
|
monaco_editor_init();
|
|
|
|
|
} else {
|
|
|
|
|
setTimeout(check_monaco_editor_init, 1);
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-02-01 10:11:26 +00:00
|
|
|
|
check_monaco_editor_init();
|
2016-07-18 16:39:37 +00:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// text file form group
|
|
|
|
|
$.fn.text_file_form_group = function(name, text) {
|
|
|
|
|
return this.each(function() {
|
2023-02-01 10:11:26 +00:00
|
|
|
|
var input_upload_type_editor_id = 'input-' + name + '_upload_type_editor';
|
|
|
|
|
var input_upload_type_file_id = 'input-' + name + '_upload_type_file';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
var input_upload_type_name = name + '_upload_type';
|
|
|
|
|
var input_editor_id = 'input-' + name + '_editor';
|
|
|
|
|
var input_editor_name = name + '_editor';
|
|
|
|
|
var input_file_id = 'input-' + name + '_file';
|
|
|
|
|
var input_file_name = name + '_file';
|
2023-02-01 10:11:26 +00:00
|
|
|
|
var spinner_id = 'spinner-' + name + '_editor';
|
2016-07-18 16:39:37 +00:00
|
|
|
|
var div_editor_id = 'div-' + name + '_editor';
|
|
|
|
|
var div_file_id = 'div-' + name + '_file';
|
|
|
|
|
|
|
|
|
|
var help_file_id = 'help-' + name + '_file';
|
|
|
|
|
|
2023-02-01 10:11:26 +00:00
|
|
|
|
var input_upload_type_editor = $('<input class="form-check-input" type="radio" id="' + input_upload_type_editor_id + '" name="' + input_upload_type_name + '" value="editor" />');
|
|
|
|
|
var input_upload_type_file = $('<input class="form-check-input" type="radio" id="' + input_upload_type_file_id + '" name="' + input_upload_type_name + '" value="file" />');
|
|
|
|
|
var input_file = $('<input type="file" class="form-control" id="' + input_file_id + '" name="' + input_file_name + '" />');
|
2016-07-18 16:39:37 +00:00
|
|
|
|
|
2023-02-01 10:11:26 +00:00
|
|
|
|
var div_editor = $('<div id="' + div_editor_id + '" style="height: 350px" />')
|
|
|
|
|
.append(
|
|
|
|
|
$('<div id="' + spinner_id + '" class="border d-flex justify-content-center align-items-center" style="width: 100%; height: 350px;" />')
|
|
|
|
|
.append('<div class="spinner-border text-muted" style="width: 3rem; height: 3rem;" />')
|
|
|
|
|
);
|
2016-07-18 16:39:37 +00:00
|
|
|
|
var div_file =
|
2023-02-01 10:11:26 +00:00
|
|
|
|
$('<div id="' + div_file_id + '" />')
|
2016-07-18 16:39:37 +00:00
|
|
|
|
.append(input_file)
|
|
|
|
|
.append($('<span class="help-block" id="' + help_file_id + '"></span>'))
|
|
|
|
|
|
2023-02-01 10:11:26 +00:00
|
|
|
|
var monaco_editor_instance = null;
|
|
|
|
|
var monaco_editor_init = function() {
|
|
|
|
|
require_monaco({}, function() {
|
|
|
|
|
if (monaco_editor_instance != null) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$(div_editor).html('');
|
|
|
|
|
|
|
|
|
|
monaco_editor_instance = monaco.editor.create(div_editor[0], {
|
|
|
|
|
language: 'text',
|
|
|
|
|
automaticLayout: true,
|
|
|
|
|
fontSize: "14px",
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#' + spinner_id).css('display', 'none !important');
|
|
|
|
|
$(div_editor).addClass('border overflow-hidden').show();
|
|
|
|
|
autosave_locally_monaco(2000, name, monaco_editor_instance);
|
|
|
|
|
|
|
|
|
|
$('#' + input_editor_id).val(monaco_editor_instance.getModel().getValue());
|
|
|
|
|
monaco_editor_instance.onDidChangeModelContent(function () {
|
|
|
|
|
$('#' + input_editor_id).val(monaco_editor_instance.getModel().getValue());
|
2016-07-18 16:39:37 +00:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var save_prefer_upload_type = function(type) {
|
|
|
|
|
$.cookie('uoj_text_file_form_group_preferred_upload_type', type, { expires: 7, path: '/' });
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var prefer_upload_type = $.cookie('uoj_text_file_form_group_preferred_upload_type');
|
|
|
|
|
if (prefer_upload_type === null) {
|
|
|
|
|
prefer_upload_type = 'editor';
|
|
|
|
|
}
|
|
|
|
|
if (prefer_upload_type == 'file') {
|
|
|
|
|
input_upload_type_file[0].checked = true;
|
|
|
|
|
div_editor.css('display', 'none');
|
|
|
|
|
} else {
|
|
|
|
|
input_upload_type_editor[0].checked = true;
|
|
|
|
|
div_file.css('display', 'none');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input_upload_type_editor.click(function() {
|
|
|
|
|
div_editor.show('fast');
|
|
|
|
|
div_file.hide('fast');
|
|
|
|
|
save_prefer_upload_type('editor');
|
|
|
|
|
});
|
|
|
|
|
input_upload_type_file.click(function() {
|
|
|
|
|
div_file.show('fast');
|
|
|
|
|
div_editor.hide('fast');
|
|
|
|
|
save_prefer_upload_type('file');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$(this)
|
2023-02-01 10:11:26 +00:00
|
|
|
|
.append($('<div class="row justify-content-between mb-2" />')
|
|
|
|
|
.append($('<div class="col text-start">' + text + '</div>'))
|
|
|
|
|
.append($('<div class="col text-end"/>')
|
|
|
|
|
.append(uojLocale('editor::upload source') + ': ')
|
|
|
|
|
.append($('<div class="form-check d-inline-block">')
|
|
|
|
|
.append($('<label for="' + input_upload_type_editor_id + '" />')
|
|
|
|
|
.append(input_upload_type_editor)
|
|
|
|
|
.append(' ' + uojLocale('editor::upload by editor'))
|
|
|
|
|
)
|
2016-07-18 16:39:37 +00:00
|
|
|
|
)
|
2023-02-01 10:11:26 +00:00
|
|
|
|
.append($('<div class="form-check d-inline-block ms-3"/>')
|
2016-07-18 16:39:37 +00:00
|
|
|
|
.append(input_upload_type_file)
|
2023-02-01 10:11:26 +00:00
|
|
|
|
.append($('<label for="' + input_upload_type_file_id +'" />')
|
|
|
|
|
.append(' ' + uojLocale('editor::upload from local'))
|
|
|
|
|
)
|
|
|
|
|
))
|
|
|
|
|
)
|
2016-07-18 16:39:37 +00:00
|
|
|
|
.append(div_editor)
|
2023-02-01 10:11:26 +00:00
|
|
|
|
.append(div_file)
|
|
|
|
|
.append($('<input type="hidden" name="' + input_editor_name + '" id="' + input_editor_id + '"/>'));
|
2016-07-18 16:39:37 +00:00
|
|
|
|
|
2023-02-01 10:11:26 +00:00
|
|
|
|
var check_monaco_editor_init = function() {
|
|
|
|
|
if (div_editor.is(':visible')) {
|
|
|
|
|
monaco_editor_init();
|
|
|
|
|
} else {
|
|
|
|
|
setTimeout(check_monaco_editor_init, 1);
|
2016-07-18 16:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-02-01 10:11:26 +00:00
|
|
|
|
check_monaco_editor_init();
|
2016-07-18 16:39:37 +00:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-03 01:06:47 +00:00
|
|
|
|
// remote judge submit type group
|
|
|
|
|
$.fn.remote_submit_type_group = function(oj, pid, url, submit_type) {
|
|
|
|
|
return this.each(function() {
|
|
|
|
|
var input_submit_type_bot_id = 'input-submit_type_bot';
|
|
|
|
|
var input_submit_type_my_id = 'input-submit_type_my';
|
|
|
|
|
var div_submit_type_bot_id = 'div-submit_type_bot';
|
|
|
|
|
var div_submit_type_my_id = 'div-submit_type_my';
|
|
|
|
|
|
|
|
|
|
var input_submit_type_bot = $('<input class="form-check-input" type="radio" name="answer_remote_submit_type" id="' + input_submit_type_bot_id + '" value="bot" />');
|
|
|
|
|
var input_submit_type_my = $('<input class="form-check-input" type="radio" name="answer_remote_submit_type" id="' + input_submit_type_my_id + '" value="my" />');
|
|
|
|
|
var input_my_account_data = $('<input type="hidden" name="answer_remote_account_data" value="" />');
|
|
|
|
|
|
|
|
|
|
var div_submit_type_bot = $('<div id="' + div_submit_type_bot_id + '" />')
|
|
|
|
|
.append('<div class="mt-3">将使用公用账号提交本题。</div>');
|
|
|
|
|
var div_submit_type_my = $('<div id="' + div_submit_type_my_id + '" />')
|
|
|
|
|
.append('<div class="mt-3">将使用您的账号提交本题。</div>');
|
|
|
|
|
|
|
|
|
|
input_submit_type_bot.click(function() {
|
|
|
|
|
div_submit_type_my.hide('fast');
|
|
|
|
|
div_submit_type_bot.show('fast');
|
|
|
|
|
});
|
|
|
|
|
input_submit_type_my.click(function() {
|
|
|
|
|
div_submit_type_bot.hide('fast');
|
|
|
|
|
div_submit_type_my.show('fast');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (submit_type[0] == 'bot') {
|
|
|
|
|
div_submit_type_my.hide();
|
|
|
|
|
input_submit_type_bot[0].checked = true;
|
|
|
|
|
} else if (submit_type[0] == 'my') {
|
|
|
|
|
div_submit_type_bot.hide();
|
|
|
|
|
input_submit_type_my[0].checked = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (submit_type.indexOf('bot') == -1) {
|
|
|
|
|
input_submit_type_bot.attr('disabled', 'disabled');
|
|
|
|
|
}
|
|
|
|
|
if (submit_type.indexOf('my') == -1) {
|
|
|
|
|
input_submit_type_my.attr('disabled', 'disabled');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (oj == 'luogu') {
|
2023-02-03 02:47:58 +00:00
|
|
|
|
var luogu_account_data = {"_uid": "", "__client_id": ""};
|
2023-02-03 01:06:47 +00:00
|
|
|
|
var input_luogu_uid = $('<input class="form-control" type="text" name="luogu_uid" id="input-luogu_uid" />');
|
2023-02-03 02:47:58 +00:00
|
|
|
|
var input_luogu_client_id = $('<input class="form-control" type="text" name="luogu_client_id" id="input-luogu_client_id" />');
|
2023-02-03 01:06:47 +00:00
|
|
|
|
|
|
|
|
|
if ('localStorage' in window) {
|
|
|
|
|
try {
|
|
|
|
|
var luogu_account_data_str = localStorage.getItem('uoj_remote_judge_luogu_account_data');
|
|
|
|
|
if (luogu_account_data_str) {
|
|
|
|
|
luogu_account_data = JSON.parse(luogu_account_data_str);
|
|
|
|
|
}
|
|
|
|
|
} catch (e) {}
|
|
|
|
|
|
|
|
|
|
var save_luogu_account_data = function() {
|
|
|
|
|
localStorage.setItem('uoj_remote_judge_luogu_account_data', JSON.stringify(luogu_account_data));
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
var save_luogu_account_data = function() {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input_luogu_uid.change(function() {
|
|
|
|
|
luogu_account_data._uid = $(this).val();
|
|
|
|
|
input_my_account_data.val(JSON.stringify(luogu_account_data));
|
|
|
|
|
save_luogu_account_data();
|
|
|
|
|
});
|
|
|
|
|
|
2023-02-03 02:47:58 +00:00
|
|
|
|
input_luogu_client_id.change(function() {
|
|
|
|
|
luogu_account_data.__client_id = $(this).val();
|
2023-02-03 01:06:47 +00:00
|
|
|
|
input_my_account_data.val(JSON.stringify(luogu_account_data));
|
|
|
|
|
save_luogu_account_data();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
input_my_account_data.val(JSON.stringify(luogu_account_data));
|
2023-02-03 02:47:58 +00:00
|
|
|
|
input_luogu_uid.val(luogu_account_data._uid);
|
|
|
|
|
input_luogu_client_id.val(luogu_account_data.__client_id);
|
2023-02-03 01:06:47 +00:00
|
|
|
|
|
|
|
|
|
div_submit_type_my.append(
|
|
|
|
|
$('<div class="row mt-3" />')
|
2023-02-03 08:16:24 +00:00
|
|
|
|
.append($('<div class="col-sm-2" />').append('<label for="input-luogu_uid" class="col-form-label">_uid</label>'))
|
2023-02-03 01:06:47 +00:00
|
|
|
|
.append($('<div class="col-sm-4" />').append(input_luogu_uid))
|
|
|
|
|
.append($('<div class="col-sm-6" />').append($('<div class="form-text" />').append('请填入 Cookie 中的 <code>_uid</code>。')))
|
|
|
|
|
).append(
|
|
|
|
|
$('<div class="row mt-3" />')
|
2023-02-03 08:16:24 +00:00
|
|
|
|
.append($('<div class="col-sm-2" />').append('<label for="input-luogu_client_id" class="col-form-label">__client_id</label>'))
|
2023-02-03 02:47:58 +00:00
|
|
|
|
.append($('<div class="col-sm-4" />').append(input_luogu_client_id))
|
|
|
|
|
.append($('<div class="col-sm-6" />').append($('<div class="form-text" />').append('请填入 Cookie 中的 <code>__client_id</code>。')))
|
2023-02-03 01:06:47 +00:00
|
|
|
|
).append(input_my_account_data);
|
2023-02-03 08:16:24 +00:00
|
|
|
|
} else if (oj == 'codeforces') {
|
|
|
|
|
var codeforces_account_data = {"JSESSIONID": ""};
|
|
|
|
|
var input_codeforces_jsessionid = $('<input class="form-control" type="text" name="codeforces_jsessionid" id="input-codeforces_jsessionid" />');
|
|
|
|
|
|
|
|
|
|
if ('localStorage' in window) {
|
|
|
|
|
try {
|
|
|
|
|
var codeforces_account_data_str = localStorage.getItem('uoj_remote_judge_codeforces_account_data');
|
|
|
|
|
if (codeforces_account_data_str) {
|
|
|
|
|
codeforces_account_data = JSON.parse(codeforces_account_data_str);
|
|
|
|
|
}
|
|
|
|
|
} catch (e) {}
|
|
|
|
|
|
|
|
|
|
var save_codeforces_account_data = function() {
|
|
|
|
|
localStorage.setItem('uoj_remote_judge_codeforces_account_data', JSON.stringify(codeforces_account_data));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input_codeforces_jsessionid.change(function() {
|
|
|
|
|
codeforces_account_data.JSESSIONID = $(this).val();
|
|
|
|
|
input_my_account_data.val(JSON.stringify(codeforces_account_data));
|
|
|
|
|
save_codeforces_account_data();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
input_my_account_data.val(JSON.stringify(codeforces_account_data));
|
|
|
|
|
input_codeforces_jsessionid.val(codeforces_account_data.JSESSIONID);
|
|
|
|
|
|
|
|
|
|
div_submit_type_my.append(
|
|
|
|
|
$('<div class="row mt-3" />')
|
|
|
|
|
.append($('<div class="col-sm-2" />').append('<label for="input-codeforces_jsessionid" class="col-form-label">JSESSIONID</label>'))
|
|
|
|
|
.append($('<div class="col-sm-4" />').append(input_codeforces_jsessionid))
|
|
|
|
|
.append($('<div class="col-sm-6" />').append($('<div class="form-text" />').append('请填入 Cookie 中的 <code>JSESSIONID</code>。')))
|
|
|
|
|
).append(input_my_account_data);
|
2023-02-03 09:05:12 +00:00
|
|
|
|
} else if (oj == 'uoj') {
|
|
|
|
|
var uoj_account_data = {"UOJSESSID": ""};
|
|
|
|
|
var input_uoj_uojsessid = $('<input class="form-control" type="text" name="uoj_uojsessid" id="input-uoj_uojsessid" />');
|
|
|
|
|
|
|
|
|
|
if ('localStorage' in window) {
|
|
|
|
|
try {
|
|
|
|
|
var uoj_account_data_str = localStorage.getItem('uoj_remote_judge_uoj_account_data');
|
|
|
|
|
if (uoj_account_data_str) {
|
|
|
|
|
uoj_account_data = JSON.parse(uoj_account_data_str);
|
|
|
|
|
}
|
|
|
|
|
} catch (e) {}
|
|
|
|
|
|
|
|
|
|
var save_uoj_account_data = function() {
|
|
|
|
|
localStorage.setItem('uoj_remote_judge_uoj_account_data', JSON.stringify(uoj_account_data));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input_uoj_uojsessid.change(function() {
|
|
|
|
|
uoj_account_data.UOJSESSID = $(this).val();
|
|
|
|
|
input_my_account_data.val(JSON.stringify(uoj_account_data));
|
|
|
|
|
save_uoj_account_data();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
input_my_account_data.val(JSON.stringify(uoj_account_data));
|
|
|
|
|
input_uoj_uojsessid.val(uoj_account_data.UOJSESSID);
|
|
|
|
|
|
|
|
|
|
div_submit_type_my.append(
|
|
|
|
|
$('<div class="row mt-3" />')
|
|
|
|
|
.append($('<div class="col-sm-2" />').append('<label for="input-uoj_uojsessid" class="col-form-label">UOJSESSID</label>'))
|
|
|
|
|
.append($('<div class="col-sm-4" />').append(input_uoj_uojsessid))
|
|
|
|
|
.append($('<div class="col-sm-6" />').append($('<div class="form-text" />').append('请填入 Cookie 中的 <code>UOJSESSID</code>。')))
|
|
|
|
|
).append(input_my_account_data);
|
2023-02-03 01:06:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$(this).append(
|
|
|
|
|
$('<div class="mt-3" />').append(
|
|
|
|
|
$('<div class="form-check d-inline-block" />')
|
|
|
|
|
.append(input_submit_type_bot)
|
|
|
|
|
.append($('<label class="form-check-label" for="' + input_submit_type_bot_id + '" />').append(' 公用账号'))
|
|
|
|
|
).append(
|
|
|
|
|
$('<div class="form-check d-inline-block ms-3" />')
|
|
|
|
|
.append(input_submit_type_my)
|
|
|
|
|
.append($('<label class="form-check-label" for="' + input_submit_type_my_id + '" />').append(' 自有账号'))
|
|
|
|
|
)
|
|
|
|
|
).append(div_submit_type_bot).append(div_submit_type_my);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-18 16:39:37 +00:00
|
|
|
|
// custom test
|
|
|
|
|
function custom_test_onsubmit(response_text, div_result, url) {
|
|
|
|
|
if (response_text != '') {
|
|
|
|
|
$(div_result).html('<div class="text-danger">' + response_text + '</div>');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
var update = function() {
|
|
|
|
|
var can_next = true;
|
|
|
|
|
$.get(url,
|
|
|
|
|
function(data) {
|
|
|
|
|
if (data.judged === undefined) {
|
|
|
|
|
$(div_result).html('<div class="text-danger">error</div>');
|
|
|
|
|
} else {
|
|
|
|
|
var judge_status = $('<table class="table table-bordered table-text-center"><tr class="info">' + data.html + '</tr></table>');
|
|
|
|
|
$(div_result).empty();
|
|
|
|
|
$(div_result).append(judge_status);
|
|
|
|
|
if (data.judged) {
|
|
|
|
|
var judge_result = $(data.result);
|
|
|
|
|
judge_result.css('display', 'none');
|
|
|
|
|
$(div_result).append(judge_result);
|
|
|
|
|
judge_status.hide(500);
|
|
|
|
|
judge_result.slideDown(500);
|
|
|
|
|
can_next = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, 'json')
|
|
|
|
|
.always(function() {
|
|
|
|
|
if (can_next) {
|
|
|
|
|
setTimeout(update, 500);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
setTimeout(update, 500);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// comment
|
|
|
|
|
function showCommentReplies(id, replies) {
|
|
|
|
|
var toggleFormReply = function(from, text) {
|
|
|
|
|
if (text == undefined) {
|
|
|
|
|
text = '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var p = '#comment-body-' + id;
|
|
|
|
|
var q = '#div-form-reply';
|
|
|
|
|
var r = '#input-reply_comment';
|
|
|
|
|
var t = '#input-reply_id';
|
|
|
|
|
if ($(q).data('from') != from) {
|
|
|
|
|
$(q).data('from', from);
|
|
|
|
|
$(q).hide('fast', function() {
|
|
|
|
|
$(this).appendTo(p).show('fast', function() {
|
|
|
|
|
$(t).val(id);
|
|
|
|
|
$(r).val(text).focus();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
} else if ($(q).css('display') != 'none') {
|
|
|
|
|
$(q).appendTo(p).hide('fast');
|
|
|
|
|
} else {
|
|
|
|
|
$(q).appendTo(p).show('fast', function() {
|
|
|
|
|
$(t).val(id);
|
|
|
|
|
$(r).val(text).focus();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$('#reply-to-' + id).click(function(e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
toggleFormReply(id);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (replies.length == 0) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$("#replies-" + id).long_table(
|
|
|
|
|
replies,
|
|
|
|
|
1,
|
|
|
|
|
'<tr>' +
|
|
|
|
|
'<th>评论回复</th>' +
|
|
|
|
|
'</tr>',
|
|
|
|
|
function(reply) {
|
|
|
|
|
return $('<tr id="' + 'comment-' + reply.id + '" />').append(
|
|
|
|
|
$('<td />').append(
|
2023-02-01 13:30:36 +00:00
|
|
|
|
$('<div class="comment-content">' + getUserLink(reply.poster, reply.poster_realname, reply.poster_username_color) + ':' + reply.content + '</div>')
|
2016-07-18 16:39:37 +00:00
|
|
|
|
).append(
|
2023-02-01 13:30:36 +00:00
|
|
|
|
$('<ul class="text-end mb-0 list-inline" />').append(
|
|
|
|
|
'<li class="list-inline-item small text-muted">' + reply.post_time + '</li>'
|
2016-07-18 16:39:37 +00:00
|
|
|
|
).append(
|
2023-02-01 13:30:36 +00:00
|
|
|
|
$('<li class="list-inline-item" />').append(
|
|
|
|
|
$('<a href="#">回复</a>').click(function (e) {
|
2016-07-18 16:39:37 +00:00
|
|
|
|
e.preventDefault();
|
|
|
|
|
toggleFormReply(reply.id, '回复 @' + reply.poster + ':');
|
|
|
|
|
})
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
).uoj_highlight();
|
|
|
|
|
}, {
|
2023-02-01 13:30:36 +00:00
|
|
|
|
table_classes: ['table'],
|
2016-07-18 16:39:37 +00:00
|
|
|
|
page_len: 5,
|
|
|
|
|
prevent_focus_on_click: true
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
2023-01-11 02:48:20 +00:00
|
|
|
|
|
2023-02-02 03:19:35 +00:00
|
|
|
|
// PDF
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
$('div[data-pdf]').each(function() {
|
|
|
|
|
$(this).append(
|
|
|
|
|
$('<div class="uoj-pdf-loading-spinner border d-flex flex-column justify-content-center align-items-center" style="width: 100%; height: 350px;" />')
|
|
|
|
|
.append('<div class="spinner-border text-muted" style="width: 3rem; height: 3rem;" />')
|
|
|
|
|
.append('<div class="mt-3">Loading PDF...</div>')
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$LAB.script('/js/pdf.js').wait(function() {
|
|
|
|
|
pdfjsLib.GlobalWorkerOptions.workerSrc = '/js/pdf.worker.js';
|
|
|
|
|
|
|
|
|
|
// Support HiDPI-screens.
|
|
|
|
|
var outputScale = window.devicePixelRatio || 1;
|
|
|
|
|
|
|
|
|
|
$('div[data-pdf]').each(function() {
|
|
|
|
|
var _this = $(this);
|
|
|
|
|
var pdf_src = $(this).data('src');
|
|
|
|
|
|
|
|
|
|
$(this).css('width', '100%').css('height', '100%');
|
|
|
|
|
|
|
|
|
|
var task = pdfjsLib.getDocument(pdf_src);
|
|
|
|
|
var id = 'pdf_' + task.docId;
|
|
|
|
|
|
|
|
|
|
$(this).attr('id', id + '_container');
|
|
|
|
|
|
|
|
|
|
task.promise.then(function(pdf) {
|
|
|
|
|
for (var i = 1; i <= pdf.numPages; i++) {
|
|
|
|
|
$(_this).append('<canvas id="' + id + '_page_' + i + '" class="pdf-page-canvas"></canvas>');
|
|
|
|
|
|
|
|
|
|
pdf.getPage(i).then(function(page) {
|
|
|
|
|
var viewport = page.getViewport({
|
|
|
|
|
scale: 2.5,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var canvas = document.getElementById(id + '_page_' + page.pageNumber);
|
|
|
|
|
|
|
|
|
|
canvas.height = Math.floor(viewport.height * outputScale);
|
|
|
|
|
canvas.width = Math.floor(viewport.width * outputScale);
|
|
|
|
|
|
|
|
|
|
var transform = outputScale !== 1
|
|
|
|
|
? [outputScale, 0, 0, outputScale, 0, 0]
|
|
|
|
|
: null;
|
|
|
|
|
|
|
|
|
|
page.render({
|
|
|
|
|
canvasContext: canvas.getContext('2d'),
|
|
|
|
|
viewport: viewport,
|
|
|
|
|
transform: transform,
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$('.uoj-pdf-loading-spinner', _this).remove();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2023-01-11 02:48:20 +00:00
|
|
|
|
// Tooltip
|
|
|
|
|
$(document).ready(function() {
|
2023-01-16 07:34:51 +00:00
|
|
|
|
bootstrap.Tooltip.jQueryInterface.call($('[data-bs-toggle="tooltip"]'));
|
2023-01-11 02:48:20 +00:00
|
|
|
|
});
|
|
|
|
|
|
2023-01-12 02:06:12 +00:00
|
|
|
|
// Popovers
|
|
|
|
|
$(document).ready(function() {
|
2023-01-16 07:34:51 +00:00
|
|
|
|
bootstrap.Popover.jQueryInterface.call($('[data-bs-toggle="popover"]'));
|
2023-01-12 02:06:12 +00:00
|
|
|
|
});
|
|
|
|
|
|
2023-01-11 02:48:20 +00:00
|
|
|
|
// Copy button
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
$('.markdown-body pre, .copy-button-container pre').each(function () {
|
|
|
|
|
var thisEl = $(this);
|
|
|
|
|
|
|
|
|
|
$(this).wrap(
|
|
|
|
|
$('<div class="wrapped-copy-button-container" style="position: relative;"></div>')
|
|
|
|
|
).parent().prepend(
|
|
|
|
|
$(
|
|
|
|
|
'<div style="position: absolute; right: 0; top: 0; margin-top: 0.75rem; margin-right: 0.75rem; font-size: 0.85em;"></div>'
|
|
|
|
|
).append(
|
|
|
|
|
$('<button style="position: relative; background: transparent; border: 0;"></button>')
|
|
|
|
|
.click(function () {
|
|
|
|
|
navigator.clipboard
|
|
|
|
|
.writeText($(thisEl).text())
|
|
|
|
|
.then(() => {
|
|
|
|
|
$(this).html('<i class="bi bi-check2 text-success"></i>');
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
$(this).html('<i class="bi bi-clipboard text-muted"></i>');
|
|
|
|
|
}, 1000);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
$(this).html('<i class="bi bi-x-lg text-danger"></i>');
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
$(this).html('<i class="bi bi-clipboard text-muted"></i>');
|
|
|
|
|
}, 1000);
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.append('<i class="bi bi-clipboard text-muted"></i>')
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
});
|