]> iEval git - plack-app-gruntmaster.git/blame_incremental - lib/Gruntmaster/Page/Common.pm
Add user list and user pages
[plack-app-gruntmaster.git] / lib / Gruntmaster / Page / Common.pm
... / ...
CommitLineData
1package Gruntmaster::Page::Common;
2
3use 5.014000;
4use strict;
5use warnings;
6use parent qw/Exporter/;
7our @EXPORT_OK = qw/header footer cook_templates reload_templates/;
8
9use File::Slurp qw/read_file/;
10
11my %orig_header_templates = (
12 en => <<'HTML',
13<!DOCTYPE html>
14<title>TITLE_GOES_HERE</title>
15<link rel="stylesheet" href="/gm.css">
16<script src="/zepto.var" defer></script>
17<script src="/view.js" defer></script>
18<script src="/form.js" defer></script>
19<meta charset="utf-8">
20
21<span id="admin"></span>
22<div id="title"><span class="i">i</span><span class="Eval">Eval</span></div>
23<div id="subtitle">TITLE_GOES_HERE</div>
24
25<nav><ul><li><a href="/learn.var">Learn</a><li><a href="/pb/">Practice</a><li><a href="/ct/">Compete</a><li><a href="/log/">Job log</a></ul></nav>
26
27HTML
28);
29
30my %orig_footer_templates = (
31 en => <<'HTML',
32
33<footer>
34Dilmom: Why don't you call your product the Gruntmaster 6000?
35Dilbert: What kind of product do you see when you imagine a Gruntmaster 6000?
36Dilmom: Well, it's a stripped-down version of the Gruntmaster 9000, of course. But it's software-upgradeable.
37</footer>
38HTML
39);
40
41sub patch_templates {
42 my $root = $ENV{GRUNTMASTER_TEMPLATE_ROOT} or return;
43 my ($templates, $name) = @_;
44 my %out = %$templates;
45 for (<$root/$name*>) {
46 m/\.(.+)$/;
47 $out{$1} = read_file $_
48 }
49
50 %out
51}
52
53my %header_templates = patch_templates \%orig_header_templates, 'header';
54my %footer_templates = patch_templates \%orig_footer_templates, 'footer';
55
56sub reload_templates () { $ENV{GRUNTMASTER_RELOAD_TEMPLATES} }
57
58sub header{
59 my ($language, $title) = @_;
60 %header_templates = patch_templates \%orig_header_templates, 'header' if reload_templates;
61 $header_templates{$language} =~ s/TITLE_GOES_HERE/$title/ger;
62}
63
64sub footer{
65 %footer_templates = patch_templates \%orig_footer_templates, 'footer' if reload_templates;
66 $footer_templates{$_[0]};
67}
68
69sub cook_templates (\%@) {
70 my ($templates, $name, $title) = @_;
71
72 my %out = patch_templates $templates, $name;
73 $out{$_} = header ($_, $title) . $out{$_} for keys %out;
74 $out{$_} .= footer $_ for keys %out;
75
76 %out
77}
78
791;
This page took 0.021528 seconds and 4 git commands to generate.