X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=make_static.PL;h=23c5643d91ddeb063d4b0236890fd38856af593a;hb=b8d36f0686c49a0220cc4c1ef59e47759f7a10f8;hp=44f56fa6012f89f1d0093eb3ab101e0781b5613e;hpb=9028f5d361530a04d8664351e7b78ca25bf4ce81;p=gruntmaster-page.git diff --git a/make_static.PL b/make_static.PL index 44f56fa..23c5643 100644 --- a/make_static.PL +++ b/make_static.PL @@ -2,12 +2,12 @@ use v5.14; use warnings; -use CSS::Minifier::XS qw//; +use CSS::Minifier::XS qw/minify/; use CSS::SpriteMaker; - use Digest::SHA qw/sha256_base64/; use IO::Compress::Gzip qw/gzip/; use File::Slurp qw/read_file write_file edit_file_lines/; +use List::Util qw/first/; mkdir 'static'; mkdir 'static/css'; @@ -43,15 +43,41 @@ sub gzip_file { gzip $file => "$file.gz", -Level => 9, Minimal => 1; } +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}; + } + } + + for my $name (keys %css) { + write_file "static/css/$name.css", minify $css{$name}; + gzip_file "static/css/$name.css" } }