The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Reaction::UI::Controller::Role::Action::DeleteAll - Delete All action

DESCRIPTION

Provides a delete_all action, which sets up an Action Viewport by calling action_for on either the object located in the collection slot of the stash or on the object returned by the method get_collection.

SYNOPSYS

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::DeleteAll'
);

__PACKAGE__->config( action => {
  delete_all => { Chained => 'base' },
} );

sub base :Chained('/base') :CaptureArgs(0) {
  ...
}

sub on_delete_all_apply_callback{ #optional callback
  my($self, $c, $vp, $result) = @_;
  ...
}

sub on_delete_all_close_callback{ #optional callback
  my($self, $c, $vp) = @_;
  ...
}

ROLES CONSUMED

This role also consumes the following roles:

Reaction::UI::Controller::Role::Action::Simple

REQUIRED METHODS

The following methods must be provided by the consuming class:

get_collection
make_context_closure

ACTIONS

delete_all

Chain endpoint with no args, sets up the viewport with the appropriate action. If the methods on_delete_all_apply_callback and on_delete_all_close_callback are present in the consuming class, they will be used as callbacks in the viewport.

METHODS

_build_action_viewport_map

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

SEE ALSO

Reaction::UI::Controller
Reaction::UI::Controller::Role::GetCollection
Reaction::UI::Controller::Role::Action::Simple
Reaction::UI::Controller::Role::Action::List
Reaction::UI::Controller::Role::Action::View
Reaction::UI::Controller::Role::Action::Object
Reaction::UI::Controller::Role::Action::Create
Reaction::UI::Controller::Role::Action::Update
Reaction::UI::Controller::Role::Action::Delete

AUTHORS

See Reaction::Class for authors.

LICENSE

See Reaction::Class for the license.

6 POD Errors

The following errors were encountered while parsing the POD:

Around line 81:

Unknown directive: =over4

Around line 83:

'=item' outside of any '=over'

Around line 91:

Unknown directive: =over4

Around line 93:

'=item' outside of any '=over'

Around line 115:

Unknown directive: =over4

Around line 117:

'=item' outside of any '=over'