compat for new dbic
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Collection / Role / Order.pm
CommitLineData
ddccc6a2 1package Reaction::UI::ViewPort::Collection::Role::Order;
e22de101 2
3use Reaction::Role;
4
81393881 5use namespace::clean -except => [ qw(meta) ];
e22de101 6
e22de101 7
81393881 8has order_by => (isa => 'Str', is => 'rw', trigger_adopt('order_by'));
9has order_by_desc => (isa => 'Int', is => 'rw', trigger_adopt('order_by'), lazy_build => 1);
10sub _build_order_by_desc { 0 };
11sub adopt_order_by {
12 shift->clear_current_collection;
13};
b8faba69 14
81393881 15around _build_current_collection => sub {
16 my $orig = shift;
17 my ($self) = @_;
18 my $collection = $orig->(@_);
19 my %attrs;
b8faba69 20
81393881 21 #XXX DBICism that needs to be fixed
22 if ($self->has_order_by) {
23 $attrs{order_by} = $self->order_by;
24 $attrs{order_by} .= ' DESC' if ($self->order_by_desc);
25 }
e22de101 26
81393881 27 return $collection->where(undef, \%attrs);
28};
e22de101 29
81393881 30around accept_events => sub { ('order_by', 'order_by_desc', shift->(@_)); };
e22de101 31
e22de101 32
e22de101 33
341;