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

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

revision 42 by dpavlin, Sun Apr 6 12:04:31 2008 UTC revision 69 by dpavlin, Tue Apr 8 23:38:42 2008 UTC
# Line 6  use warnings; Line 6  use warnings;
6  use base 'Jifty::View::Declare::CRUD';  use base 'Jifty::View::Declare::CRUD';
7  use Jifty::View::Declare -base;  use Jifty::View::Declare -base;
8    
9    use Data::Dump qw/dump/;
10    
11  sub object_type { 'Unit' };  sub object_type { 'Unit' };
12    
13    sub per_page {
14            my $per_page = get('per_page') || 5;
15            warn "## Units per_page = $per_page\n";
16            return $per_page;
17    };
18    
19  sub display_columns {  sub display_columns {
20          my $self = shift;          my $self = shift;
21          return ( qw/          return ( qw/
# Line 30  sub display_columns { Line 38  sub display_columns {
38                  toplogy                  toplogy
39                  technique                  technique
40                  description                  description
41                  contstruction                  construction
42                  iconography                  iconography
43                  decoration                  decoration
44                  motifs                  motifs
# Line 48  sub display_columns { Line 56  sub display_columns {
56                  sources                  sources
57                  bibliography                  bibliography
58                  copyright                  copyright
59                    material
60          / );          / );
61  }  }
62    
63  #private template search_region => sub {};  #private template search_region => sub {};
64    
65    =for later
66    
67    template 'index.html' => page {
68            my $self = shift;
69            title is $self->object_type;
70            form {
71                    render_region(
72                            name     => $self->object_type.'-list',
73                            path     => $self->fragment_base_path.'/list'
74                    );
75            };
76    };
77    
78    template 'list' => sub {
79            my $self = shift;
80    
81            my ( $page ) = get('page');
82    
83            my $item_path = get('item_path') || $self->fragment_for("view");
84            my $collection =  $self->_current_collection();
85    
86            if ( $self->per_page == 1 ) {
87                    warn "## bulk import get to last page\n";
88                    $page = $collection->pager->last_page;
89            }
90    
91            div {
92                    {class is 'crud-'.$self->object_type};
93    
94                    show('./search_region');
95                    show( './paging_top',    $collection, $page );
96                    show( './paging_bottom', $collection, $page );
97                    show( './list_items',    $collection, $item_path );
98                    show( './paging_bottom', $collection, $page );
99    
100                    show( './new_item_region');
101            }
102    
103    };
104    
105    =cut
106    
107    private template 'paging_top' => sub {
108            my $self           = shift;
109            my $collection = shift;
110            my $page           = shift || 1;
111                                              
112            if ( $collection->pager->last_page > 1 ) {
113                    span {
114                            { class is 'page-count' };
115                            outs(
116                                    _( "Found %1 units, showing %2-%3 on page %4/%5",
117                                            $collection->pager->total_entries,
118                                            $collection->pager->first,
119                                            $collection->pager->last,
120                                            $page,
121                                            $collection->pager->last_page
122                                    )
123                            );
124                    }
125            }
126            show( './paging_bottom', $collection, $page );
127    };
128    
129    
130  template 'view' => sub :CRUDView {  template 'view' => sub :CRUDView {
131          my $self   = shift;          my $self   = shift;
132          my $id = get('id');          my $id = get('id');
# Line 72  template 'view' => sub :CRUDView { Line 146  template 'view' => sub :CRUDView {
146    
147          div { { class is 'unit' }          div { { class is 'unit' }
148    
149          if ( $editing ) {                  if ( $editing ) {
                 form {  
150                          outs_raw($delete->button(                          outs_raw($delete->button(
151                                  label => _('Delete unit'),                                  label => _('Delete unit'),
152                                  class => 'float-crud-button button-delete',                                  class => 'float-crud-button button-delete',
# Line 87  template 'view' => sub :CRUDView { Line 160  template 'view' => sub :CRUDView {
160                                  },                                  },
161                          ));                          ));
162                  };                  };
         };  
   
163    
         form {  
164                  foreach my $f ( $self->display_columns ) {                  foreach my $f ( $self->display_columns ) {
165                          if ( $f eq 'material' ) {                          if ( $f eq 'material' ) {
166                                  set( search_collection => $record->material );                                  set( search_collection => $record->material );
# Line 104  template 'view' => sub :CRUDView { Line 174  template 'view' => sub :CRUDView {
174                                  );                                  );
175                          } else {                          } else {
176                                  my %opt;                                  my %opt;
177                                  $opt{render_mode} = 'read' if ! $editing;                                  if ( ! $editing ) {
178                                            $opt{render_mode} = 'read';
179                                            # skip fields without values
180                                            $opt{render_as} = 'hidden' if ! defined( $update->record->$f );
181                                    }
182                                  render_param( $update => $f, %opt );                                  render_param( $update => $f, %opt );
183                          }                          }
184                  };                  };
# Line 117  template 'view' => sub :CRUDView { Line 191  template 'view' => sub :CRUDView {
191                                                  submit => $update,                                                  submit => $update,
192                                                  refresh_self => 1,                                                  refresh_self => 1,
193                                          },                                          },
194                                  )                                  );
195                          };                          }
196                  }                  }
         };  
197    
198          }; # div class unit          }; # div class unit
199    
# Line 133  template 'new_item' => sub { Line 206  template 'new_item' => sub {
206          my $self = shift;          my $self = shift;
207          return unless $self->current_user->editing;          return unless $self->current_user->editing;
208    
209      my ( $object_type, $id ) = ( $self->object_type, get('id') );          my ( $object_type, $id ) = ( $self->object_type, get('id') );
210      my $record_class = $self->record_class;          my $record_class = $self->record_class;
211      my $create = $record_class->as_create_action;          my $create = $record_class->as_create_action;
212    
213          h1 { _("New unit") };          h1 { _("New unit") };
214    
215          form {          div {
216    
217                  foreach my $f ( $self->display_columns ) {                  foreach my $f ( $self->display_columns ) {
218  #                       last if $f eq 'material' && ! $id;  #                       last if $f eq 'material' && ! $id;
219                          render_param( $create => $f ); # unless $f eq 'material';                          render_param( $create => $f ) unless $f eq 'material';
220                          #warn "## $f";                          #warn "## $f";
221                  }                  }
222    
# Line 170  template 'new_item' => sub { Line 243  template 'new_item' => sub {
243                                  ],                                  ],
244                                  as_button => 1,                                  as_button => 1,
245                          );                          );
246                  }                  };
247    
248          };          };
249  };  };

Legend:
Removed from v.42  
changed lines
  Added in v.69

  ViewVC Help
Powered by ViewVC 1.1.26