aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/ViewPort/Role/Actions.pm
blob: 7da00724fdbc366f97cea4a170e90f80d2d46671 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package Reaction::UI::ViewPort::Role::Actions;

use Reaction::Role;
use Reaction::UI::ViewPort::Action::Link;

use namespace::clean -except => [ qw(meta) ];


has actions => (is => 'ro', isa => 'ArrayRef', lazy_build => 1);
has action_prototypes => (is => 'ro', isa => 'ArrayRef', lazy_build => 1);
sub _build_action_prototypes { [] };
sub _build_actions {
  my ($self) = @_;
  my (@act, $i);
  my $ctx = $self->ctx;
  my $loc = $self->location;
  foreach my $proto (@{ $self->action_prototypes }) {
    my $action = Reaction::UI::ViewPort::Action::Link->new
      (
       ctx      => $ctx,
       target   => $self->model,
       location => join ('-', $loc, 'action', $i++),
       %$proto,
      );
    push(@act, $action);
  }
  return \@act;
};



1;

__END__;

=head1 NAME

Reaction::UI::ViewPort::Role::Actions

=head1 DESCRIPTION

A role to ease attaching actions to L<Reaction::InterfaceModel::Object>s

=head1 ATTRIBUTES

=head2 actions

=head2 action_prototypes

=head1 AUTHORS

See L<Reaction::Class> for authors.

=head1 LICENSE

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

=cut