Here is your job.
And
here is the code
obtainable via
hg clone http://hg.metaperl.com/seamstress
Driver script
use strict;
use warnings;
use Model;
use View::bullet;
use View::table;
my $model = Model->new;
# View 1
my $view = View::bullet->new;
$view->render($model);
warn $view->as_HTML;
# View 2
my $cols = 3;
my $tabular_model = $model->reform_data($cols);
my $view = View::table->new;
$view->render($tabular_model);
warn $view->as_HTML;
Model package
package Model;
use Array::Group;
use Data::Dumper;
# A model is overkill for this example, but lets plan for
# scaleability
sub new {
my $data = [1 .. 10] ;
bless $data, __PACKAGE__ ;
return $data;
}
sub reform_data {
my $aref = shift;
my $cols = shift;
my $tabdata = Array::Group::ngroup $cols => $aref ;
# This filling of the last row should be an option to
# Array::Group...
my $last_row = $tabdata->[$#$tabdata] ;
my $diff = $cols - @$last_row;
my @nbsp = (' ') x $diff;
push @$last_row, @nbsp;
return $tabdata;
}
1 ;
View code
bullet
package View::bullet;
use base qw(HTML::Seamstress);
my $file = 'html/bullet.html';
sub new {
__PACKAGE__->new_from_file($file);
}
sub render {
my $tree = shift;
my $model = shift;
my $li = $tree->look_down(class => 'nums');
$tree->iter($li => @$model) ;
return $tree;
}
1;
table
package View::table;
use base qw(HTML::Seamstress);
my $file = 'html/table.html';
sub new {
__PACKAGE__->new_from_file($file);
}
sub render {
my $tree = shift;
my $data = shift;
$tree->table2
(
table_data => $data,
td_proc => sub {
my ($tr, $data) = @_;
my @td = $tr->look_down('_tag' => 'td');
for my $i (0..$#td) {
$td[$i]->splice_content(0, 1, $data->[$i]);
}
}
)
;
return $tree;
}
1;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.