removed viewport dependency on ->ctx
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Action / Link.pm
1 package Reaction::UI::ViewPort::Action::Link;
2
3 use Reaction::Class;
4
5 use namespace::clean -except => [ qw(meta) ];
6 extends 'Reaction::UI::ViewPort';
7
8
9
10 has label  => (is => 'rw',  required => 1);
11 has uri    => ( is => 'rw', lazy_build => 1);
12
13 has target => (isa => 'Object',  is => 'rw', required   => 1);
14 has action => (isa => 'CodeRef', is => 'rw', required   => 1);
15 sub BUILD {
16   my $self = shift;
17   $self->label( $self->label->($self->target) ) if ref $self->label eq 'CODE';
18 };
19 sub _build_uri {
20   my $self = shift;
21   my $c = $self->ctx;
22   my ($c_name, $a_name, @rest) = @{ $self->action->($self->target, $c) };
23   $c->uri_for($c->controller($c_name)->action_for($a_name),@rest);
24 };
25
26 __PACKAGE__->meta->make_immutable;
27
28
29 1;