/[Frey]/trunk/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 /trunk/lib/Frey/Web.pm

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

revision 142 by dpavlin, Wed Jul 16 14:14:18 2008 UTC revision 388 by dpavlin, Tue Nov 18 00:19:22 2008 UTC
# Line 1  Line 1 
1  package Frey::Web;  package Frey::Web;
2  use Moose::Role;  use Moose::Role;
3  use MooseX::AttributeHelpers;  
4    use Frey::Types;
5    
6  use Continuity::Widget::DomNode;  use Continuity::Widget::DomNode;
7  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
8  use Carp qw/confess/;  use Carp qw/confess cluck/;
9    use File::Slurp;
10    
11  has 'javascript' => (  has 'head' => (
         metaclass => 'Collection::Array',  
12          is => 'rw',          is => 'rw',
13          isa => 'ArrayRef[Str]',          isa => 'ArrayRef[Str]',
14          default => sub { [] },          default => sub { [ 'static/frey.css' ] },
         provides => {  
                 'push' => 'add_javascript',  
         },  
15  );  );
16    
17  has 'css' => (  has 'status' => (
         metaclass => 'Collection::Array',  
18          is => 'rw',          is => 'rw',
19          isa => 'ArrayRef[Str]',          isa => 'ArrayRef[HashRef[Str]]',
20          default => sub { [ 'static/app.css' ] },          lazy => 1,
21          provides => {          default => sub { [
22                  'push' => 'add_css',                  { 'Bookmarklets' => Frey::Bookmarklet->markup },
23          },                  { 'ClassBrowser' => Frey::ClassBrowser->markup },
24            ] },
25    );
26    
27    has 'urequest_url' => (
28            is => 'rw',
29            isa => 'Uri', coerce => 1,
30            default => '/',
31    );
32    
33    =head2 inline_smaller_than
34    
35    Inline JavaScript and CSS smaller than this size into page reducing
36    round-trips to server.
37    
38    =cut
39    
40    has 'inline_smaller_than' => (
41            is => 'rw',
42            isa => 'Int',
43            default => 10240,
44  );  );
45    
46  sub dom2html {  sub dom2html {
# Line 31  sub dom2html { Line 48  sub dom2html {
48          return Continuity::Widget::DomNode->create( @_ )->to_string;          return Continuity::Widget::DomNode->create( @_ )->to_string;
49  }  }
50    
51  sub _unroll_markup {  sub _inline_path {
52  #       warn "## _unroll_markup ",dump( @_ );          my ( $self, $path ) = @_;
53          my ( $markup, $array ) = @_;          -s $path < $self->inline_smaller_than;
54    }
55    
56    sub _head_html {
57            my $self = shift;
58          my $out = '';          my $out = '';
59          foreach my $path ( @$array ) {          foreach my $path ( @{ $self->head } ) {
60                  $path =~ s!^/!!;                  $path =~ s!^/!!;
61                  confess "can't find $path" unless -e $path;                  if ( $path =~ m/\.js$/ ) {
62                  $out .= sprintf( $markup, $path );                          $out .= $self->_inline_path( $path ) ?
63                                    qq|<!-- $path --><script type="text/javascript">\n| . read_file($path) . qq|\n</script>| :
64                                    qq|<script type="text/javascript" src="/$path"></script>|;
65                    } elsif ( $path =~ m/\.css$/ ) {
66                            $out .= $self->_inline_path( $path ) ?
67                                    qq|<!-- $path --><style type="text/css">\n| . read_file( $path ) . qq|\n</style>| :
68                                    qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
69                    } else {
70                            confess "don't know how to render $path";
71                    }
72                    $out .= "\n";
73          }          }
74          return $out;          return $out;
75  }  }
76    
77    =head2 add_head
78    
79      $o->add_head( 'path/to/external.js' );
80    
81      my $size = $o->add_head( 'path/to/external.css' );
82    
83    =cut
84    
85    sub add_head {
86            my ( $self, $path ) = @_;
87            return if ! defined $path || $path eq '';
88            $path =~ s!^/!!;
89    
90            if ( -e $path ) {
91                    if ( $path =~ m/\.(?:js|css)$/ ) {
92                            push @{ $self->head }, $path;
93                    } else {
94                            confess "can't add_head( $path ) it's not js or css";
95                    }
96            } else {
97                    confess "can't find $path: $!";
98            }
99    
100            return -s $path;
101    }
102    
103  our $reload_counter = 0;  our $reload_counter = 0;
104    
105    
106    =head2 page
107    
108      $self->page(
109            title => 'page title',
110            head  => '<!-- optional head markup -->',
111            body  => '<b>Page Body</b>',
112      );
113    
114    =cut
115    
116    use Frey::Bookmarklet;
117    use Frey::ClassBrowser;
118    
119  sub page {  sub page {
120          my $self = shift;          my $self = shift;
121          my $a = {@_};          my $a = {@_};
122    
123          $reload_counter++;          $reload_counter++;
124    
125          my $html = qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|          my $status_line = '';
126          . _unroll_markup( qq|<script type="text/javascript" src="/%s"></script>|, $self->javascript )          foreach my $part ( @{ $self->status } ) {
127          . _unroll_markup( qq|<link type="text/css" rel="stylesheet" href="/%s" media="screen">|, $self->css )                  foreach my $name ( keys %$part ) {
128          . '<title>' . ( $a->{title} || ref($self) ) . '</title>'                          warn "### part [$name] = ", length( $part->{name} ), " bytes" if $self->debug;
129          . ( $a->{head} || '' )                          $status_line .= qq|<span class="frey-popup">$name<span>| . $part->{$name} . qq|</span></span>|;
130          . '</head><body>'                  }
131          . ( $a->{body} || '<!-- no body -->' )          }
132          . qq|<div class="status-line"> <a href="/">Frey</a> $Frey::VERSION <a href="?reload=$reload_counter">reload</a> </div>|  
133          . '</body></html>'          my $html = join("\n",
134          ;                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
135                    $self->_head_html,
136                    '<title>' . ( $a->{title} || ref($self) ) . '</title>',
137                    '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
138                    ( $a->{head} || '' ),
139                    '</head><body>',
140                    ( $a->{body} || '<!-- no body -->' ),
141                    qq|
142                    <div class="frey-status-line">
143                            <a href="/">Frey</a> $Frey::VERSION
144                            <a href="?reload=$reload_counter"><code>| . $self->urequest_url . qq|</code></a>
145                            $status_line
146                    </div>
147                </body></html>
148                    |,
149            );
150    
151          warn "## >>> page ",length($html), " bytes\n" if $self->debug;          warn "## >>> page ",length($html), " bytes\n" if $self->debug;
152    
153          return $html;          return $html;
154  }  }
155    
156    sub error {
157            my ( $self, $error ) = @_;
158            cluck $error;
159            $error =~ s{at\s+(\S+)\s+line\s+(\d+)}{ <a href="/editor$1+$2" target="editor">$1</a> line $2}gsm;
160            return qq|<pre class="frey-error">$error</pre>|;
161    }
162    
163  1;  1;

Legend:
Removed from v.142  
changed lines
  Added in v.388

  ViewVC Help
Powered by ViewVC 1.1.26