refactpored most of the action stuff into roles. should fields be a role too?
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Collection.pm
CommitLineData
ddccc6a2 1package Reaction::UI::ViewPort::Collection;
2
3use Reaction::Class;
4use Scalar::Util qw/blessed/;
5use aliased 'Reaction::InterfaceModel::Collection' => 'IM_Collection';
6use aliased 'Reaction::UI::ViewPort::Object';
7
81393881 8use namespace::clean -except => [ qw(meta) ];
9extends 'Reaction::UI::ViewPort';
ddccc6a2 10
81393881 11
12
13has members => (is => 'rw', isa => 'ArrayRef', lazy_build => 1);
14
15has collection => (is => 'ro', isa => IM_Collection, required => 1);
16has current_collection => (is => 'rw', isa => IM_Collection, lazy_build => 1);
17
18has member_args => ( is => 'rw', isa => 'HashRef', lazy_build => 1);
19has member_class => ( is => 'ro', isa => 'Str', lazy_build => 1);
20sub BUILD {
21 my ($self, $args) = @_;
22 if( my $member_args = delete $args->{Member} ){
23 $self->member_args( $member_args );
24 }
25};
26sub _build_member_args { {} };
27sub _build_member_class { Object };
28
29after clear_current_collection => sub{
30 shift->clear_members; #clear the members the current collection changes, duh
ddccc6a2 31};
81393881 32sub _build_current_collection {
33 return $_[0]->collection;
34};
35
36#I'm not really sure why this is here all of a sudden.
37sub model { shift->current_collection };
38sub _build_members {
39 my ($self) = @_;
40 my (@members, $i);
41 my $args = $self->member_args;
42 my $builders = {};
43 my $ctx = $self->ctx;
44 my $loc = join('-', $self->location, 'member');
45 my $class = $self->member_class;
46
47 #replace $i with a real unique identifier so that we don't run a risk of
48 # events being passed down to the wrong viewport. for now i disabled event
49 # passing until i fix this (groditi)
50 for my $obj ( $self->current_collection->members ) {
51 my $type = blessed $obj;
52 my $builder_cache = $builders->{$type} ||= {};
53 my $member = $class->new(
54 ctx => $ctx,
55 model => $obj,
56 location => join('-', $loc, $i++),
57 builder_cache => $builder_cache,
58 %$args
59 );
60 push(@members, $member);
61 }
62 return \@members;
63};
64
65__PACKAGE__->meta->make_immutable;
66
ddccc6a2 67
2dba7201 681;
ddccc6a2 69
2dba7201 70__END__;
ddccc6a2 71
2dba7201 72=head1 NAME
73
74Reaction::UI::ViewPort::Collection
75
76=head1 DESCRIPTION
77
78Creates, from an InterfaceModel::Collection, a list of viewports representing each
79member of the collection.
80
81=head1 ATTRIBUTES
82
83=head2 collection
84
85=head2 current_collection
86
87=head2 member_args
88
89=head2 member_class
90
91=head1
92
93=head1 INTERNAL METHODS
94
95These methods, although stable, are subject to change without notice. These are meant
96to be used only by developers. End users should refrain from using these methods to
97avoid potential breakages.
98
99=head2 BUILD
100
101=head2 get_builder_for
102
103=head2 model
104
105=head1 AUTHORS
106
107See L<Reaction::Class> for authors.
108
109=head1 LICENSE
110
111See L<Reaction::Class> for the license.
112
113=cut