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 e779a82
Showing 1 changed file with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,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 +200,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 +257,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 Expand Up @@ -381,6 +381,16 @@ export function SubmissionDetails({
);
};

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

return (
<div className="programming-submission-details">
{renderGeneralInfo()}
Expand Down

0 comments on commit e779a82

Please sign in to comment.