%# BEGIN BPS TAGGED BLOCK {{{
%#
%# COPYRIGHT:
%#
%# This software is Copyright (c) 1996-2025 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 }}}
<div class="row">
  <div class="boxcontainer new-watchers col-xl-6">

<h3><&|/l&>New watchers</&></h3>
<&|/l&>Find people whose</&><br />
<div class="row mt-2">
<& /Elements/SelectUsers &>
  <div class="col-auto">
<input type="submit" class="btn btn-primary" name="OnlySearchForPeople" value="<&|/l&>Go!</&>" />
  </div>
</div>
<br />
<&|/l&>Find groups whose</&><br />
<div class="row mt-2">
<& /Elements/SelectGroups &>
  <div class="col-auto">
<input type="submit" class="btn btn-primary" name="OnlySearchForGroup" value="<&|/l&>Go!</&>" />
  </div>
</div>

<& AddWatchers, Ticket => $Ticket, UserString => $UserString,
        UserOp => $UserOp, UserField => $UserField,
        GroupString => $GroupString, GroupOp => $GroupOp,
        GroupField => $GroupField, PrivilegedOnly => $PrivilegedOnly &> 
  </div>
  <div class="boxcontainer current-watchers col-xl-6">
<h3><&|/l&>People</&></h3>

<&| /Elements/LabeledValue, Label => loc('Owner'), ReadOnly => 0 &>
    <& /Elements/SelectOwner, Name => 'Owner', QueueObj => $Ticket->QueueObj, TicketObj => $Ticket, Default => $Ticket->OwnerObj->Id, DefaultValue => 0 &>
</&>

% my @role_fields;
% my $single_roles = $Ticket->QueueObj->CustomRoles;
% $single_roles->LimitToSingleValue;

% my @hidden = $Ticket->QueueObj->HiddenCustomRoleIDsForURL;
% $single_roles->Limit(FIELD => 'id', OPERATOR => 'NOT IN', VALUE => \@hidden) if @hidden;

% $m->callback( CustomRoles => $single_roles, SingleRoles => 1, Ticket => $Ticket, %ARGS, CallbackName => 'ModifyCustomRoles' );
% while (my $role = $single_roles->Next) {
<&| /Elements/LabeledValue, Label => $role->Name, LabelTooltip => $role->EntryHint, ReadOnly => 0 &>
  <& /Elements/SingleUserRoleInput, role => $role, Ticket => $Ticket &>
</&>

% }

<h3><&|/l&>Current watchers</&></h3>
<i><&|/l&>(Check box to delete)</&></i><br />

<div class="row mt-2">
  <div class="label col-3">
    <div class="form-check">
      <input type="checkbox" id="delete-requestors-checkbox" class="checkbox form-check-input" onclick="setCheckbox(this, /^Ticket-DeleteWatcher-Type-Requestor-/)">
      <label class="form-check-label" for="delete-requestors-checkbox"><&|/l&>Requestors</&>:</label>
    </div>
  </div>
  <div class="value col-6"><& EditWatchers, TicketObj => $Ticket, Watchers => $Ticket->Requestors &></div>
</div>

<div class="row mt-2">
  <div class="label col-3">
    <div class="form-check">
      <input type="checkbox" id="delete-cc-checkbox" class="checkbox form-check-input" onclick="setCheckbox(this, /^Ticket-DeleteWatcher-Type-Cc-/)">
      <label class="form-check-label" for="delete-cc-checkbox"><&|/l&>Cc</&>:</label>
    </div>
  </div>
  <div class="value col-6"><& EditWatchers, TicketObj => $Ticket, Watchers => $Ticket->Cc &></div>
</div>

<div class="row mt-2">
  <div class="label col-3">
    <div class="form-check">
      <input type="checkbox" id="delete-admincc-checkbox" class="checkbox form-check-input" onclick="setCheckbox(this, /^Ticket-DeleteWatcher-Type-AdminCc-/)">
      <label class="form-check-label" for="delete-admincc-checkbox"><&|/l&>Admin Cc</&>:</label>
    </div>
  </div>
  <div class="value col-6"><& EditWatchers, TicketObj => $Ticket, Watchers => $Ticket->AdminCc &></div>
</div>

% my $multi_roles = $Ticket->QueueObj->CustomRoles;
% $multi_roles->LimitToMultipleValue;

% $multi_roles->Limit(FIELD => 'id', OPERATOR => 'NOT IN', VALUE => \@hidden) if @hidden;

% $m->callback( CustomRoles => $multi_roles, SingleRoles => 0, Ticket => $Ticket, %ARGS, CallbackName => 'ModifyCustomRoles' );
% while (my $role = $multi_roles->Next) {
% my $group = $Ticket->RoleGroup($role->GroupType);
<div class="row mt-2">
  <div class="label col-3">
    <div class="form-check">
      <input type="checkbox" id="delete-<% $role->id %>-checkbox" class="checkbox form-check-input" onclick="setCheckbox(this, /^Ticket-DeleteWatcher-Type-RT::CustomRole-<% $role->Id %>-/)">
      <label class="form-check-label" for="delete-<% $role->id %>-checkbox">
        <span class="<% $role->EntryHint ? 'prev-icon-helper' : '' %>"><% $role->Name %>:</span>\
%     if ( my $hint = $role->EntryHint ) {
<% GetSVGImage( Name => 'info', ExtraClasses => 'icon-helper', Title => $hint, Size => 12 ) |n %>
%     }
      </label>
    </div>
  </div>
  <div class="value col-6"><& EditWatchers, TicketObj => $Ticket, Watchers => $group &></div>
</div>
% }

<& /Elements/EditCustomFields, Object => $Ticket, Grouping => 'People', InTable => 1 &>

</div>
</div>

<%ARGS>
$UserField => undef
$UserOp => undef
$UserString => undef
$GroupField => undef
$GroupOp => undef
$GroupString => undef
$PrivilegedOnly => undef
$Ticket => undef
</%ARGS>
