
Reaction::UI::Controller::Role::Action::List - List action

Provides a list action,
which sets up an Collection Viewport using the collection contained in the collection slot of the stash,
if present,
or using the object returned by the method get_collection.

package MyApp::Controller::Foo;
use base 'Reaction::Controller';
use Reaction::Class;
with(
'Reaction::UI::Controller::Role::GetCollection',
'Reaction::UI::Controller::Role::Action::Simple',
'Reaction::UI::Controller::Role::Action::List'
);
__PACKAGE__->config( action => {
list => { Chained => 'base' },
} );
sub base :Chained('/base') :CaptureArgs(0) {
...
}

This role also consumes the following roles:

The following methods must be provided by the consuming class:

Chain endpoint with no args, sets up the viewport with the appropriate action.

Extends to set the list key in the map to Reaction::UI::ViewPort::Action


See Reaction::Class for authors.

See Reaction::Class for the license.