/[Perly]/lib/Perly/View.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 /lib/Perly/View.pm

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

revision 4 by dpavlin, Sun Jun 3 22:49:47 2007 UTC revision 22 by dpavlin, Wed Jun 6 09:17:05 2007 UTC
# Line 5  use warnings; Line 5  use warnings;
5    
6  use Jifty::View::Declare -base;  use Jifty::View::Declare -base;
7    
8    use Data::Dump qw/dump/;
9    
10  template '/' => page {  template '/' => page {
11            h1 { _("Available code") }
12            div { show 'code_list' }
13    };
14    
15    template '/edit' => page {
16          h1 { _("Enter your code") }          h1 { _("Enter your code") }
17          div { show 'code_editor' }          div { show 'code_editor' }
18  };  };
19    
20    private template 'code_list' => sub {
21            ul {
22                    my $coll = Perly::Model::CodeCollection->new();
23                    $coll->unlimit;
24                    while ( my $code = $coll->next ) {
25                            li {
26                                    a {
27                                            attr { href => '/edit?id=' . $code->id, },
28                                            $code->name,
29                                    },
30                                    small { length( $code->source ), ' bytes ', $code->created_on },
31                                    a {
32                                            attr { href => '/run?code=' . $code->id, }, 'run'
33                                    },
34                                    pre { $code->source },
35                            }
36                    }
37            }
38    };
39    
40  private template 'code_editor' => sub {  private template 'code_editor' => sub {
41            my $op = 'Create';
42            my $code = Perly::Model::Code->new();
43            if ( my $id = get 'id' ) {
44                    $code->load( $id ) or die "can't load $id";
45                    warn "loaded ", length( $code->source ), " bytes";
46                    $op = 'Update';
47            }
48          form {          form {
49                  my $action = new_action( class => 'CreateCode' );                  my $action = new_action( class => $op . 'Code', arguments => { $code ? $code->as_hash : undef } );
50                  render_param( $action => 'source', cols => 80, rows => 25 );                  render_param( $action => 'name' );
51                    render_param( $action => 'source', cols => 80, rows => 25, language => 'perl', render_as => 'Jifty::Plugin::CodePress::Textarea' );
52                  #render_action( $action => [ 'source' => { cols => 80, rows => 30 }, ] );                  #render_action( $action => [ 'source' => { cols => 80, rows => 30 }, ] );
53                  form_submit(                  form_submit(
54                          label => _("Save my code"),                          label => _($op),
55                          onclick => [                          onclick => [
56                                  { beforeclick => "CodePress.beforeSubmit();" },                                  { beforeclick => "CodePress.beforeSubmit();" },
57                          ],                          ],
# Line 24  private template 'code_editor' => sub { Line 59  private template 'code_editor' => sub {
59          }          }
60  };  };
61    
62    template '/upload' => page {
63            h1 { _("Upload new file") },
64            form {
65                    my $action = new_action( class => 'Upload' );
66                    render_action( $action => [ 'filename', 'content', 'file', 'format' ] );
67                    form_submit(
68                            label => _('Upload'),
69                    );
70            }
71    };
72    
73    template '/run' => page {
74            my $action = new_action( class => 'Run', arguments => { input => get('input'), code => get('code') } );
75            h1 { _("Run code on some input") },
76            form {
77                    render_action( $action => [ 'input', 'code' ] );
78                    form_submit(
79                            label => _('Run'),
80                    );
81            };
82    
83            #warn dump( $action->result->content );
84    
85            if ( my $input = $action->result->content( 'input' ) ) {
86                    h2 { _("Input data") },
87                    pre { $input }
88            }
89    
90            if ( my $output = $action->result->content( 'output' ) ) {
91                    h2 { _("Output result") },
92                    pre { $output }
93            }
94    };
95    
96  1;  1;

Legend:
Removed from v.4  
changed lines
  Added in v.22

  ViewVC Help
Powered by ViewVC 1.1.26