mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-21 21:48:42 +00:00
feat(submission): finish refactor
This commit is contained in:
parent
496b87d0a4
commit
8b45b03225
@ -41,7 +41,7 @@ if ($can_see_minor) {
|
||||
redirectTo(UOJSubmission::cur()->getUriForNewTID($tid));
|
||||
};
|
||||
$minor_rejudge_form->config['submit_button']['class'] = 'list-group-item list-group-item-action border-start-0 border-end-0 list-group-item-secondary';
|
||||
$minor_rejudge_form->config['submit_button']['text'] = '偷偷重新测试';
|
||||
$minor_rejudge_form->config['submit_button']['text'] = '<i class="bi bi-arrow-clockwise"></i> 偷偷重新测试';
|
||||
$minor_rejudge_form->config['submit_container']['class'] = '';
|
||||
$minor_rejudge_form->runAtServer();
|
||||
}
|
||||
@ -94,7 +94,7 @@ if (UOJSubmission::cur()->isLatest()) {
|
||||
UOJSubmission::rejudgeById(UOJSubmission::info('id'));
|
||||
};
|
||||
$rejudge_form->config['submit_button']['class'] = 'list-group-item list-group-item-action border-start-0 border-end-0 list-group-item-secondary';
|
||||
$rejudge_form->config['submit_button']['text'] = '重新测试';
|
||||
$rejudge_form->config['submit_button']['text'] = '<i class="bi bi-arrow-clockwise"></i> 重新测试';
|
||||
$rejudge_form->config['submit_container']['class'] = '';
|
||||
$rejudge_form->runAtServer();
|
||||
}
|
||||
@ -105,7 +105,7 @@ if (UOJSubmission::cur()->isLatest()) {
|
||||
UOJSubmission::cur()->delete();
|
||||
};
|
||||
$delete_form->config['submit_button']['class'] = 'list-group-item list-group-item-action border-start-0 border-end-0 list-group-item-danger';
|
||||
$delete_form->config['submit_button']['text'] = '删除此提交记录';
|
||||
$delete_form->config['submit_button']['text'] = '<i class="bi bi-trash-3"></i> 删除此提交记录';
|
||||
$delete_form->config['submit_container']['class'] = '';
|
||||
$delete_form->config['confirm']['text'] = '你真的要删除这条提交记录吗?';
|
||||
$delete_form->succ_href = "/submissions";
|
||||
@ -118,7 +118,7 @@ if (UOJSubmission::cur()->isLatest()) {
|
||||
UOJSubmission::cur()->deleteThisMinorVersion();
|
||||
};
|
||||
$delete_form->config['submit_button']['class'] = 'list-group-item list-group-item-action border-start-0 border-end-0 list-group-item-danger';
|
||||
$delete_form->config['submit_button']['text'] = '删除当前历史记录(保留其他历史记录)';
|
||||
$delete_form->config['submit_button']['text'] = '<i class="bi bi-trash-3"></i> 删除当前历史记录';
|
||||
$delete_form->config['submit_container']['class'] = '';
|
||||
$delete_form->config['confirm']['text'] = '你真的要删除这条历史记录吗?删除这条历史记录不会影响其他的历史记录。';
|
||||
$delete_form->succ_href = UOJSubmission::cur()->getUriForLatest();
|
||||
@ -167,7 +167,12 @@ if (UOJSubmission::cur()->hasJudged()) {
|
||||
'card_body' => false,
|
||||
];
|
||||
} else {
|
||||
// TODO: 您当前无法查看详细信息
|
||||
$tabs['details'] = [
|
||||
'name' => '详细信息',
|
||||
'displayer' => function () {
|
||||
echo '<div>您无权查看当前提交的详细信息。</div>';
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
if ($perm['manager_view'] && isset($submission_result['final_result'])) {
|
||||
@ -182,14 +187,29 @@ if (UOJSubmission::cur()->hasJudged()) {
|
||||
];
|
||||
}
|
||||
} else {
|
||||
// TODO: move judge_status from UOJSubmission::echoStatusCard() to here
|
||||
$show_status_details = UOJSubmission::cur()->viewerCanSeeStatusDetailsHTML(Auth::user());
|
||||
|
||||
$tabs['details'] = [
|
||||
'name' => '详细信息',
|
||||
'displayer' => function () {
|
||||
echo '<div class="card-body rounded-bottom">';
|
||||
echo '<table class="w-100">';
|
||||
echo '<tr id="status_details_' . UOJSubmission::info('id') . '">';
|
||||
echo UOJSubmission::cur()->getStatusDetailsHTML();
|
||||
echo '</tr>';
|
||||
echo '<script>update_judgement_status_details(' . UOJSubmission::info('id') . ')</script>';
|
||||
echo '</table>';
|
||||
echo '</div>';
|
||||
},
|
||||
'card_body' => false,
|
||||
];
|
||||
}
|
||||
|
||||
if ($perm['content'] || $perm['manager_view']) {
|
||||
$tabs['source'] = [
|
||||
'name' => '源代码',
|
||||
'displayer' => function () {
|
||||
echo '<div class="list-group list-group-flush">';
|
||||
echo '<div class="list-group list-group-flush rounded-bottom">';
|
||||
UOJSubmission::cur()->echoContent(['list_group' => true]);
|
||||
echo '</div>';
|
||||
},
|
||||
@ -243,29 +263,6 @@ if (isset($hack_form)) {
|
||||
<?= UOJLocale::get('problems::submission') . ' #' . $submission['id'] ?>
|
||||
</h1>
|
||||
|
||||
<style>
|
||||
.submission-layout {
|
||||
/* display: grid; */
|
||||
grid-template-columns: minmax(0, calc(100% - 25% - var(--bs-gutter-x))) auto;
|
||||
grid-template-rows: auto 1fr;
|
||||
}
|
||||
|
||||
.submission-left-col {
|
||||
grid-column: 1;
|
||||
grid-row: 1 / span 2;
|
||||
}
|
||||
|
||||
.submission-right-col {
|
||||
grid-column: 2;
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
.submission-right-control-panel {
|
||||
grid-column: 2;
|
||||
grid-row: 2;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="row mt-3 submission-layout d-md-grid">
|
||||
<div class="submission-right-col">
|
||||
<?php UOJSubmission::cur()->echoStatusCard(['show_actual_score' => $perm['score'], 'id_hidden' => true], Auth::user()) ?>
|
||||
@ -314,7 +311,6 @@ if (isset($hack_form)) {
|
||||
</div>
|
||||
|
||||
<div class="submission-right-control-panel">
|
||||
|
||||
<?php if (
|
||||
isset($minor_rejudge_form) ||
|
||||
isset($rejudge_form) ||
|
||||
@ -325,7 +321,7 @@ if (isset($hack_form)) {
|
||||
操作
|
||||
</div>
|
||||
|
||||
<div class="list-group list-group-flush">
|
||||
<div class="list-group list-group-flush rounded-bottom">
|
||||
<?php if (isset($minor_rejudge_form)) : ?>
|
||||
<?php $minor_rejudge_form->printHTML() ?>
|
||||
<?php endif ?>
|
||||
|
@ -588,8 +588,6 @@ class UOJSubmission {
|
||||
$cfg['show_actual_score'] = $this->viewerCanSeeScore($viewer);
|
||||
}
|
||||
|
||||
$show_status_details = $this->viewerCanSeeStatusDetailsHTML($viewer);
|
||||
|
||||
$rows = [
|
||||
'id' => 'ID',
|
||||
'submitter' => UOJLocale::get('problems::submitter'),
|
||||
@ -624,8 +622,8 @@ class UOJSubmission {
|
||||
break;
|
||||
default:
|
||||
echo '<div class="d-flex justify-content-between align-items-center">';
|
||||
echo '<span class="flex-shrink-0">', $name, '</span>';
|
||||
echo '<span class="text-end">', $this->echoStatusBarTD($id, $cfg), '</span>';
|
||||
echo '<span class="flex-shrink-0 me-2">', $name, '</span>';
|
||||
echo '<span class="text-end text-truncate d-inline-block">', $this->echoStatusBarTD($id, $cfg), '</span>';
|
||||
echo '</div>';
|
||||
|
||||
break;
|
||||
@ -635,17 +633,6 @@ class UOJSubmission {
|
||||
|
||||
echo '</div>';
|
||||
echo '</div>';
|
||||
|
||||
if ($show_status_details) {
|
||||
echo '<div class="card">';
|
||||
echo '<table>';
|
||||
echo '<tr id="', "status_details_{$this->info['id']}", '" class="">';
|
||||
echo $this->getStatusDetailsHTML();
|
||||
echo '</tr>';
|
||||
echo '<script type="text/javascript">update_judgement_status_details(' . $this->info['id'] . ')</script>';
|
||||
echo '</table>';
|
||||
echo '</div>';
|
||||
}
|
||||
}
|
||||
|
||||
public function delete() {
|
||||
|
@ -502,3 +502,26 @@ form.form-horizontal {
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Submission Page */
|
||||
|
||||
.submission-layout {
|
||||
/* display: grid; */
|
||||
grid-template-columns: 75% 25%;
|
||||
grid-template-rows: auto 1fr;
|
||||
}
|
||||
|
||||
.submission-left-col {
|
||||
grid-column: 1;
|
||||
grid-row: 1 / span 2;
|
||||
}
|
||||
|
||||
.submission-right-col {
|
||||
grid-column: 2;
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
.submission-right-control-panel {
|
||||
grid-column: 2;
|
||||
grid-row: 2;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user