From 049d22341026ead65b36eca2bddac7181f246142 Mon Sep 17 00:00:00 2001 From: wreis Date: Thu, 3 Sep 2009 03:42:08 +0000 Subject: moved handle for image buttons to UI::Window --- lib/Reaction/UI/ViewPort/Action.pm | 15 --------------- lib/Reaction/UI/Window.pm | 9 ++++++++- 2 files changed, 8 insertions(+), 16 deletions(-) (limited to 'lib') diff --git a/lib/Reaction/UI/ViewPort/Action.pm b/lib/Reaction/UI/ViewPort/Action.pm index 480ab67..40fd709 100644 --- a/lib/Reaction/UI/ViewPort/Action.pm +++ b/lib/Reaction/UI/ViewPort/Action.pm @@ -11,8 +11,6 @@ use namespace::clean -except => [ qw(meta) ]; extends 'Reaction::UI::ViewPort::Object::Mutable'; with 'Reaction::UI::ViewPort::Action::Role::OK'; -sub DEBUG_EVENTS () { $ENV{REACTION_UI_VIEWPORT_DEBUG_EVENTS} } - has message => (is => 'rw', isa => Str); has '+model' => (handles => [qw/error_message has_error_message/]); @@ -64,19 +62,6 @@ sub sync_action_from_fields { } } -after handle_events => sub { - my ($self, $events) = @_; - foreach my $event ($self->accept_events) { - unless (exists $events->{$event} ) { - # for {"${event}.x"} && exists $events->{"${event}.y"} ) { - $self->_dump_event($event, $events->{$event}) if DEBUG_EVENTS; - $self->$event($events->{$event}); - } - } - } -}; - __PACKAGE__->meta->make_immutable; 1; diff --git a/lib/Reaction/UI/Window.pm b/lib/Reaction/UI/Window.pm index 876a286..0289b39 100644 --- a/lib/Reaction/UI/Window.pm +++ b/lib/Reaction/UI/Window.pm @@ -50,7 +50,14 @@ sub flush_events { foreach my $type (qw/query body/) { my $meth = "${type}_parameters"; - my $param_hash = { %{$ctx->req->$meth} }; # yeah, FocusStack deletes it + my $req_param = $ctx->req->$meth; + my $param_hash = { + map { + $_ =~ m/(^r.+\:\w+)\.(x|y)/ ? # for $req_param->{$_} ) + : ( $_ => $req_param->{$_} ) + } keys %$req_param + }; # yeah, FocusStack deletes it my @param_keys = keys %$param_hash; if (@param_keys) { for (@param_keys) { -- cgit v1.2.3-54-g00ecf