aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/ViewPort/Field/Mutable/Array.pm
blob: 49e629b7504cf37ffa2caa6004421afab444b227 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package Reaction::UI::ViewPort::Field::Mutable::Array;

use Reaction::Class;

class Array is 'Reaction::UI::ViewPort::Field::Array', which {
  does 'Reaction::UI::ViewPort::Field::Role::Mutable';

  around value => sub {
    my $orig = shift;
    my $self = shift;
    return $orig->($self) unless @_;
    my $value = defined $_[0] ? $_[0] : [];
    $orig->($self, (ref $value eq 'ARRAY' ? $value : [ $value ]));
    $self->sync_to_action;
  };
};

1;