1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
package HTML::FormFu::Element::SimpleTable;
$HTML::FormFu::Element::SimpleTable::VERSION = '2.01';
use Moose;
use MooseX::Attribute::FormFuChained;
extends 'HTML::FormFu::Element::Block';
use HTML::FormFu::Util qw( append_xml_attribute );
use Scalar::Util qw( reftype );
use Carp qw( croak );
has odd_class => ( is => 'rw', traits => ['FormFuChained'] );
has even_class => ( is => 'rw', traits => ['FormFuChained'] );
after BUILD => sub {
my $self = shift;
$self->tag('table');
return;
};
sub headers {
my ( $self, $headers ) = @_;
croak "headers must be passed as an array-ref"
if reftype($headers) ne 'ARRAY';
# save any elements already added
my @original_rows = @{ $self->_elements };
$self->_elements( [] );
my $header_row = $self->element('Block');
$header_row->tag('tr');
for my $text (@$headers) {
my $th = $header_row->element('Block');
$th->tag('th');
$th->content($text);
}
if (@original_rows) {
push @{ $self->_elements }, @original_rows;
}
return $self;
}
sub rows {
my ( $self, $rows ) = @_;
croak "too many arguments" if @_ > 2;
croak "rows must be passed as an array-ref"
if reftype($rows) ne 'ARRAY';
for my $cells (@$rows) {
croak "each row must be an array-ref"
if reftype($cells) ne 'ARRAY';
my $row = $self->element('Block');
$row->tag('tr');
for my $cell (@$cells) {
my $td = $row->element('Block');
$td->tag('td');
$td->element($cell);
}
}
return $self;
}
sub render_data {
return shift->render_data_non_recursive(@_);
}
sub render_data_non_recursive { # though it is really recursive
my ( $self, $args ) = @_;
my $odd = $self->odd_class;
my $even = $self->even_class;
my $i = 1;
for my $row ( @{ $self->get_elements } ) {
my $first_cell = $row->get_element;
if ( $i == 1 && $first_cell->tag eq 'th' ) {
# skip the header row
next;
}
if ( $i % 2 ) {
if ( defined $odd ) {
$row->attributes( { class => $odd } );
}
}
else {
if ( defined $even ) {
$row->attributes( { class => $even } );
}
}
$i++;
}
my $render = $self->SUPER::render_data_non_recursive( {
elements => [ map { $_->render_data } @{ $self->_elements } ],
$args ? %$args : (),
} );
append_xml_attribute( $render->{attributes}, 'class', lc $self->type );
return $render;
}
__PACKAGE__->meta->make_immutable;
1;
__END__
=head1 NAME
HTML::FormFu::Element::SimpleTable - simple table element
=head1 SYNOPSIS
The following is yaml markup for a table consisting of a header row
containing 2 C<th> cells, and a further 2 rows, each containing 2 C<td>
cells.
type: SimpleTable
headers:
- One
- Two
rows:
-
- type: Input
name: one_a
- type: Input
name: two_a
-
- type: Input
name: one_b
- type: Input
name: two_b
=head1 DESCRIPTION
Sometimes you just really need to use a table to display some fields in a
grid format.
As its name suggests, this is a compromise between power and simplicity.
If you want more control of the markup, you'll probably just have to revert
to using nested L<block's|HTML::FormFu::Element::_Block>, setting the tags
to table, tr, td, etc. and adding the cell contents as elements.
=head1 METHODS
=head2 headers
Input Value: \@headers
L</headers> accepts an arrayref of strings. Each string is xml-escaped and
inserted into a new header cell.
=head2 rows
Input Value: \@rows
L</rows> accepts an array-ref, each item representing a new row. Each row
should be comprised of an array-ref, each item representing a table cell.
Each cell item should be appropriate for passing to L<HTML::FormFu/element>;
so either a single element's definition, or an array-ref of element
definitions.
=head2 odd_class
Input Value: $string
The supplied string will be used as the class-name for each odd-numbered row
(not counting any header row).
=head2 even_class
Input Value: $string
The supplied string will be used as the class-name for each even-numbered row
(not counting any header row).
=head1 SEE ALSO
Is a sub-class of, and inherits methods from
L<HTML::FormFu::Element::Block>,
L<HTML::FormFu::Element>
L<HTML::FormFu>
=head1 AUTHOR
Carl Franks, C<cfranks@cpan.org>
=head1 LICENSE
This library is free software, you can redistribute it and/or modify it under
the same terms as Perl itself.
=cut
|