mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-09 16:08:40 +00:00
fix: custom test result styles
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
beaa45160b
commit
186a2e6710
@ -862,23 +862,39 @@ class JudgementDetailsPrinter {
|
|||||||
echo '>';
|
echo '>';
|
||||||
|
|
||||||
echo '<div class="row">';
|
echo '<div class="row">';
|
||||||
echo '<div class="col-sm-2">';
|
echo '<div class="col-sm-4">';
|
||||||
echo '<h4 class="card-title">', 'Custom Test: ', '</h4>';
|
echo '<h4 class="card-title">', 'Custom Test: ', '</h4>';
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
|
||||||
echo '<div class="col-sm-4">';
|
if (isset($REQUIRE_LIB['bootstrap5'])) {
|
||||||
|
echo '<div class="col-sm-4 uoj-status-text">';
|
||||||
|
|
||||||
|
echo $this->styler->getTestInfoIcon($test_info);
|
||||||
|
} else {
|
||||||
|
echo '<div class="col-sm-4">';
|
||||||
|
}
|
||||||
echo htmlspecialchars($test_info);
|
echo htmlspecialchars($test_info);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
|
||||||
echo '<div class="col-sm-3">';
|
echo '<div class="col-sm-2">';
|
||||||
if ($test_time >= 0) {
|
if ($test_time >= 0) {
|
||||||
echo 'time: ', $test_time, 'ms';
|
if (isset($REQUIRE_LIB['bootstrap5'])) {
|
||||||
|
echo '<i class="bi bi-hourglass-split"></i> ';
|
||||||
|
} else {
|
||||||
|
echo 'time: ';
|
||||||
|
}
|
||||||
|
echo $test_time, ' ms';
|
||||||
}
|
}
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
|
||||||
echo '<div class="col-sm-3">';
|
echo '<div class="col-sm-2">';
|
||||||
if ($test_memory >= 0) {
|
if ($test_memory >= 0) {
|
||||||
echo 'memory: ', $test_memory, 'kb';
|
if (isset($REQUIRE_LIB['bootstrap5'])) {
|
||||||
|
echo '<i class="bi bi-memory"></i> ';
|
||||||
|
} else {
|
||||||
|
echo 'memory: ';
|
||||||
|
}
|
||||||
|
echo $test_memory, ' kB';
|
||||||
}
|
}
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
|
||||||
@ -1019,6 +1035,19 @@ class CustomTestSubmissionDetailsStyler {
|
|||||||
return 'card-uoj-wrong';
|
return 'card-uoj-wrong';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
public function getTestInfoIcon($test_info) {
|
||||||
|
if ($test_info == 'Success') {
|
||||||
|
return '<i class="bi bi-check-lg"></i> ';
|
||||||
|
} elseif ($test_info == 'Time Limit Exceeded') {
|
||||||
|
return '<i class="bi bi-clock"></i> ';
|
||||||
|
} elseif ($test_info == 'Acceptable Answer') {
|
||||||
|
return '<i class="bi bi-dash-square"></i> ';
|
||||||
|
} elseif ($test_info == 'Wrong Answer') {
|
||||||
|
return '<i class="bi bi-x-lg"></i> ';
|
||||||
|
} else {
|
||||||
|
return '<i class="bi bi-slash-circle"></i> ';
|
||||||
|
}
|
||||||
|
}
|
||||||
public function shouldFadeDetails($info) {
|
public function shouldFadeDetails($info) {
|
||||||
return $this->fade_all_details;
|
return $this->fade_all_details;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user