Skip to content

Commit 3d61617

Browse files
committed
Support first AC flag
The feature is behind a flag in both frontend and client. Fixes #52
1 parent 60ba950 commit 3d61617

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

client/livecli/commands/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,5 @@ def make_parser() -> argparse.ArgumentParser:
8686
domjudge_parser.add_argument('--login-url', help='Login URL')
8787
domjudge_parser.add_argument('--login-user', help='Login user name')
8888
domjudge_parser.add_argument('--login-password', help='Login password')
89+
domjudge_parser.add_argument('--extract-first-ac', action='store_true', help='Extract the first AC')
8990
return root_parser

client/livecli/scrapers/domjudge.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,17 @@ def scrape_impl(self, html: str) -> dict:
9191
penalty = int(m.group('penalty') or '0')
9292
attempts = int(m.group('attempts'))
9393
pendings = int(m.group('pendings') or '0')
94-
classes = problem_elem['class']
9594
solved = len(problem_elem.select('.score_correct')) > 0
96-
team_problems.append({
95+
isFirst = len(problem_elem.select('.score_first')) > 0
96+
problem = {
9797
'attempts': attempts,
9898
'pendings': pendings,
9999
'penalty': penalty,
100100
'solved': solved,
101-
})
101+
}
102+
if self._options.extract_first_ac:
103+
problem['isFirst'] = isFirst
104+
team_problems.append(problem)
102105
rank = team_elem.select('.scorepl')[0].get_text().strip()
103106
if rank:
104107
last_rank = rank = int(rank)

frontend/css/livesite.css

+4
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,10 @@ a.no-decoration {
356356
background-color: #64dd17;
357357
}
358358

359+
.bg-solved-first {
360+
background-color: #1daa1d;
361+
}
362+
359363
.bg-pending {
360364
background-color: #ffd600;
361365
animation: pending-blink 1s ease 0s infinite alternate-reverse none running;

frontend/src/components/standings/StandingsTable.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -284,14 +284,14 @@ type TeamProblemColProps = {
284284
};
285285

286286
function TeamProblemCol({
287-
problem: { attempts, penalty, pendings, solved },
287+
problem: { attempts, penalty, pendings, solved, isFirst },
288288
problemSpec: { label },
289289
revealMode,
290290
}: TeamProblemColProps) {
291291
let status;
292292
let content;
293293
if (solved) {
294-
status = 'solved';
294+
status = (siteconfig.features.firstAc && isFirst) ? 'solved-first' : 'solved';
295295
const hour = Math.floor(penalty / 60 / 60);
296296
const minute = Math.floor(penalty / 60) % 60;
297297
const second = Math.floor(penalty) % 60;

frontend/src/data.ts

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export type StandingsProblemEntry = {
4646
penalty: number;
4747
attempts: number;
4848
pendings: number;
49+
isFirst: boolean;
4950
};
5051

5152
export type StandingsFeed = {

frontend/src/siteconfig.ts

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ const siteconfig = {
2323
teamPage: false,
2424
photo: false,
2525
icon: false,
26+
firstAc: true,
2627
},
2728
firebase: {
2829
apiKey: 'AIzaSyDAplg3phAg4pO0gkZO2THZEx9iceyT0tI',

0 commit comments

Comments
 (0)