Skip to content

Commit

Permalink
client: beautify score details
Browse files Browse the repository at this point in the history
  • Loading branch information
fushar committed Aug 19, 2024
1 parent f032988 commit 383f196
Showing 1 changed file with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,16 @@ export function SubmissionDetails({
);
};

const renderScore = score => {
if (score.startsWith('*')) {
return '✓' + score.substring(1);
}
if (score.startsWith('X')) {
return '✕' + score.substring(1);
}
return score;
};

const renderSubtaskResults = () => {
if (!hasSubtasks) {
return null;
Expand Down Expand Up @@ -136,7 +146,7 @@ export function SubmissionDetails({
</td>
<td>{renderExecutionTime(testCaseResult)}</td>
<td>{renderExecutionMemory(testCaseResult)}</td>
<td>{testCaseResult.score}</td>
<td>{renderScore(testCaseResult.score)}</td>
</tr>
);
})
Expand Down Expand Up @@ -200,7 +210,7 @@ export function SubmissionDetails({
</td>
<td>{renderExecutionTime(result)}</td>
<td>{renderExecutionMemory(result)}</td>
<td>{result.score}</td>
<td>{renderScore(result.score)}</td>
</tr>
))}
</tbody>
Expand Down Expand Up @@ -257,7 +267,7 @@ export function SubmissionDetails({
</td>
<td>{renderExecutionTime(result)}</td>
<td>{renderExecutionMemory(result)}</td>
<td>{result.score}</td>
<td>{renderScore(result.score)}</td>
</tr>
));
})}
Expand Down

0 comments on commit 383f196

Please sign in to comment.