Changeset 69 in text-formbuilder for trunk


Ignore:
Timestamp:
03/14/05 17:07:10 (19 years ago)
Author:
peichman
Message:

abstracted out the form options code; revisions to the code generation code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Text/FormBuilder.pm

    r68 r69  
    1515use Text::FormBuilder::Parser; 
    1616use CGI::FormBuilder; 
     17 
     18use Data::Dumper; 
     19$Data::Dumper::Terse = 1;           # don't dump $VARn names 
     20$Data::Dumper::Quotekeys = 0;       # don't quote simple string keys 
    1721 
    1822# the static default options passed to CGI::FormBuilder->new 
     
    262266    } 
    263267     
    264     $self->{form} = CGI::FormBuilder->new( 
     268    # gather together all of the form options 
     269    $self->{form_options} = { 
    265270        %DEFAULT_OPTIONS, 
    266271        # need to explicity set the fields so that simple text fields get picked up 
     
    283288        }, 
    284289        %options, 
    285     ); 
     290    }; 
     291     
     292    # create the form object 
     293    $self->{form} = CGI::FormBuilder->new(%{ $self->{form_options} }); 
     294     
     295    # ...and set up its fields 
    286296    $self->{form}->field(%{ $_ }) foreach @{ $self->{form_spec}{fields} }; 
    287297     
     
    308318} 
    309319 
    310 # generates the core code to create the $form object 
    311 # the generated code assumes that you have a CGI.pm 
    312 # object named $q 
    313 sub _form_code { 
     320# dump the form options as eval-able code 
     321sub _form_options_code { 
    314322    my $self = shift; 
    315      
    316     # automatically call build if needed to 
    317     # allow the new->parse->write shortcut 
    318     $self->build unless $self->{built}; 
    319      
    320     # conditionally use Data::Dumper 
    321     eval 'use Data::Dumper;'; 
    322     die "Can't write module; need Data::Dumper. $@" if $@; 
    323      
    324     $Data::Dumper::Terse = 1;           # don't dump $VARn names 
    325     $Data::Dumper::Quotekeys = 0;       # don't quote simple string keys 
    326      
    327     my $css; 
    328     $css = $self->{build_options}{css} || $DEFAULT_CSS; 
    329     $css .= $self->{build_options}{extra_css} if $self->{build_options}{extra_css}; 
    330      
    331     my %options = ( 
    332         %DEFAULT_OPTIONS, 
    333         title => $self->{form_spec}{title}, 
    334         text  => $self->{form_spec}{description}, 
    335         fields   => [ map { $$_{name} } @{ $self->{form_spec}{fields} } ], 
    336         required => [ map { $$_{name} } grep { $$_{required} } @{ $self->{form_spec}{fields} } ], 
    337         template => { 
    338             type => 'Text', 
    339             engine => { 
    340                 TYPE       => 'STRING', 
    341                 SOURCE     => $self->{build_options}{form_only} ?  
    342                                 $self->_form_template :  
    343                                 $self->_template($css, $self->{build_options}{charset}), 
    344                 DELIMITERS => [ qw(<% %>) ], 
    345             }, 
    346             data => { 
    347                 sections    => $self->{form_spec}{sections}, 
    348                 author      => $self->{form_spec}{author}, 
    349                 description => $self->{form_spec}{description}, 
    350             }, 
    351         },  
    352         %{ $self->{build_options} }, 
     323    my $d = Data::Dumper->new([ $self->{form_options} ], [ '*options' ]); 
     324    return keys %{ $self->{form_options} } > 0 ? $d->Dump : '';     
     325} 
     326# dump the field setup subs as eval-able code 
     327# pass in the variable name of the form object 
     328# (defaults to '$form') 
     329sub _field_setup_code { 
     330    my $self = shift; 
     331    my $object_name = shift || '$form'; 
     332    return join( 
     333        "\n",  
     334        map { $object_name . '->field' . Data::Dumper->Dump([$_],['*field']) . ';' } @{ $self->{form_spec}{fields} } 
    353335    ); 
    354      
    355     # remove our custom options 
    356     delete $options{$_} foreach qw(form_only css extra_css); 
    357      
    358     my %module_subs; 
    359     my $d = Data::Dumper->new([ \%options ], [ '*options' ]); 
    360      
    361     my $form_options = keys %options > 0 ? $d->Dump : ''; 
    362      
    363     my $field_setup = join( 
    364         "\n",  
    365         map { '$form->field' . Data::Dumper->Dump([$_],['*field']) . ';' } @{ $self->{form_spec}{fields} } 
    366     ); 
    367      
    368     return <<END; 
    369 my \$form = CGI::FormBuilder->new( 
    370     params => \$q, 
    371     $form_options 
    372 ); 
    373  
    374 $field_setup 
    375 END 
    376 } 
     336}     
    377337 
    378338sub write_module { 
     
    385345##     warn  "[Text::FromBuilder::write_module] Removed extra '.pm' from package name\n" if $package =~ s/\.pm$//; 
    386346     
    387     my $form_code = $self->_form_code; 
    388      
     347    my $form_options = $self->_form_options_code; 
     348    my $field_setup = $self->_field_setup_code('$self'); 
     349     
     350    # old style of module 
     351    # TODO: how to keep this (as deprecated method) 
     352    my $old_module = <<END; 
     353package $package; 
     354use strict; 
     355use warnings; 
     356 
     357use CGI::FormBuilder; 
     358 
     359sub get_form { 
     360    my \$q = shift; 
     361 
     362    my \$self = CGI::FormBuilder->new( 
     363        $form_options, 
     364        \@_, 
     365    ); 
     366     
     367    $field_setup 
     368     
     369    return \$self; 
     370} 
     371 
     372# module return 
     3731; 
     374END 
     375 
     376    # new style of module 
    389377    my $module = <<END; 
    390378package $package; 
     
    392380use warnings; 
    393381 
    394 use CGI::FormBuilder; 
    395  
    396 sub get_form { 
    397     my \$q = shift; 
    398  
    399     $form_code 
    400      
    401     return \$form; 
     382use base qw(CGI::FormBuilder); 
     383 
     384sub new { 
     385    my \$invocant = shift; 
     386    my \$class = ref \$invocant || \$invocant; 
     387     
     388    my \$self = CGI::FormBuilder->new( 
     389        $form_options, 
     390        \@_, 
     391    ); 
     392     
     393    $field_setup 
     394     
     395    # re-bless into this class 
     396    bless \$self, \$class; 
    402397} 
    403398 
     
    4054001; 
    406401END 
    407  
    408402    _write_output_file($module, (split(/::/, $package))[-1] . '.pm', $use_tidy); 
    409403    return $self; 
     
    415409    croak '[' . (caller(0))[3] . '] Expecting a script name' unless $script_name; 
    416410     
    417     my $form_code = $self->_form_code; 
    418      
     411    my $form_options = $self->_form_options_code; 
     412    my $field_setup = $self->_field_setup_code('$form'); 
     413 
    419414    my $script = <<END; 
    420415#!/usr/bin/perl 
     
    422417use warnings; 
    423418 
    424 use CGI; 
    425419use CGI::FormBuilder; 
    426420 
    427 my \$q = CGI->new; 
    428  
    429 $form_code 
     421my \$form = CGI::FormBuilder->new( 
     422    $form_options 
     423); 
     424 
     425$field_setup 
    430426     
    431427unless (\$form->submitted && \$form->validate) { 
Note: See TracChangeset for help on using the changeset viewer.