/[Frey]/branches/zimbardo/lib/Frey/Web.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /branches/zimbardo/lib/Frey/Web.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 100 by dpavlin, Fri Jul 11 19:19:42 2008 UTC revision 206 by dpavlin, Thu Oct 30 22:35:11 2008 UTC
# Line 3  use Moose::Role; Line 3  use Moose::Role;
3    
4  use Continuity::Widget::DomNode;  use Continuity::Widget::DomNode;
5  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
6    use Carp qw/confess/;
7    use File::Slurp;
8    
9    has 'head' => (
10            is => 'rw',
11            isa => 'ArrayRef[Str]',
12            default => sub { [ 'static/frey.css' ] },
13    );
14    
15    =head2 inline_smaller_than
16    
17    Inline JavaScript and CSS smaller than this size into page reducing
18    round-trips to server.
19    
20    =cut
21    
22    has 'inline_smaller_than' => (
23            is => 'rw',
24            isa => 'Int',
25            default => 10240,
26    );
27    
28  sub dom2html {  sub dom2html {
29          warn "## dom2html ",dump( @_ );  #       warn "## dom2html ",dump( @_ );
30          return Continuity::Widget::DomNode->create( @_ )->to_string;          return Continuity::Widget::DomNode->create( @_ )->to_string;
31  }  }
32    
33  our @javascript = ( qw'  sub _inline_path {
34  ../lib/Joose.js          my ( $self, $path ) = @_;
35  ');          -s $path < $self->inline_smaller_than;
36    }
37    
38  sub head_javascript {  sub _head_html {
39          my $self = shift;          my $self = shift;
40            my $out = '';
41            foreach my $path ( @{ $self->head } ) {
42                    $path =~ s!^/!!;
43                    if ( $path =~ m/\.js$/ ) {
44                            $out .= $self->_inline_path( $path ) ?
45                                    qq|<!-- $path --><script type="text/javascript">\n| . read_file($path) . qq|\n</script>| :
46                                    qq|<script type="text/javascript" src="/$path"></script>|;
47                    } elsif ( $path =~ m/\.css$/ ) {
48                            $out .= $self->_inline_path( $path ) ?
49                                    qq|<!-- $path --><style type="text/css">\n| . read_file( $path ) . qq|\n</style>| :
50                                    qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
51                    } else {
52                            confess "don't know how to render $path";
53                    }
54                    $out .= "\n";
55            }
56            return $out;
57    }
58    
59    =head2 add_head
60    
61      $o->add_head( 'path/to/external.js' );
62    
63      my $size = $o->add_head( 'path/to/external.css' );
64    
65    =cut
66    
67    sub add_head {
68            my ( $self, $path ) = @_;
69            return if ! defined $path || $path eq '';
70            $path =~ s!^/!!;
71    
72            if ( -e $path ) {
73                    if ( $path =~ m/\.(?:js|css)$/ ) {
74                            push @{ $self->head }, $path;
75                    } else {
76                            confess "can't add_head( $path ) it's not js or css";
77                    }
78            } else {
79                    confess "can't find $path: $!";
80            }
81    
82            return -s $path;
83    }
84    
85    our $reload_counter = 0;
86    
87    
88    =head2 page
89    
90      $self->page(
91            title => 'page title',
92            head  => '<!-- optional head markup -->',
93            body  => '<b>Page Body</b>',
94      );
95    
96    =cut
97    
98    use Frey::Bookmarklet;
99    
100    sub page {
101            my $self = shift;
102            my $a = {@_};
103    
104            $reload_counter++;
105    
106          my $js = Continuity::Widget::DomNode->create(          my $html = qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|
107                  map {          . $self->_head_html
108                          ( script => { type => 'text/javascript', src => $_ } )          . '<title>' . ( $a->{title} || ref($self) ) . '</title>'
109                  } @javascript          . ( $a->{head} || '' )
110          )->to_string;          . '</head><body>'
111            . ( $a->{body} || '<!-- no body -->' )
112            . qq|<div class="frey-status-line">
113                    <a href="/">Frey</a> $Frey::VERSION
114                    <a href="?reload=$reload_counter">reload</a>
115                    <span class="frey-popup">Bookmarklets<span>| . Frey::Bookmarklet->markup . qq|</span>|
116            . '</body></html>'
117            ;
118    
119          warn "# >>> js\n$js\n" if $self->debug;          warn "## >>> page ",length($html), " bytes\n" if $self->debug;
120    
121          return $js;          return $html;
122  }  }
123    
124  1;  1;

Legend:
Removed from v.100  
changed lines
  Added in v.206

  ViewVC Help
Powered by ViewVC 1.1.26