Tidy code
[html-element-library.git] / lib / HTML / Element / Library.pm
CommitLineData
67e78ff2 1package HTML::Element::Library;
67e78ff2 2use strict;
3use warnings;
4
6c20681a 5our $VERSION = '5.120100';
67e78ff2 6our $DEBUG = 0;
67e78ff2 7
6c20681a
MG
8use Array::Group ':all';
9use Carp 'confess';
67e78ff2 10use Data::Dumper;
6c20681a 11use Data::Rmap 'rmap_array';
67e78ff2 12use HTML::Element;
6c20681a
MG
13use HTML::FillInForm;
14use List::MoreUtils ':all';
67e78ff2 15use List::Rotation::Cycle;
6c20681a
MG
16use List::Util 'first';
17use Params::Validate ':all';
18use Scalar::Listify;
67e78ff2 19
2fcbbeb3
TB
20# https://rt.cpan.org/Ticket/Display.html?id=44105
21sub HTML::Element::fillinform {
6c20681a
MG
22 my ($tree, $hashref, $return_tree, $guts) = @_;
23 (ref $hashref) eq 'HASH' or confess 'hashref not supplied as argument' ;
2fcbbeb3 24
6c20681a
MG
25 my $html = $tree->as_HTML;
26 my $new_html = HTML::FillInForm->fill(\$html, $hashref);
63007e38 27
6c20681a
MG
28 if ($return_tree) {
29 my $tree = HTML::TreeBuilder->new_from_content($new_html);
30 $tree = $guts ? $tree->guts : $tree ;
31 } else {
32 $new_html;
33 }
2fcbbeb3
TB
34}
35
67e78ff2 36sub HTML::Element::siblings {
6c20681a
MG
37 my $element = shift;
38 my $p = $element->parent;
39 return () unless $p;
40 $p->content_list;
67e78ff2 41}
42
f25dca7f 43sub HTML::Element::defmap {
6c20681a
MG
44 my($tree, $attr, $hashref, $debug) = @_;
45
46 while (my ($k, $v) = (each %$hashref)) {
47 warn "defmap looks for ($attr => $k)" if $debug;
48 my $found = $tree->look_down($attr => $k);
49 if ($found) {
50 warn "($attr => $k) was found.. replacing with '$v'" if $debug;
51 $found->replace_content( $v );
52 }
f25dca7f 53 }
f25dca7f
TB
54}
55
ce4e9192 56sub HTML::Element::_only_empty_content {
6c20681a
MG
57 my ($self) = @_;
58 my @c = $self->content_list;
59 my $length = scalar @c;
ce4e9192 60
6c20681a 61 scalar @c == 1 and not length $c[0];
ce4e9192
TB
62}
63
64sub HTML::Element::prune {
6c20681a 65 my ($self) = @_;
ce4e9192 66
6c20681a
MG
67 for my $c ($self->content_list) {
68 next unless ref $c;
69 $c->prune;
70 }
ce4e9192 71
6c20681a
MG
72 # post-order:
73 $self->delete if ($self->is_empty or $self->_only_empty_content);
74 $self;
ce4e9192
TB
75}
76
855ca7e9 77sub HTML::Element::newchild {
6c20681a
MG
78 my ($lol, $parent_label, @newchild) = @_;
79 rmap_array {
80 if ($_->[0] eq $parent_label) {
81 $_ = [ $parent_label => @newchild ];
82 Data::Rmap::cut($_);
83 } else {
84 $_;
85 }
86 } $lol;
271d5078 87}
ce4e9192 88
d161c455 89sub HTML::Element::crunch {
6c20681a
MG
90 my $container = shift;
91
92 my %p = validate(@_, {
93 look_down => { type => ARRAYREF },
94 leave => { default => 1 },
95 });
d161c455 96
6c20681a
MG
97 my @look_down = @{$p{look_down}} ;
98 my @elem = $container->look_down(@look_down) ;
d161c455 99
6c20681a 100 my $left;
d161c455 101
6c20681a
MG
102 for my $elem (@elem) {
103 $elem->detach if $left++ >= $p{leave};
104 }
d161c455 105}
f25dca7f 106
9b7a5679 107sub HTML::Element::hash_map {
6c20681a
MG
108 my $container = shift;
109
110 my %p = validate(@_, {
111 hash => { type => HASHREF },
112 to_attr => 1,
113 excluding => { type => ARRAYREF , default => [] },
114 debug => { default => 0 },
115 });
116
117 warn 'The container tag is ', $container->tag if $p{debug} ;
118 warn 'hash' . Dumper($p{hash}) if $p{debug} ;
119 #warn 'at_under' . Dumper(\@_) if $p{debug} ;
120
121 my @same_as = $container->look_down( $p{to_attr} => qr/.+/ ) ;
122
123 warn 'Found ' . scalar(@same_as) . ' nodes' if $p{debug} ;
124
125 for my $same_as (@same_as) {
126 my $attr_val = $same_as->attr($p{to_attr}) ;
127 if (first { $attr_val eq $_ } @{$p{excluding}}) {
128 warn "excluding $attr_val" if $p{debug} ;
129 next;
130 }
131 warn "processing $attr_val" if $p{debug} ;
132 $same_as->replace_content($p{hash}->{$attr_val});
d9f4bd5a 133 }
3dad7198
TB
134}
135
f25dca7f 136sub HTML::Element::hashmap {
6c20681a 137 my ($container, $attr_name, $hashref, $excluding, $debug) = @_;
f25dca7f 138
6c20681a 139 $excluding ||= [] ;
f25dca7f 140
6c20681a
MG
141 $container->hash_map(hash => $hashref,
142 to_attr => $attr_name,
143 excluding => $excluding,
144 debug => $debug);
f25dca7f
TB
145}
146
3dad7198 147
de64e3d9 148sub HTML::Element::passover {
6c20681a 149 my ($tree, @to_preserve) = @_;
de64e3d9 150
6c20681a
MG
151 warn "ARGS: my ($tree, @to_preserve)" if $DEBUG;
152 warn $tree->as_HTML(undef, ' ') if $DEBUG;
de64e3d9 153
6c20681a 154 my $exodus = $tree->look_down(id => $to_preserve[0]);
3dad7198 155
6c20681a 156 warn "E: $exodus" if $DEBUG;
de64e3d9 157
6c20681a 158 my @s = HTML::Element::siblings($exodus);
de64e3d9 159
6c20681a
MG
160 for my $s (@s) {
161 next unless ref $s;
162 $s->delete unless first { $s->attr('id') eq $_ } @to_preserve;
163 }
de64e3d9 164
6c20681a 165 return $exodus; # Goodbye Egypt! http://en.wikipedia.org/wiki/Passover
de64e3d9 166}
167
67e78ff2 168sub HTML::Element::sibdex {
6c20681a
MG
169 my $element = shift;
170 firstidx { $_ eq $element } $element->siblings
67e78ff2 171}
172
173sub HTML::Element::addr { goto &HTML::Element::sibdex }
174
175sub HTML::Element::replace_content {
6c20681a
MG
176 my $elem = shift;
177 $elem->delete_content;
178 $elem->push_content(@_);
67e78ff2 179}
180
181sub HTML::Element::wrap_content {
6c20681a
MG
182 my($self, $wrap) = @_;
183 my $content = $self->content;
184 if (ref $content) {
185 $wrap->push_content(@$content);
186 @$content = ($wrap);
187 }
188 else {
189 $self->push_content($wrap);
190 }
191 $wrap;
67e78ff2 192}
193
194sub HTML::Element::Library::super_literal {
6c20681a
MG
195 my($text) = @_;
196 HTML::Element->new('~literal', text => $text);
67e78ff2 197}
198
67e78ff2 199sub HTML::Element::position {
6c20681a
MG
200 # Report coordinates by chasing addr's up the
201 # HTML::ElementSuper tree. We know we've reached
202 # the top when a) there is no parent, or b) the
203 # parent is some HTML::Element unable to report
204 # it's position.
205 my $p = shift;
206 my @pos;
207 while ($p) {
208 my $a = $p->addr;
209 unshift(@pos, $a) if defined $a;
210 $p = $p->parent;
211 }
212 @pos;
67e78ff2 213}
214
67e78ff2 215sub HTML::Element::content_handler {
6c20681a 216 my ($tree, %content_hash) = @_;
67e78ff2 217
6c20681a
MG
218 for my $k (keys %content_hash) {
219 $tree->set_child_content(id => $k, $content_hash{$k});
220 }
237e9506
TB
221}
222
6c20681a 223sub HTML::Element::assign { goto &HTML::Element::content_handler }
67e78ff2 224
225sub make_counter {
6c20681a
MG
226 my $i = 1;
227 sub {
228 shift() . ':' . $i++
229 }
67e78ff2 230}
231
67e78ff2 232sub HTML::Element::iter {
6c20681a 233 my ($tree, $p, @data) = @_;
67e78ff2 234
6c20681a
MG
235 # warn 'P: ' , $p->attr('id') ;
236 # warn 'H: ' , $p->as_HTML;
67e78ff2 237
6c20681a
MG
238 # my $id_incr = make_counter;
239 my @item = map {
240 my $new_item = clone $p;
241 $new_item->replace_content($_);
242 $new_item;
243 } @data;
67e78ff2 244
6c20681a 245 $p->replace_with(@item);
67e78ff2 246}
247
67e78ff2 248sub HTML::Element::iter2 {
6c20681a
MG
249 my $tree = shift;
250
251 #warn "INPUT TO TABLE2: ", Dumper \@_;
252
253 my %p = validate(
254 @_, {
255 wrapper_ld => { default => ['_tag' => 'dl'] },
256 wrapper_data => 1,
257 wrapper_proc => { default => undef },
258 item_ld => {
259 default => sub {
260 my $tree = shift;
261 [
262 $tree->look_down('_tag' => 'dt'),
263 $tree->look_down('_tag' => 'dd')
264 ];
265 }},
266 item_data => {
267 default => sub {
268 my ($wrapper_data) = @_;
269 shift(@{$wrapper_data}) ;
270 }},
271 item_proc => {
272 default => sub {
273 my ($item_elems, $item_data, $row_count) = @_;
274 $item_elems->[$_]->replace_content($item_data->[$_]) for (0,1) ;
275 $item_elems;
276 }},
277 splice => {
278 default => sub {
279 my ($container, @item_elems) = @_;
280 $container->splice_content(0, 2, @item_elems);
281 }
67e78ff2 282 },
6c20681a
MG
283 debug => {default => 0}
284 }
285 );
67e78ff2 286
6c20681a 287 warn "wrapper_data: " . Dumper $p{wrapper_data} if $p{debug} ;
67e78ff2 288
6c20681a
MG
289 my $container = ref_or_ld($tree, $p{wrapper_ld});
290 warn "container: " . $container if $p{debug} ;
291 warn "wrapper_(preproc): " . $container->as_HTML if $p{debug} ;
292 $p{wrapper_proc}->($container) if defined $p{wrapper_proc} ;
293 warn "wrapper_(postproc): " . $container->as_HTML if $p{debug} ;
67e78ff2 294
6c20681a 295 my $_item_elems = $p{item_ld}->($container);
67e78ff2 296
6c20681a
MG
297 my $row_count;
298 my @item_elem;
299 while(1){
300 my $item_data = $p{item_data}->($p{wrapper_data});
301 last unless defined $item_data;
67e78ff2 302
6c20681a 303 warn Dumper("item_data", $item_data);
67e78ff2 304
6c20681a 305 my $item_elems = [ map { $_->clone } @{$_item_elems} ] ;
67e78ff2 306
6c20681a
MG
307 if ($p{debug}) {
308 for (@{$item_elems}) {
309 warn "ITEM_ELEMS ", $_->as_HTML;
310 }
311 }
67e78ff2 312
6c20681a 313 my $new_item_elems = $p{item_proc}->($item_elems, $item_data, ++$row_count);
67e78ff2 314
6c20681a
MG
315 if ($p{debug}) {
316 for (@{$new_item_elems}) {
317 warn "NEWITEM_ELEMS ", $_->as_HTML;
318 }
319 }
67e78ff2 320
6c20681a
MG
321 push @item_elem, @{$new_item_elems} ;
322 }
67e78ff2 323
6c20681a 324 warn "pushing " . @item_elem . " elems " if $p{debug} ;
67e78ff2 325
6c20681a 326 $p{splice}->($container, @item_elem);
67e78ff2 327}
328
329sub HTML::Element::dual_iter {
6c20681a 330 my ($parent, $data) = @_;
67e78ff2 331
6c20681a 332 my ($prototype_a, $prototype_b) = $parent->content_list;
67e78ff2 333
6c20681a 334 # my $id_incr = make_counter;
67e78ff2 335
6c20681a 336 my $i;
67e78ff2 337
6c20681a 338 @$data %2 == 0 or confess 'dataset does not contain an even number of members';
67e78ff2 339
6c20681a 340 my @iterable_data = ngroup 2 => @$data;
67e78ff2 341
6c20681a
MG
342 my @item = map {
343 my ($new_a, $new_b) = map { clone $_ } ($prototype_a, $prototype_b) ;
344 $new_a->splice_content(0,1, $_->[0]);
345 $new_b->splice_content(0,1, $_->[1]);
346 #$_->attr('id', $id_incr->($_->attr('id'))) for ($new_a, $new_b) ;
347 ($new_a, $new_b)
348 } @iterable_data;
67e78ff2 349
6c20681a 350 $parent->splice_content(0, 2, @item);
67e78ff2 351}
352
67e78ff2 353sub HTML::Element::set_child_content {
6c20681a
MG
354 my $tree = shift;
355 my $content = pop;
356 my @look_down = @_;
67e78ff2 357
6c20681a 358 my $content_tag = $tree->look_down(@look_down);
67e78ff2 359
6c20681a
MG
360 unless ($content_tag) {
361 warn "criteria [@look_down] not found";
362 return;
363 }
67e78ff2 364
6c20681a 365 $content_tag->replace_content($content);
67e78ff2 366}
367
368sub HTML::Element::highlander {
6c20681a 369 my ($tree, $local_root_id, $aref, @arg) = @_;
67e78ff2 370
6c20681a 371 ref $aref eq 'ARRAY' or confess "must supply array reference";
67e78ff2 372
6c20681a
MG
373 my @aref = @$aref;
374 @aref % 2 == 0 or confess "supplied array ref must have an even number of entries";
67e78ff2 375
6c20681a 376 warn __PACKAGE__ if $DEBUG;
67e78ff2 377
6c20681a
MG
378 my $survivor;
379 while (my ($id, $test) = splice @aref, 0, 2) {
380 warn $id if $DEBUG;
381 if ($test->(@arg)) {
382 $survivor = $id;
383 last;
384 }
385 }
67e78ff2 386
6c20681a
MG
387 my @id_survivor = (id => $survivor);
388 my $survivor_node = $tree->look_down(@id_survivor);
389 # warn $survivor;
390 # warn $local_root_id;
391 # warn $node;
67e78ff2 392
6c20681a
MG
393 warn "survivor: $survivor" if $DEBUG;
394 warn "tree: " . $tree->as_HTML if $DEBUG;
67e78ff2 395
6c20681a 396 $survivor_node or die "search for @id_survivor failed in tree($tree): " . $tree->as_HTML;
67e78ff2 397
6c20681a
MG
398 my $survivor_node_parent = $survivor_node->parent;
399 $survivor_node = $survivor_node->clone;
400 $survivor_node_parent->replace_content($survivor_node);
67e78ff2 401
6c20681a 402 warn "new tree: " . $tree->as_HTML if $DEBUG;
67e78ff2 403
6c20681a 404 $survivor_node;
67e78ff2 405}
406
67e78ff2 407sub HTML::Element::highlander2 {
6c20681a
MG
408 my $tree = shift;
409
410 my %p = validate(@_, {
411 cond => { type => ARRAYREF },
412 cond_arg => {
413 type => ARRAYREF,
414 default => []
415 },
416 debug => { default => 0 }
417 });
418
419 my @cond = @{$p{cond}};
420 @cond % 2 == 0 or confess "supplied array ref must have an even number of entries";
421
422 warn __PACKAGE__ if $p{debug};
423
424 my @cond_arg = @{$p{cond_arg}};
425
426 my $survivor; my $then;
427 while (my ($id, $if_then) = splice @cond, 0, 2) {
428 warn $id if $p{debug};
429 my ($if, $_then);
430
431 if (ref $if_then eq 'ARRAY') {
432 ($if, $_then) = @$if_then;
433 } else {
434 ($if, $_then) = ($if_then, sub {});
435 }
436
437 if ($if->(@cond_arg)) {
438 $survivor = $id;
439 $then = $_then;
440 last;
441 }
442 }
67e78ff2 443
6c20681a 444 my @ld = (ref $survivor eq 'ARRAY') ? @$survivor : (id => $survivor);
67e78ff2 445
6c20681a
MG
446 warn "survivor: ", $survivor if $p{debug};
447 warn "survivor_ld: ", Dumper \@ld if $p{debug};
67e78ff2 448
6c20681a 449 my $survivor_node = $tree->look_down(@ld);
67e78ff2 450
6c20681a 451 $survivor_node or confess "search for @ld failed in tree($tree): " . $tree->as_HTML;
67e78ff2 452
6c20681a
MG
453 my $survivor_node_parent = $survivor_node->parent;
454 $survivor_node = $survivor_node->clone;
455 $survivor_node_parent->replace_content($survivor_node);
67e78ff2 456
6c20681a
MG
457 # **************** NEW FUNCTIONALITY *******************
458 # apply transforms on survivor node
67e78ff2 459
6c20681a
MG
460 warn "SURV::pre_trans " . $survivor_node->as_HTML if $p{debug};
461 $then->($survivor_node, @cond_arg);
462 warn "SURV::post_trans " . $survivor_node->as_HTML if $p{debug};
463 # **************** NEW FUNCTIONALITY *******************
67e78ff2 464
6c20681a 465 $survivor_node;
67e78ff2 466}
467
67e78ff2 468sub overwrite_action {
6c20681a 469 my ($mute_node, %X) = @_;
67e78ff2 470
6c20681a 471 $mute_node->attr($X{local_attr}{name} => $X{local_attr}{value}{new});
67e78ff2 472}
473
67e78ff2 474sub HTML::Element::overwrite_attr {
6c20681a 475 my $tree = shift;
67e78ff2 476
6c20681a
MG
477 $tree->mute_elem(@_, \&overwrite_action);
478}
67e78ff2 479
480sub HTML::Element::mute_elem {
6c20681a
MG
481 my ($tree, $mute_attr, $closures, $post_hook) = @_;
482
483 warn "my mute_node = $tree->look_down($mute_attr => qr/.*/) ;";
484 my @mute_node = $tree->look_down($mute_attr => qr/.*/) ;
485
486 for my $mute_node (@mute_node) {
487 my ($local_attr,$mute_key) = split /\s+/, $mute_node->attr($mute_attr);
488 my $local_attr_value_current = $mute_node->attr($local_attr);
489 my $local_attr_value_new = $closures->{$mute_key}->($tree, $mute_node, $local_attr_value_current);
490 $post_hook->(
491 $mute_node,
492 tree => $tree,
493 local_attr => {
494 name => $local_attr,
495 value => {
496 current => $local_attr_value_current,
497 new => $local_attr_value_new
498 }
499 }
500 ) if ($post_hook) ;
501 }
67e78ff2 502}
503
504
505
506sub HTML::Element::table {
6c20681a
MG
507 my ($s, %table) = @_;
508 my $table = {};
67e78ff2 509
6c20681a
MG
510 # Get the table element
511 $table->{table_node} = $s->look_down(id => $table{gi_table});
512 $table->{table_node} or confess "table tag not found via (id => $table{gi_table}";
67e78ff2 513
6c20681a
MG
514 # Get the prototype tr element(s)
515 my @table_gi_tr = listify $table{gi_tr} ;
516 my @iter_node = map {
517 my $tr = $table->{table_node}->look_down(id => $_);
518 $tr or confess "tr with id => $_ not found";
519 $tr;
520 } @table_gi_tr;
67e78ff2 521
6c20681a
MG
522 warn "found " . @iter_node . " iter nodes " if $DEBUG;
523 my $iter_node = List::Rotation::Cycle->new(@iter_node);
67e78ff2 524
6c20681a
MG
525 # warn $iter_node;
526 warn Dumper ($iter_node, \@iter_node) if $DEBUG;
67e78ff2 527
6c20681a
MG
528 # $table->{content} = $table{content};
529 # $table->{parent} = $table->{table_node}->parent;
67e78ff2 530
6c20681a
MG
531 # $table->{table_node}->detach;
532 # $_->detach for @iter_node;
67e78ff2 533
6c20681a 534 my @table_rows;
67e78ff2 535
6c20681a
MG
536 while (1) {
537 my $row = $table{tr_data}->($table, $table{table_data});
538 last unless defined $row;
67e78ff2 539
6c20681a
MG
540 # get a sample table row and clone it.
541 my $I = $iter_node->next;
542 warn "I: $I" if $DEBUG;
543 my $new_iter_node = $I->clone;
67e78ff2 544
6c20681a
MG
545 $table{td_data}->($new_iter_node, $row);
546 push @table_rows, $new_iter_node;
547 }
67e78ff2 548
6c20681a
MG
549 if (@table_rows) {
550 my $replace_with_elem = $s->look_down(id => shift @table_gi_tr) ;
551 $s->look_down(id => $_)->detach for @table_gi_tr;
552 $replace_with_elem->replace_with(@table_rows);
553 }
67e78ff2 554}
555
556sub ref_or_ld {
6c20681a 557 my ($tree, $slot) = @_;
67e78ff2 558
6c20681a
MG
559 if (ref($slot) eq 'CODE') {
560 $slot->($tree);
561 } else {
562 $tree->look_down(@$slot);
563 }
67e78ff2 564}
565
67e78ff2 566sub HTML::Element::table2 {
6c20681a
MG
567 my $tree = shift;
568
569 my %p = validate(
570 @_, {
571 table_ld => { default => ['_tag' => 'table'] },
572 table_data => 1,
573 table_proc => { default => undef },
574 tr_ld => { default => ['_tag' => 'tr'] },
575 tr_data => {
576 default => sub {
577 my ($self, $data) = @_;
578 shift(@{$data}) ;
579 }},
580 tr_base_id => { default => undef },
581 tr_proc => { default => sub {} },
582 td_proc => 1,
583 debug => {default => 0}
584 }
585 );
586
587 warn "INPUT TO TABLE2: ", Dumper \@_ if $p{debug};
588 warn "table_data: " . Dumper $p{table_data} if $p{debug} ;
589
590 my $table = {};
591
592 # Get the table element
593 $table->{table_node} = ref_or_ld( $tree, $p{table_ld} ) ;
594 $table->{table_node} or confess "table tag not found via " . Dumper($p{table_ld}) ;
595
596 warn "table: " . $table->{table_node}->as_HTML if $p{debug};
597
598 # Get the prototype tr element(s)
599 my @proto_tr = ref_or_ld( $table->{table_node}, $p{tr_ld} ) ;
600
601 warn "found " . @proto_tr . " iter nodes " if $p{debug};
602
603 return unless @proto_tr;
604
605 if ($p{debug}) {
606 warn $_->as_HTML for @proto_tr;
607 }
608 my $proto_tr = List::Rotation::Cycle->new(@proto_tr);
67e78ff2 609
6c20681a
MG
610 my $tr_parent = $proto_tr[0]->parent;
611 warn "parent element of trs: " . $tr_parent->as_HTML if $p{debug};
67e78ff2 612
6c20681a 613 my $row_count;
67e78ff2 614
6c20681a 615 my @table_rows;
67e78ff2 616
6c20681a
MG
617 while(1) {
618 my $row = $p{tr_data}->($table, $p{table_data}, $row_count);
619 warn "data row: " . Dumper $row if $p{debug};
620 last unless defined $row;
67e78ff2 621
6c20681a
MG
622 # wont work: my $new_iter_node = $table->{iter_node}->clone;
623 my $new_tr_node = $proto_tr->next->clone;
624 warn "new_tr_node: $new_tr_node" if $p{debug};
67e78ff2 625
6c20681a 626 $p{tr_proc}->($tree, $new_tr_node, $row, $p{tr_base_id}, ++$row_count) if defined $p{tr_proc};
67e78ff2 627
6c20681a 628 warn "data row redux: " . Dumper $row if $p{debug};
67e78ff2 629
6c20681a
MG
630 $p{td_proc}->($new_tr_node, $row);
631 push @table_rows, $new_tr_node;
632 }
67e78ff2 633
6c20681a 634 $_->detach for @proto_tr;
67e78ff2 635
6c20681a 636 $tr_parent->push_content(@table_rows) if (@table_rows) ;
67e78ff2 637}
638
67e78ff2 639sub HTML::Element::unroll_select {
6c20681a 640 my ($s, %select) = @_;
67e78ff2 641
6c20681a
MG
642 my $select = {};
643 warn "Select Hash: " . Dumper(\%select) if $select{debug};
67e78ff2 644
6c20681a
MG
645 my $select_node = $s->look_down(id => $select{select_label});
646 warn "Select Node: " . $select_node if $select{debug};
67e78ff2 647
6c20681a
MG
648 unless ($select{append}) {
649 for my $option ($select_node->look_down('_tag' => 'option')) {
650 $option->delete;
651 }
652 }
67e78ff2 653
6c20681a
MG
654 my $option = HTML::Element->new('option');
655 warn "Option Node: " . $option if $select{debug};
3caedb5b 656
6c20681a 657 $option->detach;
67e78ff2 658
6c20681a
MG
659 while (my $row = $select{data_iter}->($select{data})) {
660 warn "Data Row:" . Dumper($row) if $select{debug};
661 my $o = $option->clone;
662 $o->attr('value', $select{option_value}->($row));
663 $o->attr('SELECTED', 1) if (exists $select{option_selected} and $select{option_selected}->($row));
67e78ff2 664
6c20681a
MG
665 $o->replace_content($select{option_content}->($row));
666 $select_node->push_content($o);
667 warn $o->as_HTML if $select{debug};
668 }
67e78ff2 669}
670
67e78ff2 671sub HTML::Element::set_sibling_content {
6c20681a 672 my ($elt, $content) = @_;
67e78ff2 673
6c20681a 674 $elt->parent->splice_content($elt->pindex + 1, 1, $content);
67e78ff2 675}
676
677sub HTML::TreeBuilder::parse_string {
6c20681a 678 my ($package, $string) = @_;
67e78ff2 679
6c20681a
MG
680 my $h = HTML::TreeBuilder->new;
681 HTML::TreeBuilder->parse($string);
67e78ff2 682}
683
67e78ff2 6841;
685__END__
This page took 0.056469 seconds and 4 git commands to generate.