making reaction apply events for buttons defined as type=image
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Action.pm
CommitLineData
ddccc6a2 1package Reaction::UI::ViewPort::Action;
2
3use Reaction::Class;
4
7b5e71ad 5use MooseX::Types::URI qw/Uri/;
e29819c4 6use MooseX::Types::Moose qw/Int Str/;
7b5e71ad 7use MooseX::Types::Common::String qw/NonEmptySimpleStr/;
08451970 8
9use namespace::clean -except => [ qw(meta) ];
b343a983 10
11extends 'Reaction::UI::ViewPort::Object::Mutable';
08451970 12with 'Reaction::UI::ViewPort::Action::Role::OK';
13
e29819c4 14has message => (is => 'rw', isa => Str);
eb52e595 15has '+model' => (handles => [qw/error_message has_error_message/]);
e29819c4 16
b343a983 17#this has to fucking go. it BLOWS.
18has method => (
19 is => 'rw',
20 isa => NonEmptySimpleStr,
21 default => sub { 'post' }
22);
08451970 23
7b5e71ad 24has action => ( is => 'rw', isa => Uri );
25
08451970 26has changed => (
27 is => 'rw',
28 isa => Int,
29 reader => 'is_changed',
30 default => sub{0}
b343a983 31);
08451970 32
33sub can_apply {
34 my ($self) = @_;
35 foreach my $field ( @{ $self->fields } ) {
36 return 0 if $field->needs_sync;
37 # if e.g. a datetime field has an invalid value that can't be re-assembled
38 # into a datetime object, the action may be in a consistent state but
39 # not synchronized from the fields; in this case, we must not apply
40 }
41 return $self->model->can_apply;
42}
43
44sub do_apply {
45 shift->model->do_apply;
46}
47
48after apply_child_events => sub {
49 # interrupt here because fields will have been updated
50 my ($self) = @_;
51 $self->sync_action_from_fields;
52};
53
54sub sync_action_from_fields {
55 my ($self) = @_;
56 foreach my $field (@{$self->fields}) {
57 $field->sync_to_action; # get the field to populate the $action if possible
58 }
59 $self->model->sync_all;
60 foreach my $field (@{$self->fields}) {
61 $field->sync_from_action; # get errors from $action if applicable
62 }
63}
64
5aec9cb9 65after handle_events => sub {
66 my ($self, $events) = @_;
67 foreach my $event ($self->accept_events) {
68 unless (exists $events->{$event} ) {
69 # for <input type="image"... buttons
70 if ( exists $events->{"${event}.x"} && exists $events->{"${event}.y"} ) {
71 $self->$event($events->{$event});
72 }
73 }
74 }
75};
81393881 76
77__PACKAGE__->meta->make_immutable;
78
114916fc 791;
ddccc6a2 80
114916fc 81__END__;
ddccc6a2 82
08451970 83=head1 NAME
84
63bb30b4 85Reaction::UI::ViewPort::Action - Provide user with a form with OK, Apply and Close.
08451970 86
87=head1 SYNOPSIS
88
63bb30b4 89 $controller->push_viewport('Reaction::UI::ViewPort::Action',
90 model => $interface_model_action,
91 field_order => [qw( firstname lastname )],
92 excluded_fields => [qw( password )],
93 );
94
08451970 95=head1 DESCRIPTION
96
599c1172 97This subclass of L<Reaction::UI::ViewPort::Object::Mutable> is used for
98rendering a complete form supporting Apply, Close and OK.
08451970 99
100=head1 ATTRIBUTES
101
63bb30b4 102=head2 message
103
104=head2 model
105
106Inherited from L<Reaction::UI::ViewPort::Object::Mutable>. Must be a
107L<Reaction::InterfaceModel::Action>.
108
109Also handles C<error_message> and C<has_error_message> methods.
110
599c1172 111=head2 method
08451970 112
599c1172 113post / get
08451970 114
115=head2 changed
116
117Returns true if a field has been edited.
118
08451970 119=head1 METHODS
120
599c1172 121=head2 can_apply
08451970 122
63bb30b4 123Returns true if no field C<needs_sync> and the L</model> C<can_apply>.
124
599c1172 125=head2 do_apply
08451970 126
63bb30b4 127Delegates to C<do_apply> on the L</model>, which is a
128L<Reaction::InterfaceModel::Action>.
129
599c1172 130=head2 sync_action_from_fields
08451970 131
63bb30b4 132Firstly calls C<sync_to_action> on every L<Reaction::UI::ViewPort::Field::Mutable>
133in L<fields|Reaction::UI::ViewPort::Object/fields>. Then it calls C<sync_all> on
134the L<Reaction::InterfaceModel::Action> in L</model>. Next it will call
135C<sync_from_action> on every field to repopulate them from the L</model>.
136
137=head1 SUBCLASSING
138
139 package MyApp::UI::ViewPort::Action;
140 use Reaction::Class;
141 use MooseX::Types::Moose qw( Int );
142
143 use namespace::clean -except => 'meta';
144
145 extends 'Reaction::UI::ViewPort::Action';
146
147 has render_timestamp => (
148 is => 'ro',
149 isa => Int,
150 default => sub { time },
151 required => 1,
152 );
153
154 has '+field_order' => (default => sub {[qw( firstname lastname )]});
155
156 1;
157
599c1172 158=head1 SEE ALSO
08451970 159
599c1172 160L<Reaction::UI::ViewPort>
08451970 161
599c1172 162L<Reaction::UI::ViewPort::Object>
08451970 163
599c1172 164L<Reaction::UI::ViewPort::Object::Mutable>
08451970 165
599c1172 166L<Reaction::InterfaceModel::Action::Role::Apply>
08451970 167
599c1172 168L<Reaction::InterfaceModel::Action::Role::Close>
08451970 169
599c1172 170L<Reaction::InterfaceModel::Action::Role::OK>
08451970 171
172=head1 AUTHORS
173
174See L<Reaction::Class> for authors.
175
176=head1 LICENSE
177
178See L<Reaction::Class> for the license.
179
180=cut
181