X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=make_static.PL;h=06c9eeea791cd9e8da281f4d43fbb576d1398c4e;hb=6f5debb62f9d49098b660b626890a46dbbf7346f;hp=0d8d10b873a5dee5f6db1ae50cb885fe9829fb3b;hpb=8345760abf4953980a85e0d5f9cade421f73d4ff;p=plack-app-gruntmaster.git diff --git a/make_static.PL b/make_static.PL index 0d8d10b..06c9eee 100644 --- a/make_static.PL +++ b/make_static.PL @@ -2,39 +2,99 @@ use v5.14; use warnings; -use CSS::Minifier::XS qw//; - +use CSS::Minifier::XS qw/minify/; use Digest::SHA qw/sha256_base64/; use IO::Compress::Gzip qw/gzip/; use File::Slurp qw/read_file write_file edit_file_lines/; +use SVG::SpriteMaker; +use File::Which; +use List::Util qw/first/; mkdir 'static'; mkdir 'static/css'; mkdir 'static/js'; +mkdir 'static/logos'; sub gzip_file { my ($file) = @_; - gzip $file => "$file.gz", -Level => 9, Minimal => 1; + my $zopfli = which 'zopfli'; + system $zopfli => $file if $zopfli; + gzip $file => "$file.gz", -Level => 9, Minimal => 1 unless $zopfli; +} + +sub write_gzfile { + my ($file, @content) = @_; + write_file $file, @content; + gzip_file $file +} + +sub sprite_name { + my ($name) = $_[0] =~ m,/(.*)\.svg,; + "logo-$name" +} + +sub make_logos { + my @logos = ; + my $logos = make_sprite \&sprite_name, @logos; + my @logos_light; + for () { + my $light = s/logos/logos-light/r; + push @logos_light, -f $light ? $light : $_; + } + my $logos_light = make_sprite \&sprite_name, @logos_light; + + write_gzfile 'static/logos/dark.svg', $logos->render; + write_gzfile 'static/logos/light.svg', $logos_light->render; +} + +sub read_css_into_blocks { + my ($file) = @_; + my (@blocks, $block); + for (read_file $file) { + $block .= $_; + if (/^}/) { + push @blocks, $block; + $block = ''; + } + } + \@blocks } sub make_css { - my $common_css; - $common_css .= read_file $_ for ; + my %css; + $css{common} .= read_file $_ for ; + + my (%themes, $rndtheme); for () { - my ($theme) = m,themes/(.*)\.css,; - my $css = read_file $_; - $css .= $common_css; - write_file "static/css/$theme.css", CSS::Minifier::XS::minify $css; - gzip_file "static/css/$theme.css"; + ($rndtheme) = m,themes/(.*)\.css,; + $themes{$rndtheme} = read_css_into_blocks $_; + } + + while (grep { scalar @$_ } values %themes) { + my %blocks = map { $_ => (shift @{$themes{$_}}) // '' } keys %themes; + if (grep { $_ ne $blocks{$rndtheme} } values %blocks) { + $css{$_} .= $blocks{$_} for keys %themes; + } else { + $css{common} .= $blocks{$rndtheme}; + } } + + write_gzfile "static/css/$_.css", minify $css{$_} for keys %css } sub make_js { system java => -jar => 'compiler.jar', qw,-O SIMPLE --create_source_map static/js/js.map --js_output_file static/js/all.js --language_in ECMASCRIPT6_STRICT --language_out ECMASCRIPT5_STRICT --source_map_location_mapping js/|/static/js/,, ; my $js = read_file 'static/js/all.js'; - write_file 'static/js/all.js', '//# sourceMappingURL=/static/js/js.map', "\n", $js; + write_gzfile 'static/js/all.js', '//# sourceMappingURL=/static/js/js.map', "\n", $js; system 'cp', '-rp', 'js', 'static/'; - gzip_file 'static/js/all.js'; +} + +my $sprite_mtime = -M 'static/logos/dark.svg' // 0; +for (, ) { + if (!$sprite_mtime || $sprite_mtime > -M) { + make_logos; + last + } } my $css_mtime = -M 'static/css/slate.css' // 0; @@ -45,7 +105,7 @@ for (, ) { } } -my $js_mtime = -M 'static/js.js' // 0; +my $js_mtime = -M 'static/js/all.js' // 0; for () { if (!$js_mtime || $js_mtime > -M) { make_js; @@ -58,4 +118,4 @@ edit_file_lines { return unless $file; my $hash = sha256_base64 scalar read_file $file; s/integrity=".*"/integrity="sha256-$hash="/; -} 'tmpl/skel.en' +} 'tmpl/skel.en';