X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FReaction%2FUI%2FViewPort%2FCollection%2FGrid.pm;h=1cf3fd9a82b426c5939fac59b2395683bb51dfe0;hb=565a1fc7fe67c721f2766bdc3f55c5fcb33fc760;hp=66ce8d3be74808caa8a3eac17f9cc399f73a5fdc;hpb=d88f18a05c2bb2536031f46a09a54e14341e73d4;p=catagits%2FReaction.git diff --git a/lib/Reaction/UI/ViewPort/Collection/Grid.pm b/lib/Reaction/UI/ViewPort/Collection/Grid.pm index 66ce8d3..1cf3fd9 100644 --- a/lib/Reaction/UI/ViewPort/Collection/Grid.pm +++ b/lib/Reaction/UI/ViewPort/Collection/Grid.pm @@ -3,56 +3,108 @@ package Reaction::UI::ViewPort::Collection::Grid; use Reaction::Class; use aliased 'Reaction::InterfaceModel::Collection' => 'IM_Collection'; -use aliased 'Reaction::UI::ViewPort::Collection::Grid::Member'; - -class Grid is 'Reaction::UI::ViewPort::Collection', which { - - has field_order => ( is => 'ro', isa => 'ArrayRef', lazy_build => 1); - has excluded_fields => ( is => 'ro', isa => 'ArrayRef', lazy_build => 1); - has field_labels => ( is => 'ro', isa => 'HashRef', lazy_build => 1); - - has computed_field_order => (is => 'ro', isa => 'ArrayRef', lazy_build => 1); - - #################################### - implements _build_member_class => as { Member }; - - implements _build_field_labels => as { +use aliased 'Reaction::UI::ViewPort::Collection::Grid::Member::WithActions'; + +use namespace::clean -except => [ qw(meta) ]; +use MooseX::Types::Moose qw/ArrayRef HashRef Int/; +extends 'Reaction::UI::ViewPort::Collection'; + +has field_order => ( is => 'ro', isa => ArrayRef, lazy_build => 1); +has excluded_fields => ( is => 'ro', isa => ArrayRef, lazy_build => 1); +has included_fields => ( is => 'ro', isa => ArrayRef, lazy_build => 1); +has computed_field_order => (is => 'ro', isa => ArrayRef, lazy_build => 1); + +has _raw_field_labels => ( + is => 'rw', + isa => HashRef, + init_arg => 'field_labels', + default => sub { {} }, +); + +has field_labels => ( + is => 'ro', + isa => HashRef, + lazy_build => 1, + init_arg => undef, +); + +has member_action_count => ( + is => 'rw', + isa => Int, + required => 1, + lazy => 1, + default => sub { my $self = shift; - my %labels; - for my $field ( @{$self->computed_field_order}){ - $labels{$field} = join(' ', map{ ucfirst } split('_', $field)); + for (@{ $self->members }) { + my $protos = $_->action_prototypes; + return scalar(keys(%$protos)); } - return \%labels; - }; - - implements _build_field_order => as { []; }; - implements _build_excluded_fields => as { []; }; - - implements _build_computed_field_order => as { - my ($self) = @_; - my %excluded = map { $_ => undef } @{ $self->excluded_fields }; - #treat _$field_name as private and exclude fields with no reader - my @names = grep { $_ !~ /^_/ && !exists($excluded{$_})} map { $_->name } - grep { - !($_->has_type_constraint && - ($_->type_constraint->is_a_type_of('ArrayRef') || - eval {$_->type_constraint->name->isa('Reaction::InterfaceModel::Collection')} || - eval { $_->_isa_metadata->isa('Reaction::InterfaceModel::Collection') } - ) - ) } - grep { defined $_->get_read_method } - $self->current_collection->member_type->parameter_attributes; - - return $self->sort_by_spec($self->field_order, \@names); - }; - - before _build_members => sub { - my ($self) = @_; - $self->member_args->{computed_field_order} ||= $self->computed_field_order; - }; - + return 1; + }, +); + +#################################### +sub _build_member_class { WithActions }; + +sub _build_field_labels { + my $self = shift; + my %labels = %{$self->_raw_field_labels}; + for my $field ( @{$self->computed_field_order}) { + next if defined $labels{$field}; + $labels{$field} = join(' ', map{ ucfirst } split('_', $field)); + } + return \%labels; +} + +sub _build_field_order { []; } + +sub _build_excluded_fields { []; } + +sub _build_included_fields { [] } + +#this is a total clusterfuck and it sucks we should just eliminate it and have +# the grid members not render ArrayRef or Collection fields +sub _build_computed_field_order { + my ($self) = @_; + my %excluded = map { $_ => undef } @{ $self->excluded_fields }; + my %included = map { $_ => undef } @{ $self->included_fields }; + #treat _$field_name as private and exclude fields with no reader + my @names = grep { $_ !~ /^_/ && (!%included || exists( $included{$_}) ) + && !exists($excluded{$_})} map { $_->name } + grep { + !($_->has_type_constraint && + ($_->type_constraint->is_a_type_of('ArrayRef') || + eval {$_->type_constraint->name->isa('Reaction::InterfaceModel::Collection')} || + eval { $_->_isa_metadata->isa('Reaction::InterfaceModel::Collection') } + ) + ) } + grep { defined $_->get_read_method } + $self->current_collection->member_type->parameter_attributes; + + return $self->sort_by_spec($self->field_order, \@names); +} + +around _build_members => sub { + my $orig = shift; + my $self = shift; + $self->member_args->{computed_field_order} ||= $self->computed_field_order; + $self->member_args->{computed_action_order} ||= []; + my $members = $self->$orig(@_); + + # cache everything yo + for my $member (@$members){ + $member->clear_computed_action_order; + my $order = $member->computed_action_order; + @{ $self->member_args->{computed_action_order} } = @$order; + last; + } + + return $members; }; +__PACKAGE__->meta->make_immutable; + + 1; __END__; @@ -72,11 +124,28 @@ homogenous collection of Reaction::InterfaceModel::Objects as a grid. =head2 excluded_fields +List of field names to exclude. + +=head2 included_fields + +List of field names to include. If both C and +C are specified the result is those fields which +are in C and not in C. + +=head2 included_fields + +List of field names to include. If both C and +C are specified the result is those fields which +are in C and not in C. + + =head2 field_labels +=head2 _raw_field_labels + =head2 computed_field_order -=head1 +=head2 member_action_count =head1 INTERNAL METHODS