]>
iEval git - gruntmaster-page.git/blob - lib/Plack/App/Gruntmaster/HTML.pm
eb3c56765964e4d1ec09fb70d14b7865c64b3738
1 package Plack
::App
::Gruntmaster
::HTML
;
3 use parent qw
/Exporter/;
4 our @EXPORT = qw
/render render_article/;
6 use File
::Slurp qw
/read_file/;
9 use Data
::Dumper qw
/Dumper/;
11 sub ftime
($) { POSIX
::strftime
'%c', localtime shift }
12 sub literal
($) { HTML
::Element
::Library
::super_literal
shift // '' }
14 sub HTML
::Element
::edit_href
{
15 my ($self, $sub) = @_;
16 local $_ = $self->attr('href');
18 $self->attr(href
=> $_);
21 sub HTML
::Element
::iter3
{
22 my ($self, $data, $code) = @_;
26 my $current = $orig->clone;
27 $code->($el, $current);
28 $prev->postinsert($current);
34 sub HTML
::Element
::fid
{ shift->look_down(id
=> shift) }
35 sub HTML
::Element
::fclass
{ shift->look_down(class => qr/\b$_[0]\b/) }
37 sub HTML
::Element
::namedlink
{
38 my ($self, $id, $name) = @_;
39 $name = $id unless $name =~ /[[:graph:]]/;
40 $self = $self->find('a');
41 $self->edit_href(sub {s/id/$id/});
42 $self->replace_content($name);
46 my ($tmpl, $lang, %args) = @_;
48 my $meat = _render
($tmpl, $lang, %args);
49 _render
('skel', $lang, %args, meat
=> $meat)
53 my ($art, $lang) = @_;
55 my $title = read_file
"a/$art.$lang.title";
56 my $meat = read_file
"a/$art.$lang";
57 _render
('skel', $lang, title
=> $title , meat
=> $meat)
61 my ($tmpl, $lang, %args) = @_;
62 my $builder = HTML
::Seamstress
->new;
63 $builder->ignore_unknown(0);
64 my $tree = $builder->parse_file("tmpl/$tmpl.$lang");
65 $tree = $tree->guts unless $tmpl eq 'skel';
66 $tree->defmap(smap
=> \
%args);
67 my $process = __PACKAGE__
->can("process_$tmpl");
68 $process->($tree, %args) if $process;
73 my ($tree, %args) = @_;
74 $tree->content_handler(
75 title
=> $args{title
},
76 content
=> literal
$args{meat
});
79 sub process_us_entry
{
80 my ($tree, %args) = @_;
81 $tree->fid($_)->attr('href', "/$_/?owner=$args{id}") for qw
/log pb/;
82 $tree->fid('track_user')->attr('data-user', $args{id
});
83 my @solved = map { $_->{solved
} ?
($_->{problem
}) : () } @
{$args{problems
}};
84 my @attempted = map { !$_->{solved
} ?
($_->{problem
}) : () } @
{$args{problems
}};
88 $li->find('a')->namedlink($data);
90 $tree->fid('solved')->find('li')->iter3(\
@solved, $pbiter);
91 $tree->fid('attempted')->find('li')->iter3(\
@attempted, $pbiter);
92 $tree->fid('solved_count')->replace_content(scalar @solved);
93 $tree->fid('attempted_count')->replace_content(scalar @attempted);
97 $td->fclass('contest')->namedlink($data->{contest
}, $data->{contest_name
});
98 $td->fclass('score')->replace_content($data->{score
});
99 $td->fclass('rank')->replace_content($data->{rank
});
101 $tree->find('table')->find('tbody')->find('tr')->iter3($args{contests
}, $ctiter);
105 my ($tree, %args) = @_;
107 my ($data, $tr) = @_;
108 $tr->fclass('user')->namedlink($data->{id
}, $data->{name
});
109 $tr->fclass($_)->replace_content($data->{$_}) for qw
/solved attempted contests/;
111 $tree->find('tbody')->find('tr')->iter3($args{us
}, $iter);
114 sub process_ct_entry
{
115 my ($tree, %args) = @_;
116 $_->edit_href (sub {s/contest_id/$args{id}/}) for $tree->find('a');
117 $tree->fid('links')->detach unless $args{started
};
118 my $status = ($args{time} < $args{start
} ?
'starts' : 'ends');
119 $tree->fclass('timer')->attr('data-stop', $status eq 'ends' ?
$args{stop
} : $args{start
});
120 $tree->content_handler(
121 start
=> ftime
$args{start
},
122 stop
=> ftime
$args{stop
},
124 description
=> literal
$args{description
});
125 $tree->fid('ctcountdown')->detach if $args{time} >= $args{stop
};
129 my ($tree, %args) = @_;
131 my ($data, $tr) = @_;
132 $data->{$_} = ftime
$data->{$_} for qw
/start stop/;
133 $tr->hashmap(class => $data, [qw
/name owner/]);
134 $tr->fclass('name')->namedlink($data->{id
}, $data->{name
});
135 $tr->fclass('owner')->namedlink($data->{owner
}, $data->{owner_name
});
137 $args{$_} ?
$tree->fid($_)->find('tbody')->find('tr')->iter3($args{$_}, $iter) : $tree->fid($_)->detach for qw
/running pending finished/;
140 sub process_pb_entry
{
141 my ($tree, %args) = @_;
142 $tree->fid('owner')->edit_href(sub{s/owner_id/$args{owner}/});
143 $tree->fid('job_log')->edit_href(sub{s/problem_id/$args{id}/});
144 $tree->fid('solution')->edit_href(sub{s/problem_id/$args{id}/});
145 $tree->fid('job_log')->edit_href(sub{$_ .= "&private=$args{private}"}) if $args{private
};
146 $tree->content_handler(
147 statement
=> literal
$args{statement
},
148 level
=> ucfirst $args{level
},
149 author
=> $args{author
},
150 owner
=> $args{owner_name
} || $args{owner
});
151 if ($args{contest_stop
}) {
152 $tree->fid('solution')->detach;
153 $tree->fid('solution_modal')->detach;
154 my $score = $tree->fid('score');
155 $score->attr('data-start' => $args{open_time
});
156 $score->attr('data-stop' => $args{contest_stop
});
157 $score->attr('data-value' => $args{value
});
158 $tree->fid('countdown')->attr('data-stop' => $args{contest_stop
});
160 $tree->fid('solution')->detach unless $args{solution
};
161 $_->detach for $tree->fclass('rc'); # requires contest
162 $tree->fid('solution_modal')->fclass('modal-body')->replace_content(literal
$args{solution
});
164 if ($args{cansubmit
}) {
165 $tree->fid('nosubmit')->detach;
166 $tree->look_down(name
=> 'problem')->attr(value
=> $args{id
});
167 my $contest = $tree->look_down(name
=> 'contest');
168 $contest->attr(value
=> $args{contest
}) if $args{contest
};
169 $contest->detach unless $args{contest
}
171 $tree->fid('nosubmit')->find('a')->edit_href(sub{s/id/$args{id}/});
172 $tree->fid('submit')->detach
177 my ($tree, %args) = @_;
178 $tree->content_handler(solution
=> literal
$args{solution
});
182 my ($tree, %args) = @_;
184 my ($data, $tr) = @_;
185 $tr->set_child_content(class => 'author', $data->{author
});
186 $tr->fclass('name')->namedlink($data->{id
}, $data->{name
});
187 $tr->fclass('name')->find('a')->edit_href(sub {$_ .= "?contest=$args{contest}"}) if $args{contest
};
188 $tr->fclass('owner')->namedlink($data->{owner
}, $data->{owner_name
});
189 $tr->find('td')->attr(class => $tr->find('td')->attr('class').' warning') if $data->{private
};
192 my ($data, $div) = @_;
193 $div->attr(id
=> $data);
194 $div->find('h2')->replace_content(ucfirst $data);
195 $div->find('tbody')->find('tr')->iter3($args{$data}, $titer);
197 $tree->fid('beginner')->iter3([grep {$args{$_}} qw
/beginner easy medium hard/], $iter);
198 $tree->fid('open-alert')->detach unless $args{contest
};
201 sub process_log_entry
{
202 my ($tree, %args) = @_;
203 $tree->fid('problem')->namedlink(@args{qw
/problem problem_name/});
204 $tree->fid('owner')->namedlink(@args{qw
/owner owner_name/});
205 $tree->fid('source')->namedlink("$args{id}.$args{extension}", sprintf '%.2fKB', $args{size
}/1024);
206 if ($args{contest
}) {
207 $tree->fid('contest')->namedlink(@args{qw
/contest contest_name/});
208 $tree->fid('problem')->find('a')->edit_href(sub {$_.="?contest=$args{contest}"});
210 $tree->fid('contest')->left->detach;
211 $tree->fid('contest')->detach;
214 $args{errors
} ?
$tree->fid('errors')->find('pre')->replace_content($args{errors
}) : $tree->fid('errors')->detach;
216 my ($data, $tr) = @_;
217 $data->{time} = sprintf '%.4fs', $data->{time};
218 $tr->defmap(class => $data);
219 $tr->fclass('result_text')->attr(class => "r$data->{result}")
221 $tree->fclass('result_text')->replace_content($args{result_text
});
222 $tree->fclass('result_text')->attr(class => "r$args{result}");
223 $args{results
} ?
$tree->fid('results')->find('tbody')->find('tr')->iter3($args{results
}, $iter) : $tree->fid('results')->detach;
224 $tree->fid('no_results')->detach if $tree->fid('results') || $tree->fid('errors');
228 my ($tree, %args) = @_;
230 my ($data, $tr) = @_;
231 $tr->fclass('id')->namedlink($data->{id
});
232 $tr->fclass('problem')->namedlink($data->{problem
}, $data->{problem_name
});
233 $tr->fclass('problem')->find('a')->edit_href(sub{$_ .= "?contest=$args{contest}"}) if $args{contest
};
234 $tr->fclass('contest')->namedlink($data->{contest
}, $data->{contest_name
}) if $data->{contest
};
235 $tr->fclass('contest')->replace_content('None') unless $data->{contest
};
236 $tr->fclass('date')->replace_content(ftime
$data->{date
});
237 $tr->fclass('format')->replace_content($data->{format
});
238 $tr->fclass('size')->namedlink("$data->{id}.$data->{extension}", sprintf "%.2fKB", $data->{size
}/1024);
239 $tr->fclass('size')->attr('data-private', '') if $data->{private
};
240 $tr->fclass('owner')->namedlink($data->{owner
}, $data->{owner_name
});
241 $tr->fclass('result_text')->replace_content($data->{result_text
});
242 $tr->fclass('result_text')->attr(class => "r$data->{result}");
243 $tr->find('td')->attr(class => $tr->find('td')->attr('class').' warning') if $data->{private
};
245 $tree->find('table')->find('tbody')->find('tr')->iter3($args{log}, $iter);
246 $args{next_page
} ?
$tree->fclass('next')->namedlink($args{next_page
}, 'Next') : $tree->fclass('next')->detach;
247 $args{previous_page
} ?
$tree->fclass('previous')->namedlink($args{previous_page
}, 'Previous') : $tree->fclass('previous')->detach;
248 for my $cls (qw
/next previous/) {
249 my $elem = $tree->fclass($cls);
251 delete $args{args
}{page
};
252 my $str = join '&', map { $_ . '=' . $args{args
}{$_} } keys %{$args{args
}};
253 $elem->find('a')->edit_href(sub{s/$/&$str/}) if $str;
255 $tree->fclass('current')->replace_content("Page $args{current_page} of $args{last_page}");
259 my ($tree, %args) = @_;
260 $args{problems
} //= [];
262 my ($data, $th) = @_;
263 $th->attr(class => undef);
264 $th->namedlink(@
$data);
265 $th->find('a')->edit_href(sub{s/$/?contest=$args{args}{contest}/});
267 $tree->fclass('problem')->iter3($args{problems
}, $pbiter);
270 $tr->set_child_content(class => 'rank', $st->{rank
});
271 $tr->set_child_content(class => 'score', $st->{score
});
272 $tr->fclass('user')->namedlink($st->{user
}, $st->{user_name
});
273 my $pbscore = $tr->fclass('pbscore');
274 $pbscore->iter($pbscore => @
{$st->{scores
}});
276 $tree->find('tbody')->find('tr')->iter3($args{st
}, $iter);
280 my ($tree, %args) = @_;
282 my ($data, $div) = @_;
283 $div->set_child_content(class => 'value', $data->{value
});
284 $div->set_child_content(class => 'solution', literal
$data->{solution
});
285 $div->fclass('problem')->namedlink($data->{id
}, $data->{name
});
287 my @pb = map { @
{$args{$_} // []} } qw
/beginner easy medium hard/;
288 $tree->fclass('well')->iter3(\
@pb, $iter);
This page took 0.079035 seconds and 3 git commands to generate.