added action_filter
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Role / Actions.pm
CommitLineData
ddccc6a2 1package Reaction::UI::ViewPort::Role::Actions;
b8faba69 2
3use Reaction::Role;
37728bba 4use Reaction::UI::ViewPort::URI;
b8faba69 5
81393881 6use namespace::clean -except => [ qw(meta) ];
7
37728bba 8has actions => (
9 is => 'ro',
10 isa => 'ArrayRef',
11 lazy_build => 1
12);
13
14has action_order => (
15 is => 'ro',
16 isa => 'ArrayRef'
17);
18
565a1fc7 19has action_filter => (
20 isa => 'CodeRef', is => 'ro',
21 required => '1', lazy => '1',
22 default => sub {
23 sub { return [keys %{ shift->action_prototypes }] }
24 }
25);
26
37728bba 27has action_prototypes => (
28 is => 'ro',
29 isa => 'HashRef',
30 required => 1,
31 default => sub{ {} }
32);
33
34has computed_action_order => (
35 is => 'ro',
36 isa => 'ArrayRef',
37 lazy_build => 1
38);
39
40sub _build_computed_action_order {
41 my $self = shift;
42 my $ordered = $self->sort_by_spec(
43 ($self->has_action_order ? $self->action_order : []),
44 [ keys %{ $self->action_prototypes } ]
45 );
565a1fc7 46 return $self->action_filter->($ordered, $self->model);
37728bba 47}
81393881 48
81393881 49sub _build_actions {
50 my ($self) = @_;
51 my (@act, $i);
52 my $ctx = $self->ctx;
53 my $loc = $self->location;
37728bba 54 my $target = $self->model;
55
56 foreach my $proto_name ( @{ $self->computed_action_order } ) {
57 my $proto = $self->action_prototypes->{$proto_name};
58 my $uri = $proto->{uri} or confess('uri is required in prototype action');
59 my $label = exists $proto->{label} ? $proto->{label} : $proto_name;
a33275e9 60 my $layout = exists $proto->{layout} ? $proto->{layout} : 'uri';
37728bba 61
62 my $action = Reaction::UI::ViewPort::URI->new(
63 location => join ('-', $loc, 'action', $i++),
64 uri => ( ref($uri) eq 'CODE' ? $uri->($target, $ctx) : $uri ),
65 display => ( ref($label) eq 'CODE' ? $label->($target, $ctx) : $label ),
a33275e9 66 layout => ( ref($layout) eq 'CODE' ? $layout->($target, $ctx) : $layout ),
37728bba 67 );
81393881 68 push(@act, $action);
69 }
70 return \@act;
37728bba 71}
81393881 72
b8faba69 731;
2dba7201 74
75__END__;
76
77=head1 NAME
78
79Reaction::UI::ViewPort::Role::Actions
80
81=head1 DESCRIPTION
82
83A role to ease attaching actions to L<Reaction::InterfaceModel::Object>s
84
85=head1 ATTRIBUTES
86
87=head2 actions
88
91140599 89Read-only, lazy-building ArrayRef of URI objects pointing to actions.
3be50b19 90
2dba7201 91=head2 action_prototypes
92
3be50b19 93A HashRef of prototypes for building the Action links. The prototypes should be
94composed like these:
95
96 my %action_prototypes = (
97 example_action => { label => 'Example Action', uri => $uri_obj },
98 );
99
100 #or you can get fancy and do something like what is below:
101 sub make_label{
102 my($im, $ctx) = @_; #InterfaceModel::Object/Collection, Catalyst Context
103 return 'label_text';
104 }
105 sub make_uri{
106 my($im, $ctx) = @_; #InterfaceModel::Object/Collection, Catalyst Context
107 return return $ctx->uri_for('some_action');
108 }
109 my %action_prototypes = (
110 example_action => { label => \&make_label, uri => \&make_uri },
111 );
112
113=head2 action_order
114
115User-provided ArrayRef with how the actions should be ordered eg
116
117 action_order => [qw/view edit delete/]
118
119=head2 computed_action_order
120
91140599 121Read-only lazy-building ARRAY ref. The final computed action order. This may
122differ from the C<action_order> provided if you any actions were not included
123in that list.
124
125=head1 METHODS
126
127=head2 _build_actions
128
129Cycle through the C<computed_action_order> and create a new
130L<ViewPort::URI|Reaction::UI::ViewPort::URI> object for each action using the
131provided prototypes.
132
133=head2 _build_computed_action_order
134
135Compute the final action ordering by using the provided C<action_order> as a
136spec to order all the present actions (the keys of C<action_prototypes>)
137
138=head1 ACTION PROTOTYPES
139
140Action prototypes are simply hashrefs that must contain a C<uri> key and may
141contain a C<label> key. The label can be anything that the display attribute of
142L<ViewPort::URI|Reaction::UI::ViewPort::URI> will accept, usually a scalar or a
143ViewPort. The value for C<uri> may be either a scalar, a L<URI> object (or
144anything that C<ISA URI>).
145
146Additionally, both C<label> and C<uri> can be CODE refs. In this case, the code
147will be executed at C<_build_actions> time and will recieve two arguments, the
148value returned by C<model> and the value returned by C<ctx> in that order. Both
149of these methods should be implemented in the consuming class. By convention,
150model refers to the target of the action, an C<InterfaceModel::Object> in the
151case of a member action and an C<InterfaceModel::Collection> in the case of a
152Collection action. C<ctx> should be the current Catalyst context.
3be50b19 153
2dba7201 154=head1 AUTHORS
155
156See L<Reaction::Class> for authors.
157
158=head1 LICENSE
159
160See L<Reaction::Class> for the license.
161
162=cut