Greatly improve user list
[gruntmaster-page.git] / lib / Plack / App / Gruntmaster / HTML.pm
CommitLineData
3b69df7a
MG
1package Plack::App::Gruntmaster::HTML;
2use v5.14;
3use parent qw/Exporter/;
4our @EXPORT = qw/render render_article/;
5
6use File::Slurp qw/read_file/;
7use HTML::Seamstress;
8use POSIX qw//;
9use Data::Dumper qw/Dumper/;
10
11sub ftime ($) { POSIX::strftime '%c', localtime shift }
12sub literal ($) { HTML::Element::Library::super_literal shift // '' }
13
14sub HTML::Element::edit_href {
15 my ($self, $sub) = @_;
16 local $_ = $self->attr('href');
17 $sub->();
18 $self->attr(href => $_);
19}
20
21sub HTML::Element::iter3 {
22 my ($self, $data, $code) = @_;
23 my $orig = $self;
24 my $prev = $orig;
25 for my $el (@$data) {
26 my $current = $orig->clone;
27 $code->($el, $current);
28 $prev->postinsert($current);
29 $prev = $current;
30 }
31 $orig->detach;
32}
33
34sub HTML::Element::fid { shift->look_down(id => shift) }
35sub HTML::Element::fclass { shift->look_down(class => shift) }
36
37sub 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);
43}
44
45sub render {
46 my ($tmpl, $lang, %args) = @_;
47 $lang //= 'en';
48 my $meat = _render($tmpl, $lang, %args);
49 _render('skel', $lang, %args, meat => $meat)
50}
51
52sub render_article {
53 my ($art, $lang) = @_;
54 $lang //= 'en';
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)
58}
59
60sub _render {
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;
69 $tree->as_HTML;
70}
71
72sub process_skel {
73 my ($tree, %args) = @_;
74 $tree->content_handler(
75 title => $args{title},
76 content => literal $args{meat});
77}
78
79sub process_us_entry {
80 my ($tree, %args) = @_;
81 $tree->fid($_)->attr('href', "/$_/?owner=$args{id}") for qw/log pb/;
9a8a3012
MG
82 my @solved = map { $_->{solved} ? ($_->{problem}) : () } @{$args{problems}};
83 my @attempted = map { !$_->{solved} ? ($_->{problem}) : () } @{$args{problems}};
84
85 my $pbiter = sub {
86 my ($data, $li) = @_;
87 $li->find('a')->namedlink($data);
88 };
89 $tree->fid('solved')->find('li')->iter3(\@solved, $pbiter);
90 $tree->fid('attempted')->find('li')->iter3(\@attempted, $pbiter);
91 $tree->fid('solved_count')->replace_content(scalar @solved);
92 $tree->fid('attempted_count')->replace_content(scalar @attempted);
93
94 my $ctiter = sub {
95 my ($data, $td) = @_;
dc6ca3bc 96 $td->fclass('contest')->namedlink($data->{contest}, $data->{contest_name});
9a8a3012
MG
97 $td->fclass('score')->replace_content($data->{score});
98 $td->fclass('rank')->replace_content($data->{rank});
99 };
100 $tree->find('table')->find('tbody')->find('tr')->iter3($args{contests}, $ctiter);
3b69df7a
MG
101}
102
103sub process_us {
104 my ($tree, %args) = @_;
c5ff0b09
MG
105 my $iter = sub {
106 my ($data, $tr) = @_;
107 $tr->fclass('user')->namedlink($data->{id}, $data->{name});
108 $tr->fclass($_)->replace_content($data->{$_}) for qw/solved attempted contests/;
109 };
110 $tree->find('tbody')->find('tr')->iter3($args{us}, $iter);
3b69df7a
MG
111}
112
113sub process_ct_entry {
114 my ($tree, %args) = @_;
115 $_->edit_href (sub {s/contest_id/$args{id}/}) for $tree->find('a');
116 $tree->fid('links')->detach unless $args{started};
117 $tree->content_handler(
118 start => ftime $args{start},
119 stop => ftime $args{stop},
120 description => literal $args{description});
121}
122
123sub process_ct {
124 my ($tree, %args) = @_;
125 my $iter = sub {
126 my ($data, $tr) = @_;
127 $data->{$_} = ftime $data->{$_} for qw/start stop/;
128 $tr->hashmap(class => $data, [qw/name owner/]);
129 $tr->fclass('name')->namedlink($data->{id}, $data->{name});
130 $tr->fclass('owner')->namedlink($data->{owner}, $data->{owner_name});
131 };
132 $args{$_} ? $tree->fid($_)->find('tbody')->find('tr')->iter3($args{$_}, $iter) : $tree->fid($_)->detach for qw/running pending finished/;
133}
134
135sub process_pb_entry {
136 my ($tree, %args) = @_;
137 $tree->fid('owner')->edit_href(sub{s/owner_id/$args{owner}/});
138 $tree->fid('job_log')->edit_href(sub{s/problem_id/$args{id}/});
e4d5bdf5 139 $tree->fid('solution')->edit_href(sub{s/problem_id/$args{id}/});
3b69df7a
MG
140 $tree->content_handler(
141 statement => literal $args{statement},
142 author => $args{author},
143 owner => $args{owner_name} || $args{owner});
9a4806b3 144 if ($args{contest_stop}) {
e4d5bdf5
MG
145 $tree->fid('solution')->detach;
146 $tree->fid('solution_modal')->detach;
9a4806b3
MG
147 my $countdown = $tree->fid('countdown');
148 $countdown->attr('data-start' => $args{contest_start});
149 $countdown->attr('data-stop' => $args{contest_stop});
150 $countdown->attr('data-time' => $args{time});
151 my $left = $args{contest_stop} - $args{time};
152 $countdown->replace_content(sprintf '%02d:%02d:%02d', $left/60/60, $left/60%60, $left%60);
153 $tree->fid('score')->attr('data-value' => $args{value});
154 $tree->fid('score')->replace_content(Gruntmaster::Data::calc_score($args{value}, $args{time} - $args{contest_start}, 0, $args{contest_stop} - $args{contest_start}));
155 } else {
156 $_->detach for $tree->fclass('rc'); # requires contest
e4d5bdf5 157 $tree->fid('solution_modal')->fclass('modal-body')->replace_content(literal $args{solution});
9a4806b3 158 }
3b69df7a
MG
159 if ($args{cansubmit}) {
160 $tree->look_down(name => 'problem')->attr(value => $args{id});
161 my $contest = $tree->look_down(name => 'contest');
162 $contest->attr(value => $args{contest}) if $args{contest};
163 $contest->detach unless $args{contest}
164 } else {
165 $tree->fid('submit')->detach
166 }
167}
168
e4d5bdf5
MG
169sub process_sol {
170 my ($tree, %args) = @_;
171 $tree->content_handler(solution => literal $args{solution});
172}
173
3b69df7a
MG
174sub process_pb {
175 my ($tree, %args) = @_;
176 my $titer = sub {
177 my ($data, $tr) = @_;
178 $tr->set_child_content(class => 'author', $data->{author});
179 $tr->fclass('name')->namedlink($data->{id}, $data->{name});
180 $tr->fclass('name')->find('a')->edit_href(sub {$_ .= "?contest=$args{contest}"}) if $args{contest};
181 $tr->fclass('owner')->namedlink($data->{owner}, $data->{owner_name});
182 };
183 my $iter = sub {
184 my ($data, $div) = @_;
185 $div->attr(id => $data);
186 $div->find('h2')->replace_content(ucfirst $data);
187 $div->find('tbody')->iter3($args{$data}, $titer);
188 };
189 $tree->fid('beginner')->iter3([grep {$args{$_}} qw/beginner easy medium hard/], $iter);
190}
191
192sub process_log_entry {
193 my ($tree, %args) = @_;
194 $args{errors} ? $tree->fid('errors')->find('pre')->replace_content($args{errors}) : $tree->fid('errors')->detach;
195 my $iter = sub {
196 my ($data, $tr) = @_;
197 $data->{time} = sprintf '%.4fs', $data->{time};
198 $tr->defmap(class => $data);
199 $tr->fclass('result_text')->attr(class => "r$data->{result}")
200 };
201 @{$args{results}} ? $tree->fid('results')->find('tbody')->find('tr')->iter3($args{results}, $iter) : $tree->fid('results')->detach;
202}
203
204sub process_log {
205 my ($tree, %args) = @_;
206 my $iter = sub {
207 my ($data, $tr) = @_;
208 $tr->fclass('id')->namedlink($data->{id});
209 $tr->fclass('problem')->namedlink($data->{problem}, $data->{problem_name});
210 $tr->fclass('problem')->find('a')->edit_href(sub{$_ .= "?contest=$args{contest}"}) if $args{contest};
211 $tr->fclass('date')->replace_content(ftime $data->{date});
212 $tr->fclass('size')->namedlink("$data->{id}.$data->{extension}", sprintf "%.2fKB", $data->{size}/1024);
213 $tr->fclass('size')->attr('data-private', '') if $data->{private};
214 $tr->fclass('owner')->namedlink($data->{owner}, $data->{owner_name});
215 $tr->fclass('result_text')->replace_content($data->{result_text});
216 $tr->fclass('result_text')->attr(class => "r$data->{result}");
217 };
218 $tree->find('table')->find('tbody')->find('tr')->iter3($args{log}, $iter);
219 $args{next_page} ? $tree->fclass('next')->namedlink($args{next_page}, 'Next') : $tree->fclass('next')->attr(class => 'next disabled');
220 $args{previous_page} ? $tree->fclass('previous')->namedlink($args{previous_page}, 'Previous') : $tree->fclass('previous')->attr(class => 'previous disabled');
221 $tree->fclass('current')->replace_content("Page $args{current_page} of $args{last_page}");
222}
223
224sub process_st {
225 my ($tree, %args) = @_;
226 $args{problems} //= [];
227 my $pbiter = sub {
228 my ($data, $th) = @_;
229 $th->attr(class => undef);
230 $th->namedlink($data->id, $data->name);
231 };
232 $tree->fclass('problem')->iter3($args{problems}, $pbiter);
233 my $iter = sub {
234 my ($st, $tr) = @_;
235 $tr->set_child_content(class => 'rank', $st->{rank});
236 $tr->set_child_content(class => 'score', $st->{score});
dc7e3b7c 237 $tr->fclass('user')->namedlink($st->{user}, $st->{user_name});
3b69df7a 238 my $pbscore = $tr->fclass('pbscore');
3b69df7a
MG
239 $pbscore->iter($pbscore => @{$st->{scores}});
240 };
241 $tree->find('tbody')->find('tr')->iter3($args{st}, $iter);
242}
This page took 0.024769 seconds and 4 git commands to generate.