X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FReaction%2FUI%2FViewPort%2FField%2FFile.pm;h=adb01556ad11c928800b8098f01a2fa0d4e70d91;hb=565a1fc7fe67c721f2766bdc3f55c5fcb33fc760;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..adb0155 100644 --- a/lib/Reaction/UI/ViewPort/Field/File.pm +++ b/lib/Reaction/UI/ViewPort/Field/File.pm @@ -3,43 +3,29 @@ 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); +use MooseX::Types::Moose qw/CodeRef/; - #has '+layout' => (default => 'file'); +has '+value' => (isa => Reaction::Types::File::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 uri => ( is => 'rw', lazy_build => 1); -}; +has action => (isa => CodeRef, is => 'rw', required => 1); -1; - -=head1 NAME - -Reaction::UI::ViewPort::Field::File - -=head1 DESCRIPTION +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); +} -=head1 SEE ALSO +sub _value_string_from_value { + shift->value->stringify; +} -=head2 L +__PACKAGE__->meta->make_immutable; -=head1 AUTHORS -See L for authors. - -=head1 LICENSE - -See L for the license. - -=cut +1;