%# BEGIN BPS TAGGED BLOCK {{{
%#
%# COPYRIGHT:
%#
%# This software is Copyright (c) 1996-2023 Best Practical Solutions, LLC
%#                                          <sales@bestpractical.com>
%#
%# (Except where explicitly superseded by other copyright notices)
%#
%#
%# LICENSE:
%#
%# This work is made available to you under the terms of Version 2 of
%# the GNU General Public License. A copy of that license should have
%# been provided with this software, but in any event can be snarfed
%# from www.gnu.org.
%#
%# This work is distributed in the hope that it will be useful, but
%# WITHOUT ANY WARRANTY; without even the implied warranty of
%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
%# General Public License for more details.
%#
%# You should have received a copy of the GNU General Public License
%# along with this program; if not, write to the Free Software
%# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
%# 02110-1301 or visit their web page on the internet at
%# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
%#
%#
%# CONTRIBUTION SUBMISSION POLICY:
%#
%# (The following paragraph is not intended to limit the rights granted
%# to you to modify and distribute this software under the terms of
%# the GNU General Public License and is only of importance to you if
%# you choose to contribute your changes and enhancements to the
%# community by submitting them to Best Practical Solutions, LLC.)
%#
%# By intentionally submitting any modifications, corrections or
%# derivatives to this work, or any other work intended for use with
%# Request Tracker, to Best Practical Solutions, LLC, you confirm that
%# you are the copyright holder for those contributions and you grant
%# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
%# royalty-free, perpetual, license to use, copy, create derivative
%# works based on those contributions, and sublicense and distribute
%# those contributions and any derivatives thereof.
%#
%# END BPS TAGGED BLOCK }}}
% for my $o (0..3) {
% $Order[$o] ||= ''; $OrderBy[$o] ||= '';
<div class="form-row">
  <div class="label col-4">
% if ($o == 0) {
<&|/l&>Order by</&>:
% }
  </div>
  <div class="value col-4">
    <select name="OrderBy" class="form-control selectpicker">
% if ($o > 0) {
      <option value=""><&|/l&>~[none~]</&></option>
% }
% # %fields maps display name to SQL column/function
% foreach my $field (sort keys %fields) {
%    next unless $field;
%    my $fieldval = $fields{$field};
      <option value="<%$fieldval%>"
% if (defined $OrderBy[$o] and $fieldval eq $OrderBy[$o]) {
selected="selected"
% }
><% $field =~ /^(?:CustomField|CF)\./ ? $field : loc($field) %></option>
% }
    </select>
  </div>
  <div class="col-4">
    <select name="Order" class="form-control selectpicker">
      <option value="ASC"
% unless ( ($Order[$o]||'') eq "DESC" ) {
selected="selected"
% }
><&|/l&>Asc</&></option>
<option value="DESC"
% if ( ($Order[$o]||'') eq "DESC" ) {
selected="selected"
% }
><&|/l&>Desc</&></option>
    </select>
  </div>
</div>
% }

<div class="form-row">
  <div class="label col-4">
    <&|/l&>Rows per page</&>:
  </div>
  <div class="value col-4">
    <& /Elements/SelectResultsPerPage,
        Name => "RowsPerPage",
        Default => $RowsPerPage &>
  </div>
</div>

<%INIT>
my $collection = $Class->new($session{'CurrentUser'});
my %FieldDescriptions = %{$collection->FIELDS};
my %fields;

for my $field (keys %FieldDescriptions) {
    next if $field eq 'EffectiveId';
    next unless $FieldDescriptions{$field}->[0] =~ /^(?:ENUM|QUEUE|INT|DATE|STRING|ID)$/;
    $fields{$field} = $field;
}

if ( $Class eq 'RT::Assets' ) {
    $fields{'Owner'} = 'Owner';
    $fields{'HeldBy'} = 'HeldBy';
    $fields{'Contact'} = 'Contact';
}

# Add all available CustomFields to the list of sortable columns.
my @cfs = grep /^CustomField(?!View)/, @{$ARGS{AvailableColumns}};
$fields{$_} = $_ for @cfs;

if ( $Class eq 'RT::Tickets' ) {

    # Add all available core roles to the list of sortable columns.
    my @roles = grep /^(?:Owner|Requestor|Cc|AdminCc)\./, @{ $ARGS{AvailableColumns} };
    $fields{$_} = $_ for @roles;

    # Add all available CustomRoles to the list of sortable columns.
    my @custom_roles = grep /^CustomRole\./, @{ $ARGS{AvailableColumns} };
    for my $role (@custom_roles) {
        my $label = $role;

        # In case custom role contains "{}" in name.
        if ( $label =~ /\.CustomField/ ) {
            $label =~ s!^CustomRole\.\{(.*)\}(?=\.CustomField\.)!$1!;
        }
        else {
            $label =~ s!^CustomRole\.\{(.*)\}!$1!;
        }
        $fields{$label} = $role;
    }
}

if ( $Class =~ /^RT::(?:Tickets|Assets)$/ ) {
    # Add PAW sort
    $fields{'Custom.Ownership'} = 'Custom.Ownership';
}

$m->callback(CallbackName => 'MassageSortFields', Fields => \%fields );

my @Order = split /\|/, $Order;
my @OrderBy = split /\|/, $OrderBy;
if ($Order =~ /\|/) {
    @Order = split /\|/, $Order;
} else {
    @Order = ( $Order );
}

</%INIT>

<%ARGS>
$Order => ''
$OrderBy => ''
$RowsPerPage => undef
$Format => undef
$GroupBy => 'id'
$Class => 'RT::Tickets'
</%ARGS>
