import rt 3.8.9
[freeside.git] / rt / share / html / Elements / CollectionList
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
6 %#                                          <sales@bestpractical.com>
7 %#
8 %# (Except where explicitly superseded by other copyright notices)
9 %#
10 %#
11 %# LICENSE:
12 %#
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %#
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %#
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 %#
29 %#
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %#
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %#
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %#
47 %# END BPS TAGGED BLOCK }}}
48 <%INIT>
49 if (!$Collection && $Class eq 'RT::Tickets') {
50     $Collection = RT::Tickets->new( $session{'CurrentUser'} );
51     $Collection->FromSQL($Query);
52 }
53
54 my $TotalFound = $Collection->CountAll();
55 return '' if !$TotalFound && !$ShowEmpty;
56
57 if ( $Rows ) {
58     if ( $TotalFound <= $Rows ) {
59         $Page = 1;
60     }
61     else {
62         my $MaxPage = int( $TotalFound / $Rows ) + ( $TotalFound % $Rows ? 1 : 0 );
63         $Page = $MaxPage if $Page > $MaxPage;
64     }
65 }
66
67 # XXX: ->{'order_by'} is hacky, but there is no way to check if
68 # collection is ordered or not
69 if ( @OrderBy && ($AllowSorting || !$Collection->{'order_by'}) ) {
70     if ( $OrderBy[0] =~ /\|/ ) {
71         @OrderBy = split /\|/, $OrderBy[0];
72         @Order = split /\|/,$Order[0];
73     }
74     $Collection->OrderByCols(
75         map { { FIELD => $OrderBy[$_], ORDER => $Order[$_] } }
76         ( 0 .. $#OrderBy )
77     );
78 }
79
80 $Collection->RowsPerPage( $Rows ) if $Rows;
81 $Page = 1 unless $Page && $Page > 0;    # workaround problems with $Page = '' or undef
82 $Collection->GotoPage( $Page - 1 ); # SB uses page 0 as the first page
83
84 # DisplayFormat lets us use a "temporary" format for display, while 
85 # still using our original format for next/prev page links.
86 # bulk update uses this feature to add checkboxes
87
88 $DisplayFormat ||= $Format;
89
90 # Scrub the html of the format string to remove any potential nasties.
91 $Format = $m->comp('/Elements/ScrubHTML', Content => $Format);
92 $DisplayFormat = $m->comp('/Elements/ScrubHTML', Content => $DisplayFormat);
93
94 my @Format = $m->comp('/Elements/CollectionAsTable/ParseFormat', Format => $DisplayFormat);
95
96 # Find the maximum number of items in any row, so we can pad the table.
97 my ($maxitems, $item) = (0, 0);
98 foreach my $col (@Format) {
99     $item++;
100     if ( $col->{title} && ($col->{title} eq 'NEWLINE') ) {
101         $item = 0;
102     }
103     else {
104         $maxitems = $item if $item > $maxitems;
105     }
106 }
107
108 $Class ||= ref $Collection;
109 $Class =~ s/s$//;
110 $Class =~ s/:/_/g;
111
112 $m->out('<table border="0" cellspacing="0" cellpadding="1"' . 
113         ' width="100%" class="' . 
114         ($Collection->isa('RT::Tickets') ? 'ticket-list' : 'collection') . '">');
115
116 if ( $ShowHeader ) {
117   $m->comp('/Elements/CollectionAsTable/Header',
118            %ARGS,
119            Class        => $Class,
120            Format       => \@Format,
121            FormatString => $Format,
122            Order        => \@Order,
123            OrderBy      => \@OrderBy,
124            Rows         => $Rows,
125            Page         => $Page,
126            AllowSorting => $AllowSorting, 
127            BaseURL      => $BaseURL,
128            GenericQueryArgs => $GenericQueryArgs,
129            maxitems     => $maxitems,
130            );
131 }
132
133 my ($i, $column_map) = (0, {});
134 while ( my $record = $Collection->Next ) {
135     # Every ten rows, flush the buffer and put something on the page.
136     $m->flush_buffer unless ++$i % 10;
137
138     my $warning = 0;
139     my $Classes = '';
140
141     $m->callback(
142         CallbackName => 'EachRow',
143         Record       => $record,
144         Warning      => \$warning,
145         Classes      => \$Classes,
146         Format       => \@Format,
147     );
148
149     $m->comp('/Elements/CollectionAsTable/Row',
150         i         => $i,
151         Format    => \@Format,
152         record    => $record,
153         maxitems  => $maxitems,
154         ColumnMap => $column_map,
155         Class     => $Class,
156         Warning   => $warning,
157         Classes   => $Classes,
158     );
159 }
160
161 $m->out('</table>');
162 if ( $Rows && $ShowNavigation && $TotalFound > $Rows ) {
163   my $oddRows = ($TotalFound && $TotalFound % $Rows == 0 )? 0 : 1;
164   my $pages = int( $TotalFound / $Rows ) + $oddRows;
165   $pages = 1 if $pages < 1;
166
167
168   my %query_args = map { $_ => $ARGS{$_} } @PassArguments;
169   $m->comp(
170         '/Elements/CollectionListPaging',
171         BaseURL     => $BaseURL,
172         Rows        => $Rows,
173         TotalFound  => $TotalFound,
174         CurrentPage => $Page,
175         Pages       => $pages,
176         URLParams   => \%query_args
177     );
178
179 }
180
181 </%INIT>
182 <%ARGS>
183 $Class         => ''
184 $Collection    => undef
185 $Format        => undef
186 $DisplayFormat => undef
187 @Order         => ()
188 @OrderBy       => ()
189 $GenericQueryArgs => undef
190 $Rows          => undef
191 $Page          => 1
192 $Title         => loc('Ticket Search')
193 $BaseURL       => RT->Config->Get('WebPath') . $m->request_comp->path .'?'
194 @PassArguments => qw( Query Format Rows Page Order OrderBy)
195
196 $AllowSorting   => 0
197 $ShowNavigation => 1
198 $ShowHeader     => 1
199 $ShowEmpty      => 0
200 $Query => 0
201 </%ARGS>