X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FReaction%2FUI%2FViewPort%2FField%2FFile.pm;h=5d731e6f7a3c5af30fc15bc8c6cb2a4a4d629388;hb=7ea45b2aff36dd61953b1517a1cfb079dcea230c;hp=a1d181cfa724bc15710a5357a556a64547c7ddea;hpb=6ab43711ccd779eedce107001b300043e2056a0c;p=catagits%2FReaction.git diff --git a/lib/Reaction/UI/ViewPort/Field/File.pm b/lib/Reaction/UI/ViewPort/Field/File.pm index a1d181c..5d731e6 100644 --- a/lib/Reaction/UI/ViewPort/Field/File.pm +++ b/lib/Reaction/UI/ViewPort/Field/File.pm @@ -3,43 +3,27 @@ package Reaction::UI::ViewPort::Field::File; use Reaction::Class; use Reaction::Types::File; -class File is 'Reaction::UI::ViewPort::Field', which { +use namespace::clean -except => [ qw(meta) ]; +extends 'Reaction::UI::ViewPort::Field'; - has '+value' => (isa => 'File', required => 0); - #has '+layout' => (default => 'file'); - override apply_our_events => sub { - my ($self, $ctx, $events) = @_; - my $value_key = join(':', $self->location, 'value'); - if (my $upload = $ctx->req->upload($value_key)) { - local $events->{$value_key} = $upload; - return super(); - } else { - return super(); - } - }; +has '+value' => (isa => Reaction::Types::File::File()); -}; - -1; - -=head1 NAME - -Reaction::UI::ViewPort::Field::File - -=head1 DESCRIPTION - -=head1 SEE ALSO +has uri => ( is => 'rw', lazy_build => 1); -=head2 L - -=head1 AUTHORS - -See L for authors. - -=head1 LICENSE +has action => (isa => 'CodeRef', is => 'rw', required => 1); +sub _build_uri { + my $self = shift; + my $c = $self->ctx; + my ($c_name, $a_name, @rest) = @{ $self->action->($self->model, $c) }; + $c->uri_for($c->controller($c_name)->action_for($a_name),@rest); +}; +sub _value_string_from_value { + shift->value->stringify; +}; + +__PACKAGE__->meta->make_immutable; -See L for the license. -=cut +1;