package Reaction::UI::Widget::Object; use Reaction::UI::WidgetClass; use namespace::clean -except => [ qw(meta) ]; implements fragment container_list { render container => over $_{viewport}->containers; }; implements fragment container { render 'viewport'; }; #we won't be needing these anymore implements fragment field_list { render field => over $_{viewport}->fields; }; implements fragment field { render 'viewport'; }; implements fragment actions { render action => over $_{viewport}->actions; }; implements fragment action { render 'viewport'; }; __PACKAGE__->meta->make_immutable; 1; __END__; =head1 NAME Reaction::UI::Widget::Object - Widget to implement rendering of an object =head1 DESCRIPTION =head1 FRAGMENTS =head2 container_list Sequentially renders the C of the viewport found in its C method return values. =head2 container Renders the C viewport passed by C. =head2 actions Renders the C fragment with every item in the viewports C. =head2 action Renders the C fragment provided by L, thus rendering the current viewport stored in the C<_> topic argument provided by the C fragment. =head1 DEPRECATED FRAGMENTS =head2 field_list Sequentially renders the C of the viewport; =head2 field Renders the C viewport passed by C =head1 LAYOUT SETS =head2 base share/skin/base/layout/object.tt The following layouts are provided: =over 4 =item widget Renders the C fragment. =item container Renders the container viewport. =back =head2 default share/skin/default/layout/object.tt This layout set inherits from the one with the same name in the C skin. The following layouts are provided: =over 4 =item container Renders the container viewport. =back =head1 AUTHORS See L for authors. =head1 LICENSE See L for the license. =cut