choosemany is still broken (not applying changes) but everything else is looking...
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Field / Mutable / ChooseMany.pm
CommitLineData
ddccc6a2 1package Reaction::UI::ViewPort::Field::Mutable::ChooseMany;
2
3use Reaction::Class;
4
5my $listify = sub{
6 return [] unless defined $_[0];
7 return ref $_[0] eq 'ARRAY' ? $_[0] : [$_[0]];
8};
9
10class ChooseMany is 'Reaction::UI::ViewPort::Field', which {
11
12 has '+value' => (isa => 'ArrayRef');
13
14 does 'Reaction::UI::ViewPort::Field::Role::Mutable';
15 does 'Reaction::UI::ViewPort::Field::Role::Choices';
16
36d54b14 17
ddccc6a2 18 around value => sub {
19 my $orig = shift;
20 my $self = shift;
21 return $orig->($self) unless @_;
22 my $value = $listify->(shift);
23 $_ = $self->str_to_ident($_) for @$value;
36d54b14 24 my $checked = $self->attribute->check_valid_value($self->model, $value);
ddccc6a2 25 # i.e. fail if any of the values fail
26 confess "Not a valid set of values"
27 if (@$checked < @$value || grep { !defined($_) } @$checked);
28 $orig->($self, $checked);
29 };
30
31 #XXX go away!
32 override _build_value => sub {
33 return super() || [];
34 };
35
36d54b14 36 implements _build_value_string => as {
37 join ", ", @{ shift->current_value_choices }
38 };
39
ddccc6a2 40 implements is_current_value => as {
41 my ($self, $check_value) = @_;
42 my @our_values = @{$self->value||[]};
43 $check_value = $self->obj_to_str($check_value) if ref($check_value);
44 return grep { $self->obj_to_str($_) eq $check_value } @our_values;
45 };
46
47 implements current_value_choices => as {
48 my $self = shift;
49 my @all = grep { $self->is_current_value($_->{value}) } @{$self->value_choices};
50 return [ @all ];
51 };
52
53 implements available_value_choices => as {
54 my $self = shift;
55 my @all = grep { !$self->is_current_value($_->{value}) } @{$self->value_choices};
56 return [ @all ];
57 };
58
59 around handle_events => sub {
60 my $orig = shift;
61 my ($self, $events) = @_;
62 my $ev_value = $listify->($events->{value});
63 if (delete $events->{add_all_values}) {
64 $events->{value} = [map {$self->obj_to_str($_)} @{$self->valid_values}];
65 } elsif (exists $events->{add_values} && delete $events->{do_add_values}) {
66 my $add = $listify->(delete $events->{add_values});
67 $events->{value} = [ @{$ev_value}, @$add ];
68 } elsif (delete $events->{remove_all_values}) {
69 $events->{value} = [];
70 }elsif (exists $events->{remove_values} && delete $events->{do_remove_values}) {
71 my $remove = $listify->(delete $events->{remove_values});
72 my %r = map { ($_ => 1) } @$remove;
73 $events->{value} = [ grep { !$r{$_} } @{$ev_value} ];
74 }
75 return $orig->(@_);
76 };
77
78};
79
801;
81
82=head1 NAME
83
84Reaction::UI::ViewPort::Field::ChooseMany
85
86=head1 DESCRIPTION
87
88=head1 METHODS
89
90=head2 is_current_value
91
92=head2 current_values
93
94=head2 available_values
95
96=head2 available_value_names
97
98=head1 SEE ALSO
99
100=head2 L<Reaction::UI::ViewPort::Field>
101
102=head1 AUTHORS
103
104See L<Reaction::Class> for authors.
105
106=head1 LICENSE
107
108See L<Reaction::Class> for the license.
109
110=cut