Do not minify CSS/JS in development
[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/;
82}
83
84sub process_us {
85 my ($tree, %args) = @_;
86 my $item = $tree->fclass('list-group-item');
87 $item->replace_with(map {
88 my $new = $item->clone;
89 $new->attr(href => $_->{id});
90 $new->replace_content($_->{name} || $_->{id});
91 $new
92 } @{$args{us}});
93}
94
95sub process_ct_entry {
96 my ($tree, %args) = @_;
97 $_->edit_href (sub {s/contest_id/$args{id}/}) for $tree->find('a');
98 $tree->fid('links')->detach unless $args{started};
99 $tree->content_handler(
100 start => ftime $args{start},
101 stop => ftime $args{stop},
102 description => literal $args{description});
103}
104
105sub process_ct {
106 my ($tree, %args) = @_;
107 my $iter = sub {
108 my ($data, $tr) = @_;
109 $data->{$_} = ftime $data->{$_} for qw/start stop/;
110 $tr->hashmap(class => $data, [qw/name owner/]);
111 $tr->fclass('name')->namedlink($data->{id}, $data->{name});
112 $tr->fclass('owner')->namedlink($data->{owner}, $data->{owner_name});
113 };
114 $args{$_} ? $tree->fid($_)->find('tbody')->find('tr')->iter3($args{$_}, $iter) : $tree->fid($_)->detach for qw/running pending finished/;
115}
116
117sub process_pb_entry {
118 my ($tree, %args) = @_;
119 $tree->fid('owner')->edit_href(sub{s/owner_id/$args{owner}/});
120 $tree->fid('job_log')->edit_href(sub{s/problem_id/$args{id}/});
e4d5bdf5 121 $tree->fid('solution')->edit_href(sub{s/problem_id/$args{id}/});
3b69df7a
MG
122 $tree->content_handler(
123 statement => literal $args{statement},
124 author => $args{author},
125 owner => $args{owner_name} || $args{owner});
9a4806b3 126 if ($args{contest_stop}) {
e4d5bdf5
MG
127 $tree->fid('solution')->detach;
128 $tree->fid('solution_modal')->detach;
9a4806b3
MG
129 my $countdown = $tree->fid('countdown');
130 $countdown->attr('data-start' => $args{contest_start});
131 $countdown->attr('data-stop' => $args{contest_stop});
132 $countdown->attr('data-time' => $args{time});
133 my $left = $args{contest_stop} - $args{time};
134 $countdown->replace_content(sprintf '%02d:%02d:%02d', $left/60/60, $left/60%60, $left%60);
135 $tree->fid('score')->attr('data-value' => $args{value});
136 $tree->fid('score')->replace_content(Gruntmaster::Data::calc_score($args{value}, $args{time} - $args{contest_start}, 0, $args{contest_stop} - $args{contest_start}));
137 } else {
138 $_->detach for $tree->fclass('rc'); # requires contest
e4d5bdf5 139 $tree->fid('solution_modal')->fclass('modal-body')->replace_content(literal $args{solution});
9a4806b3 140 }
3b69df7a
MG
141 if ($args{cansubmit}) {
142 $tree->look_down(name => 'problem')->attr(value => $args{id});
143 my $contest = $tree->look_down(name => 'contest');
144 $contest->attr(value => $args{contest}) if $args{contest};
145 $contest->detach unless $args{contest}
146 } else {
147 $tree->fid('submit')->detach
148 }
149}
150
e4d5bdf5
MG
151sub process_sol {
152 my ($tree, %args) = @_;
153 $tree->content_handler(solution => literal $args{solution});
154}
155
3b69df7a
MG
156sub process_pb {
157 my ($tree, %args) = @_;
158 my $titer = sub {
159 my ($data, $tr) = @_;
160 $tr->set_child_content(class => 'author', $data->{author});
161 $tr->fclass('name')->namedlink($data->{id}, $data->{name});
162 $tr->fclass('name')->find('a')->edit_href(sub {$_ .= "?contest=$args{contest}"}) if $args{contest};
163 $tr->fclass('owner')->namedlink($data->{owner}, $data->{owner_name});
164 };
165 my $iter = sub {
166 my ($data, $div) = @_;
167 $div->attr(id => $data);
168 $div->find('h2')->replace_content(ucfirst $data);
169 $div->find('tbody')->iter3($args{$data}, $titer);
170 };
171 $tree->fid('beginner')->iter3([grep {$args{$_}} qw/beginner easy medium hard/], $iter);
172}
173
174sub process_log_entry {
175 my ($tree, %args) = @_;
176 $args{errors} ? $tree->fid('errors')->find('pre')->replace_content($args{errors}) : $tree->fid('errors')->detach;
177 my $iter = sub {
178 my ($data, $tr) = @_;
179 $data->{time} = sprintf '%.4fs', $data->{time};
180 $tr->defmap(class => $data);
181 $tr->fclass('result_text')->attr(class => "r$data->{result}")
182 };
183 @{$args{results}} ? $tree->fid('results')->find('tbody')->find('tr')->iter3($args{results}, $iter) : $tree->fid('results')->detach;
184}
185
186sub process_log {
187 my ($tree, %args) = @_;
188 my $iter = sub {
189 my ($data, $tr) = @_;
190 $tr->fclass('id')->namedlink($data->{id});
191 $tr->fclass('problem')->namedlink($data->{problem}, $data->{problem_name});
192 $tr->fclass('problem')->find('a')->edit_href(sub{$_ .= "?contest=$args{contest}"}) if $args{contest};
193 $tr->fclass('date')->replace_content(ftime $data->{date});
194 $tr->fclass('size')->namedlink("$data->{id}.$data->{extension}", sprintf "%.2fKB", $data->{size}/1024);
195 $tr->fclass('size')->attr('data-private', '') if $data->{private};
196 $tr->fclass('owner')->namedlink($data->{owner}, $data->{owner_name});
197 $tr->fclass('result_text')->replace_content($data->{result_text});
198 $tr->fclass('result_text')->attr(class => "r$data->{result}");
199 };
200 $tree->find('table')->find('tbody')->find('tr')->iter3($args{log}, $iter);
201 $args{next_page} ? $tree->fclass('next')->namedlink($args{next_page}, 'Next') : $tree->fclass('next')->attr(class => 'next disabled');
202 $args{previous_page} ? $tree->fclass('previous')->namedlink($args{previous_page}, 'Previous') : $tree->fclass('previous')->attr(class => 'previous disabled');
203 $tree->fclass('current')->replace_content("Page $args{current_page} of $args{last_page}");
204}
205
206sub process_st {
207 my ($tree, %args) = @_;
208 $args{problems} //= [];
209 my $pbiter = sub {
210 my ($data, $th) = @_;
211 $th->attr(class => undef);
212 $th->namedlink($data->id, $data->name);
213 };
214 $tree->fclass('problem')->iter3($args{problems}, $pbiter);
215 my $iter = sub {
216 my ($st, $tr) = @_;
217 $tr->set_child_content(class => 'rank', $st->{rank});
218 $tr->set_child_content(class => 'score', $st->{score});
219 $tr->fclass('user')->namedlink($st->{user}->id, $st->{user}->name);
220 my $pbscore = $tr->fclass('pbscore');
221 $pbscore->detach unless $st->{problems};
222 $pbscore->iter($pbscore => @{$st->{scores}});
223 };
224 $tree->find('tbody')->find('tr')->iter3($args{st}, $iter);
225}
This page took 0.023654 seconds and 4 git commands to generate.