X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FHTML%2FZoom.pm;h=5a852ea321696587999382c2242da87565bb0efe;hb=94a3ddd9ea6e8c859f01407cc17c7042ccf34ba0;hp=d8c4f3a37f981b00ad4705d13bbdae188e1e6670;hpb=45b4cea116d31813fc682b65d000044a8493559b;p=catagits%2FHTML-Zoom.git diff --git a/lib/HTML/Zoom.pm b/lib/HTML/Zoom.pm index d8c4f3a..5a852ea 100644 --- a/lib/HTML/Zoom.pm +++ b/lib/HTML/Zoom.pm @@ -1,12 +1,16 @@ package HTML::Zoom; -use strict; -use warnings FATAL => 'all'; +use strictures 1; use HTML::Zoom::ZConfig; use HTML::Zoom::ReadFH; use HTML::Zoom::Transform; use HTML::Zoom::TransformBuilder; +use Scalar::Util (); + +our $VERSION = '0.009004'; + +$VERSION = eval $VERSION; sub new { my ($class, $args) = @_; @@ -74,6 +78,17 @@ sub apply { $self->$code; } +sub apply_if { + my ($self, $predicate, $code) = @_; + if($predicate) { + local $_ = $self; + $self->$code; + } + else { + $self; + } +} + sub to_html { my $self = shift; $self->zconfig->producer->html_from_stream($self->to_stream); @@ -135,6 +150,18 @@ sub then { $self->select($self->{transforms}->[-1]->selector); } +sub AUTOLOAD { + my ($self, $selector, @args) = @_; + my $sel = $self->select($selector); + my $meth = our $AUTOLOAD; + $meth =~ s/.*:://; + if(my $cr = $sel->_zconfig->filter_builder->can($meth)) { + return $sel->$meth(@args); + } else { + die "We can't do $meth on ->select('$selector')"; + } +} + 1; =head1 NAME @@ -298,16 +325,16 @@ cleanly: map { my $field = $_; sub { $_->select('label') - ->add_attribute( for => $field->{id} ) + ->add_to_attribute( for => $field->{id} ) ->then ->replace_content( $field->{label} ) ->select('input') - ->add_attribute( name => $field->{name} ) + ->add_to_attribute( name => $field->{name} ) ->then - ->add_attribute( type => $field->{type} ) + ->add_to_attribute( type => $field->{type} ) ->then - ->add_attribute( value => $field->{value} ) + ->add_to_attribute( value => $field->{value} ) } } @fields ]); @@ -696,20 +723,49 @@ together; the intermediary object isn't designed or expected to stick around. =head2 then - my $z2 = $z1->select('div')->add_attribute(class => 'spoon') + my $z2 = $z1->select('div')->add_to_attribute(class => 'spoon') ->then ->replace_content('I AM A DIV!'); Re-runs the previous select to allow you to chain actions together on the same selector. -=head1 AUTHORS +=head1 AUTOLOAD METHODS -=over +L AUTOLOADS methods against L so that you can reduce a +certain amount of boilerplate typing. This allows you to replace: -=item * Matt S. Trout + $z->select('div')->replace_content("Hello World"); + +With: -=back + $z->replace_content(div => "Hello World"); + +Besides saving a few keys per invocations, you may feel this looks neater +in your code and increases understanding. + +=head1 AUTHOR + +mst - Matt S. Trout (cpan:MSTROUT) + +=head1 CONTRIBUTORS + +Oliver Charles + +Jakub Nareski + +Simon Elliot + +Joe Highton + +John Napiorkowski + +Robert Buels + +=head1 COPYRIGHT + +Copyright (c) 2010-2011 the HTML::Zoom L and L +as listed above. =head1 LICENSE