]> iEval git - gruntmaster-page.git/blobdiff - lib/Plack/App/Gruntmaster/HTML.pm
Use new standings API
[gruntmaster-page.git] / lib / Plack / App / Gruntmaster / HTML.pm
index 16ae617ecf9c3635f5a9d2bbba0701a62c039659..a82cafd1cd3ab7023a788bd9463d86673601f6be 100644 (file)
@@ -118,10 +118,26 @@ sub process_pb_entry {
        my ($tree, %args) = @_;
        $tree->fid('owner')->edit_href(sub{s/owner_id/$args{owner}/});
        $tree->fid('job_log')->edit_href(sub{s/problem_id/$args{id}/});
+       $tree->fid('solution')->edit_href(sub{s/problem_id/$args{id}/});
        $tree->content_handler(
                statement => literal $args{statement},
                author    =>         $args{author},
                owner     =>         $args{owner_name} || $args{owner});
+       if ($args{contest_stop}) {
+               $tree->fid('solution')->detach;
+               $tree->fid('solution_modal')->detach;
+               my $countdown = $tree->fid('countdown');
+               $countdown->attr('data-start' => $args{contest_start});
+               $countdown->attr('data-stop' => $args{contest_stop});
+               $countdown->attr('data-time' => $args{time});
+               my $left = $args{contest_stop} - $args{time};
+               $countdown->replace_content(sprintf '%02d:%02d:%02d', $left/60/60, $left/60%60, $left%60);
+               $tree->fid('score')->attr('data-value' => $args{value});
+               $tree->fid('score')->replace_content(Gruntmaster::Data::calc_score($args{value}, $args{time} - $args{contest_start}, 0, $args{contest_stop} - $args{contest_start}));
+       } else {
+               $_->detach for $tree->fclass('rc'); # requires contest
+               $tree->fid('solution_modal')->fclass('modal-body')->replace_content(literal $args{solution});
+       }
        if ($args{cansubmit}) {
                $tree->look_down(name => 'problem')->attr(value => $args{id});
                my $contest = $tree->look_down(name => 'contest');
@@ -132,6 +148,11 @@ sub process_pb_entry {
        }
 }
 
+sub process_sol {
+       my ($tree, %args) = @_;
+       $tree->content_handler(solution => literal $args{solution});
+}
+
 sub process_pb {
        my ($tree, %args) = @_;
        my $titer = sub {
@@ -195,7 +216,7 @@ sub process_st {
                my ($st, $tr) = @_;
                $tr->set_child_content(class => 'rank', $st->{rank});
                $tr->set_child_content(class => 'score', $st->{score});
-               $tr->fclass('user')->namedlink($st->{user}->id, $st->{user}->name);
+               $tr->fclass('user')->namedlink($st->{user}, $st->{user_name});
                my $pbscore = $tr->fclass('pbscore');
                $pbscore->detach unless $st->{problems};
                $pbscore->iter($pbscore => @{$st->{scores}});
This page took 0.024436 seconds and 4 git commands to generate.