aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/Widget/Value/List.pm
blob: 638cbfb0320df86413c7ab619f24646b3f7aac0e (plain) (blame)
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
package Reaction::UI::Widget::Value::List;

use Reaction::UI::WidgetClass;

class List, which {
  widget renders [ qw/list/ =>  { viewport => func(self => 'viewport') } ];
  list   renders [ item over func('viewport', 'value_names') ];
  item   renders [ string {""} ], { value => $_ };
};

1;

__END__;

=head1 NAME

Reaction::UI::Widget::Value::List

=head1 DESCRIPTION

=head1 FRAGMENTS

=head2 widget

renders C<label> passing additional variable "viewport"

=head2 list

renders fragment item over the viewport's C<value_names>

=head2 item

C<content> contains the value of the current item ($_ / $_{_})

=head1 AUTHORS

See L<Reaction::Class> for authors.

=head1 LICENSE

See L<Reaction::Class> for the license.

=cut